scala.reflect.internal.Names

TypeName

sealed abstract class TypeName extends Name

The abstract type of names representing terms

Definition Classes
NamesNames
Source
Names.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. TypeName
  2. Name
  3. Function1
  4. NameApi
  5. NameBase
  6. AnyRef
  7. Any
Implicitly
  1. by any2stringadd
  2. by any2stringfmt
  3. by any2ArrowAssoc
  4. by any2Ensuring
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new TypeName(index0: Int, len0: Int, hash: Int)

Type Members

  1. type ThisNameType = TypeName

    Definition Classes
    TypeNameName

Abstract Value Members

  1. abstract def createCompanionName(h: Int): TermName

    Attributes
    protected

Concrete Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Test two objects for inequality.

    Test two objects for inequality.

    returns

    true if !(this == that), false otherwise.

    Definition Classes
    Any
  3. final def ##(): Int

    Equivalent to x.hashCode except for boxed numeric types and null.

    Equivalent to x.hashCode except for boxed numeric types and null. For numerics, it returns a hash value which is consistent with value equality: if two value type instances compare as true, then ## will produce the same hash value for each of them. For null returns a hashcode where null.hashCode throws a NullPointerException.

    returns

    a hash value consistent with ==

    Definition Classes
    AnyRef → Any
  4. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from TypeName to StringAdd performed by method any2stringadd in scala.Predef.
    Definition Classes
    StringAdd
  5. def ->[B](y: B): (TypeName, B)

    Implicit information
    This member is added by an implicit conversion from TypeName to ArrowAssoc[TypeName] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  7. final def ==(arg0: Any): Boolean

    Test two objects for equality.

    Test two objects for equality. The expression x == that is equivalent to if (x eq null) that eq null else x.equals(that).

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    Definition Classes
    Any
  8. def andThen[A](g: (Char) ⇒ A): (Int) ⇒ A

    Composes two instances of Function1 in a new Function1, with this function applied first.

    Composes two instances of Function1 in a new Function1, with this function applied first.

    A

    the result type of function g

    g

    a function R => A

    returns

    a new function f such that f(x) == g(apply(x))

    Definition Classes
    Function1
    Annotations
    @unspecialized()
  9. def append(suffix: Name): ThisNameType

    Definition Classes
    Name
  10. def append(suffix: String): ThisNameType

    Definition Classes
    Name
  11. def append(ch: Char): ThisNameType

    TODO - find some efficiency.

    TODO - find some efficiency.

    Definition Classes
    Name
  12. final def apply(i: Int): Char

    returns

    the i'th Char of this name

    Definition Classes
    NameFunction1
  13. final def asInstanceOf[T0]: T0

    Cast the receiver object to be of type T0.

    Cast the receiver object to be of type T0.

    Note that the success of a cast at runtime is modulo Scala's erasure semantics. Therefore the expression 1.asInstanceOf[String] will throw a ClassCastException at runtime, while the expression List(1).asInstanceOf[List[String]] will not. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested type.

    returns

    the receiver object.

    Definition Classes
    Any
    Exceptions thrown
    ClassCastException

    if the receiver object is not an instance of the erasure of type T0.

  14. def bothNames: List[Name]

    Definition Classes
    Name
  15. def clone(): AnyRef

    Create a copy of the receiver object.

    Create a copy of the receiver object.

    The default implementation of the clone method is platform dependent.

    returns

    a copy of the receiver object.

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
    Note

    not specified by SLS as a member of AnyRef

  16. def companionName: TermName

    Definition Classes
    TypeNameName
  17. def compose[A](g: (A) ⇒ Int): (A) ⇒ Char

    Composes two instances of Function1 in a new Function1, with this function applied last.

    Composes two instances of Function1 in a new Function1, with this function applied last.

    A

    the type to which function g can be applied

    g

    a function A => T1

    returns

    a new function f such that f(x) == apply(g(x))

    Definition Classes
    Function1
    Annotations
    @unspecialized()
  18. final def containsChar(ch: Char): Boolean

    Definition Classes
    Name
  19. final def containsName(subname: Name): Boolean

    Definition Classes
    Name
  20. final def containsName(subname: String): Boolean

    Definition Classes
    Name
  21. final def copyChars(cs: Array[Char], offset: Int): Unit

    Copy bytes of this name to buffer cs, starting at position offset.

    Copy bytes of this name to buffer cs, starting at position offset.

    Definition Classes
    Name
  22. final def copyUTF8(bs: Array[Byte], offset: Int): Int

    Write to UTF8 representation of this name to given character array.

    Write to UTF8 representation of this name to given character array. Start copying to index to. Return index of next free byte in array. Array must have enough remaining space for all bytes (i.e. maximally 3*length bytes).

    Definition Classes
    Name
  23. def debugString: String

    Definition Classes
    Name
  24. def decode: String

    Replace $op_name by corresponding operator symbol.

    Replace $op_name by corresponding operator symbol.

    Definition Classes
    TypeNameName
  25. def decoded: String

    !!! Duplicative but consistently named.

    !!! Duplicative but consistently named.

    Definition Classes
    NameNameApi
  26. def decodedName: ThisNameType

    The decoded name, still represented as a name.

    The decoded name, still represented as a name.

    Definition Classes
    NameNameApi
  27. def drop(n: Int): ThisNameType

    Definition Classes
    Name
  28. def dropRight(n: Int): ThisNameType

    Definition Classes
    Name
  29. def encode: ThisNameType

    Replace operator symbols by corresponding $op_name.

    Replace operator symbols by corresponding $op_name.

    Definition Classes
    Name
  30. def encoded: String

    Replaces all occurrences of operator symbols in this name by corresponding $op_names.

    Replaces all occurrences of operator symbols in this name by corresponding $op_names. Example: foo_+= becomes foo_$plus$eq.

    Definition Classes
    NameNameApi
  31. def encodedName: ThisNameType

    The encoded name, still represented as a name.

    The encoded name, still represented as a name.

    Definition Classes
    NameNameApi
  32. final def endChar: Char

    Definition Classes
    Name
  33. final def endsWith(name: String): Boolean

    Definition Classes
    Name
  34. final def endsWith(char: Char): Boolean

    Definition Classes
    Name
  35. final def endsWith(suffix: Name, end: Int): Boolean

    Does this name end with suffix just before given end index?

    Does this name end with suffix just before given end index?

    Definition Classes
    Name
  36. final def endsWith(suffix: Name): Boolean

    Does this name end with suffix?

    Does this name end with suffix?

    Definition Classes
    Name
  37. def ensuring(cond: (TypeName) ⇒ Boolean, msg: ⇒ Any): TypeName

    Implicit information
    This member is added by an implicit conversion from TypeName to Ensuring[TypeName] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  38. def ensuring(cond: (TypeName) ⇒ Boolean): TypeName

    Implicit information
    This member is added by an implicit conversion from TypeName to Ensuring[TypeName] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  39. def ensuring(cond: Boolean, msg: ⇒ Any): TypeName

    Implicit information
    This member is added by an implicit conversion from TypeName to Ensuring[TypeName] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  40. def ensuring(cond: Boolean): TypeName

    Implicit information
    This member is added by an implicit conversion from TypeName to Ensuring[TypeName] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  41. final def eq(arg0: AnyRef): Boolean

    Tests whether the argument (arg0) is a reference to the receiver object (this).

    Tests whether the argument (arg0) is a reference to the receiver object (this).

    The eq method implements an equivalence relation on non-null instances of AnyRef, and has three additional properties:

    • It is consistent: for any non-null instances x and y of type AnyRef, multiple invocations of x.eq(y) consistently returns true or consistently returns false.
    • For any non-null instance x of type AnyRef, x.eq(null) and null.eq(x) returns false.
    • null.eq(null) returns true.

    When overriding the equals or hashCode methods, it is important to ensure that their behavior is consistent with reference equality. Therefore, if two objects are references to each other (o1 eq o2), they should be equal to each other (o1 == o2) and they should hash to the same value (o1.hashCode == o2.hashCode).

    returns

    true if the argument is a reference to the receiver object; false otherwise.

    Definition Classes
    AnyRef
  42. def equals(arg0: Any): Boolean

    The equality method for reference types.

    The equality method for reference types. Default implementation delegates to eq.

    See also equals in Any.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    Definition Classes
    AnyRef → Any
  43. def finalize(): Unit

    Called by the garbage collector on the receiver object when there are no more references to the object.

    Called by the garbage collector on the receiver object when there are no more references to the object.

    The details of when and if the finalize method is invoked, as well as the interaction between finalize and non-local returns and exceptions, are all platform dependent.

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
    Note

    not specified by SLS as a member of AnyRef

  44. def formatted(fmtstr: String): String

    Returns string formatted according to given format string.

    Returns string formatted according to given format string. Format strings are as for String.format (@see java.lang.String.format).

    Implicit information
    This member is added by an implicit conversion from TypeName to StringFormat performed by method any2stringfmt in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  45. final def getClass(): Class[_]

    A representation that corresponds to the dynamic class of the receiver object.

    A representation that corresponds to the dynamic class of the receiver object.

    The nature of the representation is platform dependent.

    returns

    a representation that corresponds to the dynamic class of the receiver object.

    Definition Classes
    AnyRef → Any
    Note

    not specified by SLS as a member of AnyRef

  46. final def hashCode(): Int

    returns

    the hash value of this name

    Definition Classes
    Name → AnyRef → Any
  47. val index: Int

    Attributes
    protected
    Definition Classes
    Name
  48. def indexOf(ch: Char, fromIndex: Int): Int

    Definition Classes
    Name
  49. def indexOf(ch: Char): Int

    Definition Classes
    Name
  50. final def isEmpty: Boolean

    Definition Classes
    Name
  51. final def isInstanceOf[T0]: Boolean

    Test whether the dynamic type of the receiver object is T0.

    Test whether the dynamic type of the receiver object is T0.

    Note that the result of the test is modulo Scala's erasure semantics. Therefore the expression 1.isInstanceOf[String] will return false, while the expression List(1).isInstanceOf[List[String]] will return true. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the specified type.

    returns

    true if the receiver object is an instance of erasure of type T0; false otherwise.

    Definition Classes
    Any
  52. def isOperatorName: Boolean

    Definition Classes
    Name
  53. def isTermName: Boolean

    Is this name a term name?

    Is this name a term name?

    Definition Classes
    TypeNameNameNameBase
  54. def isTypeName: Boolean

    Is this name a type name?

    Is this name a type name?

    Definition Classes
    TypeNameNameNameBase
  55. def lastIndexOf(ch: Char, fromIndex: Int): Int

    Definition Classes
    Name
  56. def lastIndexOf(ch: Char): Int

    Definition Classes
    Name
  57. final def lastPos(s: String, start: Int): Int

    Returns the index of the last occurrence of string s in this name from start, -1 if not found.

    Returns the index of the last occurrence of string s in this name from start, -1 if not found.

    s

    the string

    start

    ...

    returns

    the index of the last occurrence of s

    Definition Classes
    Name
  58. final def lastPos(c: Char, start: Int): Int

    Returns the index of the last occurrence of char c in this name from start, -1 if not found.

    Returns the index of the last occurrence of char c in this name from start, -1 if not found.

    c

    the character

    start

    ...

    returns

    the index of the last occurrence of c

    Definition Classes
    Name
  59. final def lastPos(s: String): Int

    Definition Classes
    Name
  60. final def lastPos(c: Char): Int

    Returns the index of last occurrence of char c in this name, -1 if not found.

    Returns the index of last occurrence of char c in this name, -1 if not found.

    c

    the character

    returns

    the index of the last occurrence of c

    Definition Classes
    Name
  61. val len: Int

    Attributes
    protected
    Definition Classes
    Name
  62. final def length: Int

    The length of this name.

    The length of this name.

    Definition Classes
    Name
  63. def longString: String

    Definition Classes
    Name
  64. def mapName(f: (String) ⇒ String): ThisNameType

    Return a new name based on string transformation.

    Return a new name based on string transformation.

    Definition Classes
    Name
  65. def nameKind: String

    Definition Classes
    TypeNameName
  66. final def ne(arg0: AnyRef): Boolean

    Equivalent to !(this eq that).

    Equivalent to !(this eq that).

    returns

    true if the argument is not a reference to the receiver object; false otherwise.

    Definition Classes
    AnyRef
  67. def newName(str: String): TypeName

    Return a new name of the same variety.

    Return a new name of the same variety.

    Definition Classes
    TypeNameName
  68. var next: TypeName

    The next name in the same hash bucket.

    The next name in the same hash bucket.

    Definition Classes
    TypeNameName
  69. final def nonEmpty: Boolean

    Definition Classes
    Name
  70. final def notify(): Unit

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Definition Classes
    AnyRef
    Note

    not specified by SLS as a member of AnyRef

  71. final def notifyAll(): Unit

    Wakes up all threads that are waiting on the receiver object's monitor.

    Wakes up all threads that are waiting on the receiver object's monitor.

    Definition Classes
    AnyRef
    Note

    not specified by SLS as a member of AnyRef

  72. final def pos(s: String, start: Int): Int

    Returns the index of the first occurrence of nonempty string s in this name from start, length if not found.

    Returns the index of the first occurrence of nonempty string s in this name from start, length if not found.

    s

    the string

    start

    ...

    returns

    the index of the first occurrence of s

    Definition Classes
    Name
  73. final def pos(c: Char, start: Int): Int

    Returns the index of the first occurrence of character c in this name from start, length if not found.

    Returns the index of the first occurrence of character c in this name from start, length if not found.

    c

    the character

    start

    ...

    returns

    the index of the first occurrence of c

    Definition Classes
    Name
  74. final def pos(s: String): Int

    returns

    the index of first occurrence of char c in this name, length if not found

    Definition Classes
    Name
  75. final def pos(c: Char): Int

    returns

    the index of first occurrence of char c in this name, length if not found

    Definition Classes
    Name
  76. def prepend(prefix: Name): ThisNameType

    Definition Classes
    Name
  77. def prepend(prefix: String): ThisNameType

    Definition Classes
    Name
  78. def prepend(ch: Char): ThisNameType

    Definition Classes
    Name
  79. def replace(from: Char, to: Char): Name

    Replace all occurrences of from by to in name; result is always a term name.

    Replace all occurrences of from by to in name; result is always a term name.

    Definition Classes
    Name
  80. def start: Int

    Index into name table

    Index into name table

    Definition Classes
    Name
  81. final def startChar: Char

    Some thoroughly self-explanatory convenience functions.

    Some thoroughly self-explanatory convenience functions. They assume that what they're being asked to do is known to be valid.

    Definition Classes
    Name
  82. final def startsWith(name: String): Boolean

    Definition Classes
    Name
  83. final def startsWith(char: Char): Boolean

    Definition Classes
    Name
  84. final def startsWith(prefix: Name, start: Int): Boolean

    Does this name start with prefix at given start index?

    Does this name start with prefix at given start index?

    Definition Classes
    Name
  85. final def startsWith(prefix: Name): Boolean

    Does this name start with prefix?

    Does this name start with prefix?

    Definition Classes
    Name
  86. def stripSuffix(suffix: Name): ThisNameType

    Definition Classes
    Name
  87. def subName(from: Int, to: Int): TypeName

    Return the subname with characters from from to to-1.

    Return the subname with characters from from to to-1.

    Definition Classes
    TypeNameName
  88. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  89. def thisName: TypeName

    Attributes
    protected[this]
    Definition Classes
    TypeNameName
  90. final def toChars: Array[Char]

    returns

    the ascii representation of this name

    Definition Classes
    Name
  91. def toString(): String

    Creates a String representation of this object.

    Creates a String representation of this object. The default representation is platform dependent. On the java platform it is the concatenation of the class name, "@", and the object's hashcode in hexadecimal.

    returns

    a String representation of the object.

    Definition Classes
    Function1 → AnyRef → Any
  92. def toTermName: TermName

    Returns a term name that represents the same string as this name

    Returns a term name that represents the same string as this name

    Definition Classes
    TypeNameNameNameBase
  93. def toTypeName: TypeName

    Returns a type name that represents the same string as this name

    Returns a type name that represents the same string as this name

    Definition Classes
    TypeNameNameNameBase
  94. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  95. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  96. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  97. def [B](y: B): (TypeName, B)

    Implicit information
    This member is added by an implicit conversion from TypeName to ArrowAssoc[TypeName] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implict Value Members

  1. val self: Any

    Implicit information
    This member is added by an implicit conversion from TypeName to StringAdd performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (typeName: StringAdd).self
    Definition Classes
    StringAdd
  2. val self: Any

    Implicit information
    This member is added by an implicit conversion from TypeName to StringFormat performed by method any2stringfmt in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (typeName: StringFormat).self
    Definition Classes
    StringFormat

Deprecated Value Members

  1. def x: TypeName

    Implicit information
    This member is added by an implicit conversion from TypeName to ArrowAssoc[TypeName] performed by method any2ArrowAssoc in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (typeName: ArrowAssoc[TypeName]).x
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use leftOfArrow instead

  2. def x: TypeName

    Implicit information
    This member is added by an implicit conversion from TypeName to Ensuring[TypeName] performed by method any2Ensuring in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (typeName: Ensuring[TypeName]).x
    Definition Classes
    Ensuring
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from Name

Inherited from (Int) ⇒ Char

Inherited from NameApi

Inherited from NameBase

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from TypeName to StringAdd

Inherited by implicit conversion any2stringfmt from TypeName to StringFormat

Inherited by implicit conversion any2ArrowAssoc from TypeName to ArrowAssoc[TypeName]

Inherited by implicit conversion any2Ensuring from TypeName to Ensuring[TypeName]