object Names

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Names
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final class ClassName extends Name with Comparable[ClassName]

    The full name of a class.

    The full name of a class.

    A class name is non-empty sequence of .-separated simple names, where each simple name must be non-empty and can contain any Unicode code point except / . ; [.

  2. final class FieldName extends Comparable[FieldName]

    The full name of a field, including its simple name and its enclosing class name.

  3. final class LabelName extends Name with Comparable[LabelName]

    The name of the label of a Labeled block.

    The name of the label of a Labeled block.

    Label names must be non-empty, and can contain any Unicode code point except / . ; [.

  4. final class LocalName extends Name with Comparable[LocalName]

    The name of a local variable or capture parameter.

    The name of a local variable or capture parameter.

    Local names must be non-empty, and can contain any Unicode code point except / . ; [.

    As an exception, the local name ".this" represents the this binding. It cannot be used to declare variables (in VarDefs or ParamDefs) but can be referred to with a VarRef.

  5. final class MethodName extends Comparable[MethodName]

    The full name of a method, including its simple name and its signature.

  6. sealed abstract class Name extends AnyRef
  7. final class SimpleFieldName extends Name with Comparable[SimpleFieldName]

    The simple name of a field (excluding its enclosing class).

    The simple name of a field (excluding its enclosing class).

    Field names must be non-empty, and can contain any Unicode code point except / . ; [.

  8. final class SimpleMethodName extends Name with Comparable[SimpleMethodName]

    The simple name of a method (excluding its signature).

    The simple name of a method (excluding its signature).

    Simple names must be non-empty, and can contain any Unicode code point except / . ; [. In addition, they must not contain the code point < unless they are one of <init>, <stinit> or <clinit>.

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  20. object ClassName
  21. object FieldName
  22. object LabelName
  23. object LocalName
  24. object MethodName
  25. object SimpleFieldName
  26. object SimpleMethodName

Deprecated Value Members

  1. def ClassInitializerSimpleName: SimpleMethodName
    Annotations
    @deprecated
    Deprecated

    (Since version 1.14.0) Use SimpleMethodName.ClassInitializer instead

  2. def ConstructorSimpleName: SimpleMethodName
    Annotations
    @deprecated
    Deprecated

    (Since version 1.14.0) Use SimpleMethodName.Constructor instead

  3. def StaticInitializerSimpleName: SimpleMethodName
    Annotations
    @deprecated
    Deprecated

    (Since version 1.14.0) Use SimpleMethodName.StaticInitializer instead

Inherited from AnyRef

Inherited from Any

Ungrouped