scala.reflect.internal.pickling

PickleFormat

object PickleFormat

This object provides constants for pickling attributes.

If you extend the format, be sure to increase the version minor number.

Source
PickleFormat.scala
Version

1.0

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. PickleFormat
  2. AnyRef
  3. 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. final val ALIASsym: Int(5)

  7. final val ALTERNATIVEtree: Int(16)

  8. final val ANNOTARGARRAY: Int(44)

  9. final val ANNOTATEDtpe: Int(42)

  10. final val ANNOTATEDtree: Int(39)

  11. final val ANNOTINFO: Int(43)

  12. final val APPLIEDTYPEtree: Int(43)

  13. final val APPLYDYNAMICtree: Int(32)

  14. final val APPLYtree: Int(31)

  15. final val ARRAYVALUEtree: Int(20)

  16. final val ASSIGNtree: Int(22)

  17. final val BINDtree: Int(18)

  18. final val BLOCKtree: Int(13)

  19. final val CASEtree: Int(14)

  20. final val CHILDREN: Int(41)

  21. final val CLASSINFOtpe: Int(19)

  22. final val CLASSsym: Int(6)

  23. final val CLASStree: Int(3)

  24. final val COMPOUNDTYPEtree: Int(42)

  25. final val CONSTANTtpe: Int(15)

  26. final val DEBRUIJNINDEXtpe: Int(47)

  27. final val DEFDEFtree: Int(6)

  28. final val DOCDEFtree: Int(11)

  29. final val EMPTYtree: Int(1)

  30. final val EXISTENTIALTYPEtree: Int(45)

  31. final val EXISTENTIALtpe: Int(48)

  32. final val EXTMODCLASSref: Int(10)

  33. final val EXTref: Int(9)

  34. final val FUNCTIONtree: Int(21)

  35. final val IDENTtree: Int(36)

  36. final val IFtree: Int(23)

  37. final val IMPLICITMETHODtpe: Int(22)

  38. final val IMPORTtree: Int(9)

  39. final val LABELtree: Int(8)

  40. final val LITERAL: Int(23)

  41. final val LITERALboolean: Int(25)

  42. final val LITERALbyte: Int(26)

  43. final val LITERALchar: Int(28)

  44. final val LITERALclass: Int(35)

  45. final val LITERALdouble: Int(32)

  46. final val LITERALenum: Int(36)

  47. final val LITERALfloat: Int(31)

  48. final val LITERALint: Int(29)

  49. final val LITERALlong: Int(30)

  50. final val LITERALnull: Int(34)

  51. final val LITERALshort: Int(27)

  52. final val LITERALstring: Int(33)

  53. final val LITERALtree: Int(37)

  54. final val LITERALunit: Int(24)

  55. final val MATCHtree: Int(24)

  56. final val METHODtpe: Int(20)

  57. final val MODIFIERS: Int(50)

  58. final val MODULEsym: Int(7)

  59. final val MODULEtree: Int(4)

  60. val MajorVersion: Int

    ************************************************* Symbol table attribute format: Symtab = nentries_Nat {Entry} Entry = 1 TERMNAME len_Nat NameInfo | 2 TYPENAME len_Nat NameInfo | 3 NONEsym len_Nat | 4 TYPEsym len_Nat SymbolInfo | 5 ALIASsym len_Nat SymbolInfo | 6 CLASSsym len_Nat SymbolInfo [thistype_Ref] | 7 MODULEsym len_Nat SymbolInfo | 8 VALsym len_Nat [defaultGetter_Ref /* no longer needed*/ SymbolInfo [alias_Ref] | 9 EXTref len_Nat name_Ref [owner_Ref] | 10 EXTMODCLASSref len_Nat name_Ref [owner_Ref] | 11 NOtpe len_Nat | 12 NOPREFIXtpe len_Nat | 13 THIStpe len_Nat sym_Ref | 14 SINGLEtpe len_Nat type_Ref sym_Ref | 15 CONSTANTtpe len_Nat constant_Ref | 16 TYPEREFtpe len_Nat type_Ref sym_Ref {targ_Ref} | 17 TYPEBOUNDStpe len_Nat tpe_Ref tpe_Ref | 18 REFINEDtpe len_Nat classsym_Ref {tpe_Ref} | 19 CLASSINFOtpe len_Nat classsym_Ref {tpe_Ref} | 20 METHODtpe len_Nat tpe_Ref {sym_Ref} | 21 POLYTtpe len_Nat tpe_Ref {sym_Ref} | 22 IMPLICITMETHODtpe len_Nat tpe_Ref {sym_Ref} /* no longer needed */ * | 52 SUPERtpe len_Nat tpe_Ref tpe_Ref | 24 LITERALunit len_Nat | 25 LITERALboolean len_Nat value_Long | 26 LITERALbyte len_Nat value_Long | 27 LITERALshort len_Nat value_Long | 28 LITERALchar len_Nat value_Long | 29 LITERALint len_Nat value_Long | 30 LITERALlong len_Nat value_Long | 31 LITERALfloat len_Nat value_Long | 32 LITERALdouble len_Nat value_Long | 33 LITERALstring len_Nat name_Ref | 34 LITERALnull len_Nat | 35 LITERALclass len_Nat tpe_Ref | 36 LITERALenum len_Nat sym_Ref | 40 SYMANNOT len_Nat sym_Ref AnnotInfoBody | 41 CHILDREN len_Nat sym_Ref {sym_Ref} | 42 ANNOTATEDtpe len_Nat [sym_Ref /* no longer needed */ tpe_Ref {annotinfo_Ref} | 43 ANNOTINFO len_Nat AnnotInfoBody | 44 ANNOTARGARRAY len_Nat {constAnnotArg_Ref} | 47 DEBRUIJNINDEXtpe len_Nat level_Nat index_Nat | 48 EXISTENTIALtpe len_Nat type_Ref {symbol_Ref} | 49 TREE len_Nat 1 EMPTYtree | 49 TREE len_Nat 2 PACKAGEtree type_Ref sym_Ref mods_Ref name_Ref {tree_Ref} | 49 TREE len_Nat 3 CLASStree type_Ref sym_Ref mods_Ref name_Ref tree_Ref {tree_Ref} | 49 TREE len_Nat 4 MODULEtree type_Ref sym_Ref mods_Ref name_Ref tree_Ref | 49 TREE len_Nat 5 VALDEFtree type_Ref sym_Ref mods_Ref name_Ref tree_Ref tree_Ref | 49 TREE len_Nat 6 DEFDEFtree type_Ref sym_Ref mods_Ref name_Ref numtparams_Nat {tree_Ref} numparamss_Nat {numparams_Nat {tree_Ref}} tree_Ref tree_Ref | 49 TREE len_Nat 7 TYPEDEFtree type_Ref sym_Ref mods_Ref name_Ref tree_Ref {tree_Ref} | 49 TREE len_Nat 8 LABELtree type_Ref sym_Ref tree_Ref {tree_Ref} | 49 TREE len_Nat 9 IMPORTtree type_Ref sym_Ref tree_Ref {name_Ref name_Ref} | 49 TREE len_Nat 11 DOCDEFtree type_Ref sym_Ref string_Ref tree_Ref | 49 TREE len_Nat 12 TEMPLATEtree type_Ref sym_Ref numparents_Nat {tree_Ref} tree_Ref {tree_Ref} | 49 TREE len_Nat 13 BLOCKtree type_Ref tree_Ref {tree_Ref} | 49 TREE len_Nat 14 CASEtree type_Ref tree_Ref tree_Ref tree_Ref | 49 TREE len_Nat 15 SEQUENCEtree type_Ref {tree_Ref} | 49 TREE len_Nat 16 ALTERNATIVEtree type_Ref {tree_Ref} | 49 TREE len_Nat 17 STARtree type_Ref {tree_Ref} | 49 TREE len_Nat 18 BINDtree type_Ref sym_Ref name_Ref tree_Ref | 49 TREE len_Nat 19 UNAPPLYtree type_Ref tree_Ref {tree_Ref} | 49 TREE len_Nat 20 ARRAYVALUEtree type_Ref tree_Ref {tree_Ref} | 49 TREE len_Nat 21 FUNCTIONtree type_Ref sym_Ref tree_Ref {tree_Ref} | 49 TREE len_Nat 22 ASSIGNtree type_Ref tree_Ref tree_Ref | 49 TREE len_Nat 23 IFtree type_Ref tree_Ref tree_Ref tree_Ref | 49 TREE len_Nat 24 MATCHtree type_Ref tree_Ref {tree_Ref} | 49 TREE len_Nat 25 RETURNtree type_Ref sym_Ref tree_Ref | 49 TREE len_Nat 26 TREtree type_Ref tree_Ref tree_Ref {tree_Ref} | 49 TREE len_Nat 27 THROWtree type_Ref tree_Ref | 49 TREE len_Nat 28 NEWtree type_Ref tree_Ref | 49 TREE len_Nat 29 TYPEDtree type_Ref tree_Ref tree_Ref | 49 TREE len_Nat 30 TYPEAPPLYtree type_Ref tree_Ref {tree_Ref} | 49 TREE len_Nat 31 APPLYtree type_Ref tree_Ref {tree_Ref} | 49 TREE len_Nat 32 APPLYDYNAMICtree type_Ref sym_Ref tree_Ref {tree_Ref} | 49 TREE len_Nat 33 SUPERtree type_Ref sym_Ref tree_Ref name_Ref | 49 TREE len_Nat 34 THIStree type_Ref sym_Ref name_Ref | 49 TREE len_Nat 35 SELECTtree type_Ref sym_Ref tree_Ref name_Ref | 49 TREE len_Nat 36 IDENTtree type_Ref sym_Ref name_Ref | 49 TREE len_Nat 37 LITERALtree type_Ref constant_Ref | 49 TREE len_Nat 38 TYPEtree type_Ref | 49 TREE len_Nat 39 ANNOTATEDtree type_Ref tree_Ref tree_Ref | 49 TREE len_Nat 40 SINGLETONTYPEtree type_Ref tree_Ref | 49 TREE len_Nat 41 SELECTFROMTYPEtree type_Ref tree_Ref name_Ref | 49 TREE len_Nat 42 COMPOUNDTYPEtree type_Ref tree_Ref | 49 TREE len_Nat 43 APPLIEDTYPEtree type_Ref tree_Ref {tree_Ref} | 49 TREE len_Nat 44 TYPEBOUNDStree type_Ref tree_Ref tree_Ref | 49 TREE len_Nat 45 EXISTENTIALTYPEtree type_Ref tree_Ref {tree_Ref} | 50 MODIFIERS len_Nat flags_Long privateWithin_Ref SymbolInfo = name_Ref owner_Ref flags_LongNat [privateWithin_Ref] info_Ref NameInfo = <character sequence of length len_Nat in Utf8 format> NumInfo = <len_Nat-byte signed number in big endian format> Ref = Nat AnnotInfoBody = info_Ref {annotArg_Ref} {name_Ref constAnnotArg_Ref} AnnotArg = Tree | Constant ConstAnnotArg = Constant | AnnotInfo | AnnotArgArray

    ************************************************* Symbol table attribute format: Symtab = nentries_Nat {Entry} Entry = 1 TERMNAME len_Nat NameInfo | 2 TYPENAME len_Nat NameInfo | 3 NONEsym len_Nat | 4 TYPEsym len_Nat SymbolInfo | 5 ALIASsym len_Nat SymbolInfo | 6 CLASSsym len_Nat SymbolInfo [thistype_Ref] | 7 MODULEsym len_Nat SymbolInfo | 8 VALsym len_Nat [defaultGetter_Ref /* no longer needed*/ SymbolInfo [alias_Ref] | 9 EXTref len_Nat name_Ref [owner_Ref] | 10 EXTMODCLASSref len_Nat name_Ref [owner_Ref] | 11 NOtpe len_Nat | 12 NOPREFIXtpe len_Nat | 13 THIStpe len_Nat sym_Ref | 14 SINGLEtpe len_Nat type_Ref sym_Ref | 15 CONSTANTtpe len_Nat constant_Ref | 16 TYPEREFtpe len_Nat type_Ref sym_Ref {targ_Ref} | 17 TYPEBOUNDStpe len_Nat tpe_Ref tpe_Ref | 18 REFINEDtpe len_Nat classsym_Ref {tpe_Ref} | 19 CLASSINFOtpe len_Nat classsym_Ref {tpe_Ref} | 20 METHODtpe len_Nat tpe_Ref {sym_Ref} | 21 POLYTtpe len_Nat tpe_Ref {sym_Ref} | 22 IMPLICITMETHODtpe len_Nat tpe_Ref {sym_Ref} /* no longer needed */ * | 52 SUPERtpe len_Nat tpe_Ref tpe_Ref | 24 LITERALunit len_Nat | 25 LITERALboolean len_Nat value_Long | 26 LITERALbyte len_Nat value_Long | 27 LITERALshort len_Nat value_Long | 28 LITERALchar len_Nat value_Long | 29 LITERALint len_Nat value_Long | 30 LITERALlong len_Nat value_Long | 31 LITERALfloat len_Nat value_Long | 32 LITERALdouble len_Nat value_Long | 33 LITERALstring len_Nat name_Ref | 34 LITERALnull len_Nat | 35 LITERALclass len_Nat tpe_Ref | 36 LITERALenum len_Nat sym_Ref | 40 SYMANNOT len_Nat sym_Ref AnnotInfoBody | 41 CHILDREN len_Nat sym_Ref {sym_Ref} | 42 ANNOTATEDtpe len_Nat [sym_Ref /* no longer needed */ tpe_Ref {annotinfo_Ref} | 43 ANNOTINFO len_Nat AnnotInfoBody | 44 ANNOTARGARRAY len_Nat {constAnnotArg_Ref} | 47 DEBRUIJNINDEXtpe len_Nat level_Nat index_Nat | 48 EXISTENTIALtpe len_Nat type_Ref {symbol_Ref} | 49 TREE len_Nat 1 EMPTYtree | 49 TREE len_Nat 2 PACKAGEtree type_Ref sym_Ref mods_Ref name_Ref {tree_Ref} | 49 TREE len_Nat 3 CLASStree type_Ref sym_Ref mods_Ref name_Ref tree_Ref {tree_Ref} | 49 TREE len_Nat 4 MODULEtree type_Ref sym_Ref mods_Ref name_Ref tree_Ref | 49 TREE len_Nat 5 VALDEFtree type_Ref sym_Ref mods_Ref name_Ref tree_Ref tree_Ref | 49 TREE len_Nat 6 DEFDEFtree type_Ref sym_Ref mods_Ref name_Ref numtparams_Nat {tree_Ref} numparamss_Nat {numparams_Nat {tree_Ref}} tree_Ref tree_Ref | 49 TREE len_Nat 7 TYPEDEFtree type_Ref sym_Ref mods_Ref name_Ref tree_Ref {tree_Ref} | 49 TREE len_Nat 8 LABELtree type_Ref sym_Ref tree_Ref {tree_Ref} | 49 TREE len_Nat 9 IMPORTtree type_Ref sym_Ref tree_Ref {name_Ref name_Ref} | 49 TREE len_Nat 11 DOCDEFtree type_Ref sym_Ref string_Ref tree_Ref | 49 TREE len_Nat 12 TEMPLATEtree type_Ref sym_Ref numparents_Nat {tree_Ref} tree_Ref {tree_Ref} | 49 TREE len_Nat 13 BLOCKtree type_Ref tree_Ref {tree_Ref} | 49 TREE len_Nat 14 CASEtree type_Ref tree_Ref tree_Ref tree_Ref | 49 TREE len_Nat 15 SEQUENCEtree type_Ref {tree_Ref} | 49 TREE len_Nat 16 ALTERNATIVEtree type_Ref {tree_Ref} | 49 TREE len_Nat 17 STARtree type_Ref {tree_Ref} | 49 TREE len_Nat 18 BINDtree type_Ref sym_Ref name_Ref tree_Ref | 49 TREE len_Nat 19 UNAPPLYtree type_Ref tree_Ref {tree_Ref} | 49 TREE len_Nat 20 ARRAYVALUEtree type_Ref tree_Ref {tree_Ref} | 49 TREE len_Nat 21 FUNCTIONtree type_Ref sym_Ref tree_Ref {tree_Ref} | 49 TREE len_Nat 22 ASSIGNtree type_Ref tree_Ref tree_Ref | 49 TREE len_Nat 23 IFtree type_Ref tree_Ref tree_Ref tree_Ref | 49 TREE len_Nat 24 MATCHtree type_Ref tree_Ref {tree_Ref} | 49 TREE len_Nat 25 RETURNtree type_Ref sym_Ref tree_Ref | 49 TREE len_Nat 26 TREtree type_Ref tree_Ref tree_Ref {tree_Ref} | 49 TREE len_Nat 27 THROWtree type_Ref tree_Ref | 49 TREE len_Nat 28 NEWtree type_Ref tree_Ref | 49 TREE len_Nat 29 TYPEDtree type_Ref tree_Ref tree_Ref | 49 TREE len_Nat 30 TYPEAPPLYtree type_Ref tree_Ref {tree_Ref} | 49 TREE len_Nat 31 APPLYtree type_Ref tree_Ref {tree_Ref} | 49 TREE len_Nat 32 APPLYDYNAMICtree type_Ref sym_Ref tree_Ref {tree_Ref} | 49 TREE len_Nat 33 SUPERtree type_Ref sym_Ref tree_Ref name_Ref | 49 TREE len_Nat 34 THIStree type_Ref sym_Ref name_Ref | 49 TREE len_Nat 35 SELECTtree type_Ref sym_Ref tree_Ref name_Ref | 49 TREE len_Nat 36 IDENTtree type_Ref sym_Ref name_Ref | 49 TREE len_Nat 37 LITERALtree type_Ref constant_Ref | 49 TREE len_Nat 38 TYPEtree type_Ref | 49 TREE len_Nat 39 ANNOTATEDtree type_Ref tree_Ref tree_Ref | 49 TREE len_Nat 40 SINGLETONTYPEtree type_Ref tree_Ref | 49 TREE len_Nat 41 SELECTFROMTYPEtree type_Ref tree_Ref name_Ref | 49 TREE len_Nat 42 COMPOUNDTYPEtree type_Ref tree_Ref | 49 TREE len_Nat 43 APPLIEDTYPEtree type_Ref tree_Ref {tree_Ref} | 49 TREE len_Nat 44 TYPEBOUNDStree type_Ref tree_Ref tree_Ref | 49 TREE len_Nat 45 EXISTENTIALTYPEtree type_Ref tree_Ref {tree_Ref} | 50 MODIFIERS len_Nat flags_Long privateWithin_Ref SymbolInfo = name_Ref owner_Ref flags_LongNat [privateWithin_Ref] info_Ref NameInfo = <character sequence of length len_Nat in Utf8 format> NumInfo = <len_Nat-byte signed number in big endian format> Ref = Nat AnnotInfoBody = info_Ref {annotArg_Ref} {name_Ref constAnnotArg_Ref} AnnotArg = Tree | Constant ConstAnnotArg = Constant | AnnotInfo | AnnotArgArray

    len is remaining length after len.

  61. val MinorVersion: Int

  62. final val NEWtree: Int(28)

  63. final val NONEsym: Int(3)

  64. final val NOPREFIXtpe: Int(12)

  65. final val NOtpe: Int(11)

  66. final val PACKAGEtree: Int(2)

  67. final val POLYtpe: Int(21)

  68. final val REFINEDtpe: Int(18)

  69. final val RETURNtree: Int(25)

  70. final val SELECTFROMTYPEtree: Int(41)

  71. final val SELECTtree: Int(35)

  72. final val SINGLETONTYPEtree: Int(40)

  73. final val SINGLEtpe: Int(14)

  74. final val STARtree: Int(17)

  75. final val SUPERtpe: Int(46)

  76. final val SUPERtree: Int(33)

  77. final val SYMANNOT: Int(40)

  78. final val TEMPLATEtree: Int(12)

  79. final val TERMname: Int(1)

  80. final val THIStpe: Int(13)

  81. final val THIStree: Int(34)

  82. final val THROWtree: Int(27)

  83. final val TREE: Int(49)

  84. final val TREtree: Int(26)

  85. final val TYPEAPPLYtree: Int(30)

  86. final val TYPEBOUNDStpe: Int(17)

  87. final val TYPEBOUNDStree: Int(44)

  88. final val TYPEDEFtree: Int(7)

  89. final val TYPEDtree: Int(29)

  90. final val TYPEREFtpe: Int(16)

  91. final val TYPEname: Int(2)

  92. final val TYPEsym: Int(4)

  93. final val TYPEtree: Int(38)

  94. final val UNAPPLYtree: Int(19)

  95. final val VALDEFtree: Int(5)

  96. final val VALsym: Int(8)

  97. def VersionString: String

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

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

  100. 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
  101. 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
  102. 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

  103. final val firstSymTag: Int(3)

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

  105. def hashCode(): Int

    The hashCode method for reference types.

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

    returns

    the hash code value for this object.

    Definition Classes
    AnyRef → Any
  106. 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
  107. final val lastExtSymTag: Int(10)

  108. final val lastSymTag: Int(8)

  109. 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
  110. 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

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

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

    Definition Classes
    AnyRef
  113. 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
  114. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any

No Group