scala.reflect.DummyMirror

DummyDefinitions

object DummyDefinitions extends AbsDefinitions

Source
DummyMirror.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. DummyDefinitions
  2. AbsDefinitions
  3. AbsDefinitionsInternal
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

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. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. 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
  6. def AnyClass: DummyClassSymbol

    Definition Classes
    DummyDefinitionsAbsDefinitions
  7. def AnyRefClass: DummyTypeSymbol

    Definition Classes
    DummyDefinitionsAbsDefinitions
  8. def AnyValClass: DummyClassSymbol

    Definition Classes
    DummyDefinitionsAbsDefinitions
  9. def ArrayClass: DummyClassSymbol

    Definition Classes
    DummyDefinitionsAbsDefinitions
  10. def ArrayModule: DummySymbol

  11. def ArrayModule_overloadedApply: DummySymbol

  12. def Array_apply: DummySymbol

  13. def Array_clone: DummySymbol

  14. def Array_length: DummySymbol

  15. def Array_update: DummySymbol

  16. def BooleanClass: DummyClassSymbol

    Definition Classes
    DummyDefinitionsAbsDefinitions
  17. def ByNameParamClass: DummySymbol

  18. def ByteClass: DummyClassSymbol

    Definition Classes
    DummyDefinitionsAbsDefinitions
  19. def CharClass: DummyClassSymbol

    Definition Classes
    DummyDefinitionsAbsDefinitions
  20. def ClassClass: DummyClassSymbol

    Definition Classes
    DummyDefinitionsAbsDefinitions
  21. def ClassTagClass: DummyClassSymbol

    Definition Classes
    DummyDefinitionsAbsDefinitions
  22. def ClassTagModule: DummySymbol

  23. def ConcreteTypeTagClass: DummyClassSymbol

    Definition Classes
    DummyDefinitionsAbsDefinitions
  24. def ConcreteTypeTagModule: DummySymbol

  25. def ConsClass: DummySymbol

  26. def DoubleClass: DummyClassSymbol

    Definition Classes
    DummyDefinitionsAbsDefinitions
  27. def EmptyPackage: DummyPackageSymbol

    Definition Classes
    DummyDefinitionsAbsDefinitions
  28. def EmptyPackageClass: DummySymbol

  29. def FloatClass: DummyClassSymbol

    Definition Classes
    DummyDefinitionsAbsDefinitions
  30. def FunctionClass: Array[Symbol]

  31. def IntClass: DummyClassSymbol

    Definition Classes
    DummyDefinitionsAbsDefinitions
  32. def IterableClass: DummySymbol

  33. def IteratorClass: DummySymbol

  34. def IteratorModule: DummySymbol

  35. def Iterator_apply: DummySymbol

  36. def JavaLangPackage: DummyPackageSymbol

    Definition Classes
    DummyDefinitionsAbsDefinitions
  37. def JavaLangPackageClass: DummySymbol

  38. def JavaRepeatedParamClass: DummySymbol

  39. def ListClass: DummyClassSymbol

    Definition Classes
    DummyDefinitionsAbsDefinitions
  40. def ListModule: DummyModuleSymbol

  41. def List_apply: DummySymbol

  42. def LongClass: DummyClassSymbol

    Definition Classes
    DummyDefinitionsAbsDefinitions
  43. def NilModule: DummySymbol

  44. def NoneModule: DummySymbol

  45. def NothingClass: DummyClassSymbol

    Definition Classes
    DummyDefinitionsAbsDefinitions
  46. def NullClass: DummyClassSymbol

    Definition Classes
    DummyDefinitionsAbsDefinitions
  47. def ObjectClass: DummyClassSymbol

    Definition Classes
    DummyDefinitionsAbsDefinitions
  48. def OptionClass: DummySymbol

  49. def PredefModule: DummyModuleSymbol

    Definition Classes
    DummyDefinitionsAbsDefinitions
  50. def ProductClass: Array[Symbol]

  51. def RepeatedParamClass: DummySymbol

  52. def RootClass: DummyClassSymbol

    Definition Classes
    DummyDefinitionsAbsDefinitions
  53. def RootPackage: DummyPackageSymbol

    Definition Classes
    DummyDefinitionsAbsDefinitions
  54. def ScalaPackage: DummyPackageSymbol

    Definition Classes
    DummyDefinitionsAbsDefinitions
  55. def ScalaPackageClass: DummySymbol

  56. def ScalaPrimitiveValueClasses: Nil

  57. def SeqClass: DummySymbol

  58. def SeqModule: DummySymbol

  59. def ShortClass: DummyClassSymbol

    Definition Classes
    DummyDefinitionsAbsDefinitions
  60. def SomeClass: DummySymbol

  61. def SomeModule: DummySymbol

  62. def StringBuilderClass: DummySymbol

  63. def StringClass: DummyClassSymbol

    Definition Classes
    DummyDefinitionsAbsDefinitions
  64. def SymbolClass: DummySymbol

  65. def TraversableClass: DummySymbol

  66. def TupleClass: Array[Symbol]

  67. def TypeTagClass: DummyClassSymbol

    Definition Classes
    DummyDefinitionsAbsDefinitions
  68. def TypeTagModule: DummySymbol

  69. def UnitClass: DummyClassSymbol

    Definition Classes
    DummyDefinitionsAbsDefinitions
  70. 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.

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

  72. 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
  73. 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
  74. 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

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

  76. def hashCode(): Int

    The hashCode method for reference types.

    The hashCode method for reference types. See hashCode in Any.

    returns

    the hash code value for this object.

    Definition Classes
    AnyRef → Any
  77. 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
  78. def isNumericValueClass(sym: Symbol): Boolean

    Is symbol one of the numeric value classes?

    Is symbol one of the numeric value classes?

    Definition Classes
    DummyDefinitionsAbsDefinitions
  79. def isPrimitiveValueClass(sym: Symbol): Boolean

    Is symbol one of the value classes?

    Is symbol one of the value classes?

    Definition Classes
    DummyDefinitionsAbsDefinitions
  80. 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
  81. 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

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

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

    Definition Classes
    AnyRef
  84. 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
  85. def vmClassType(arg: Type): Type

    Given a type T, returns the type corresponding to the VM's representation: ClassClass's type constructor applied to arg.

    Given a type T, returns the type corresponding to the VM's representation: ClassClass's type constructor applied to arg.

    Definition Classes
    DummyDefinitionsAbsDefinitions
  86. def vmSignature(sym: Symbol, info: Type): String

    The string representation used by the given type in the VM.

    The string representation used by the given type in the VM.

    Definition Classes
    DummyDefinitionsAbsDefinitions
  87. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AbsDefinitions

Inherited from AbsDefinitionsInternal

Inherited from AnyRef

Inherited from Any