scala.reflect.internal.Names

Name

sealed abstract class Name extends NameApi

The name class. TODO - resolve schizophrenia regarding whether to treat Names as Strings or Strings as Names. Give names the key functions the absence of which make people want Strings all the time.

Definition Classes
NamesNamesNames
Source
Names.scala
Linear Supertypes
Names.NameApi, Names.NameBase, AnyRef, Any
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Name
  2. NameApi
  3. NameBase
  4. AnyRef
  5. 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 Name(index: Int, len: Int)

Type Members

  1. abstract type ThisNameType >: Null <: Name

Abstract Value Members

  1. abstract def companionName: Name

  2. abstract def isTermName: Boolean

    Is this name a term name?

    Is this name a term name?

    Definition Classes
    NameNameBase
  3. abstract def isTypeName: Boolean

    Is this name a type name?

    Is this name a type name?

    Definition Classes
    NameNameBase
  4. abstract def nameKind: String

  5. abstract def newName(str: String): ThisNameType

    Return a new name of the same variety.

  6. abstract def next: ThisNameType

    The next name in the same hash bucket.

  7. abstract def subName(from: Int, to: Int): ThisNameType

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

  8. abstract def thisName: ThisNameType

    Attributes
    protected[this]
  9. abstract 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
    NameNameBase
  10. abstract 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
    NameNameBase

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 Name to StringAdd performed by method any2stringadd in scala.Predef.
    Definition Classes
    StringAdd
  5. def ->[B](y: B): (Name, B)

    Implicit information
    This member is added by an implicit conversion from Name to ArrowAssoc[Name] 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 append(suffix: Name): ThisNameType

  9. def append(suffix: String): ThisNameType

  10. def append(ch: Char): ThisNameType

    TODO - find some efficiency.

  11. 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.

  12. def bothNames: List[Name]

  13. final def charAt(i: Int): Char

    returns

    the i'th Char of this name

  14. 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[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
    Note

    not specified by SLS as a member of AnyRef

  15. final def containsChar(ch: Char): Boolean

  16. final def containsName(subname: Name): Boolean

  17. final def containsName(subname: String): Boolean

  18. final def copyChars(cs: Array[Char], offset: Int): Unit

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

  19. 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).

  20. def debugString: String

  21. def decode: String

    Replace $op_name by corresponding operator symbol.

  22. def decoded: String

    !!! Duplicative but consistently named.

    !!! Duplicative but consistently named.

    Definition Classes
    NameNameApi
  23. def decodedName: ThisNameType

    The decoded name, still represented as a name.

    The decoded name, still represented as a name.

    Definition Classes
    NameNameApi
  24. def encode: ThisNameType

    Replace operator symbols by corresponding $op_name.

  25. 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
  26. def encodedName: ThisNameType

    The encoded name, still represented as a name.

    The encoded name, still represented as a name.

    Definition Classes
    NameNameApi
  27. final def endChar: Char

  28. final def endsWith(name: String): Boolean

  29. final def endsWith(char: Char): Boolean

  30. final def endsWith(suffix: Name, end: Int): Boolean

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

  31. final def endsWith(suffix: Name): Boolean

    Does this name end with suffix?

  32. def ensuring(cond: (Name) ⇒ Boolean, msg: ⇒ Any): Name

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

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

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

    Implicit information
    This member is added by an implicit conversion from Name to Ensuring[Name] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  36. 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
  37. 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 scala.Any.

    returns

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

    Definition Classes
    AnyRef → Any
  38. 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[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
    Note

    not specified by SLS as a member of AnyRef

  39. 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 Name to StringFormat performed by method any2stringfmt in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  40. 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

  41. final def hashCode(): Int

    returns

    the hash value of this name

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

    Attributes
    protected
  43. def indexOf(ch: Char, fromIndex: Int): Int

  44. def indexOf(ch: Char): Int

  45. final def isEmpty: Boolean

  46. 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
  47. def isOperatorName: Boolean

  48. def lastIndexOf(ch: Char, fromIndex: Int): Int

  49. def lastIndexOf(ch: Char): Int

  50. 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

  51. 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

  52. final def lastPos(s: String): Int

  53. 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

  54. val len: Int

    Attributes
    protected
  55. final def length: Int

    The length of this name.

  56. def longString: String

  57. def mapName(f: (String) ⇒ String): ThisNameType

    Return a new name based on string transformation.

  58. 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
  59. final def nonEmpty: Boolean

  60. 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

  61. 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

  62. 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

  63. 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

  64. final def pos(s: String): Int

    returns

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

  65. final def pos(c: Char): Int

    returns

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

  66. def prepend(prefix: Name): ThisNameType

  67. def prepend(prefix: String): ThisNameType

  68. def prepend(ch: Char): ThisNameType

  69. def replace(from: Char, to: Char): Name

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

  70. def start: Int

    Index into name table

  71. 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.

  72. final def startsWith(name: String): Boolean

  73. final def startsWith(char: Char): Boolean

  74. final def startsWith(prefix: Name, start: Int): Boolean

    Does this name start with prefix at given start index?

  75. final def startsWith(prefix: Name): Boolean

    Does this name start with prefix?

  76. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  77. final def toChars: Array[Char]

    returns

    the ascii representation of this name

  78. 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
    AnyRef → Any
  79. final def wait(): Unit

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

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

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

    Implicit information
    This member is added by an implicit conversion from Name to ArrowAssoc[Name] 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 Name 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:
    (name: StringAdd).self
    Definition Classes
    StringAdd
  2. val self: Any

    Implicit information
    This member is added by an implicit conversion from Name 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:
    (name: StringFormat).self
    Definition Classes
    StringFormat

Deprecated Value Members

  1. def x: Name

    Implicit information
    This member is added by an implicit conversion from Name to ArrowAssoc[Name] 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:
    (name: ArrowAssoc[Name]).x
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use leftOfArrow instead

  2. def x: Name

    Implicit information
    This member is added by an implicit conversion from Name to Ensuring[Name] 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:
    (name: Ensuring[Name]).x
    Definition Classes
    Ensuring
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from Names.NameApi

Inherited from Names.NameBase

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from Name to StringAdd

Inherited by implicit conversion any2stringfmt from Name to StringFormat

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

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

No Group