scala.pickling.binary

BinaryPickleReader

class BinaryPickleReader extends AbstractBinaryReader with PReader with PickleTools

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. BinaryPickleReader
  2. PickleTools
  3. PReader
  4. Hintable
  5. AbstractBinaryReader
  6. AnyRef
  7. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new BinaryPickleReader(in: BinaryInput, format: BinaryPickleFormat)

Value Members

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

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

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

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

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

    Definition Classes
    Any
  6. var _lastTypeStringRead: String

    Attributes
    protected
    Definition Classes
    AbstractBinaryReader
  7. def areHintsPinned: Boolean

    Definition Classes
    PickleTools
  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def atObject: Boolean

    returns true if the reader is currently looking at a pickled object/structure.

    returns true if the reader is currently looking at a pickled object/structure.

    Definition Classes
    BinaryPickleReaderPReader
  10. def atPrimitive: Boolean

    returns true if the reader is currently looking at a pickled primitive.

    returns true if the reader is currently looking at a pickled primitive.

    Definition Classes
    BinaryPickleReaderPReader
  11. def beginCollection(): PReader

    Denotes we'd like to read the current entry as a collection.

    Denotes we'd like to read the current entry as a collection. Note: Must be called after a beginEntry* call.

    Definition Classes
    BinaryPickleReaderPReader
  12. def beginEntry(): String

    Start reading a pickled value.

    Start reading a pickled value. This will return any serialized type tag key string. This string can be used to reconstitute a FastTypeTag w/ a mirror, but is intended for use as fast string-matching.

    Definition Classes
    BinaryPickleReaderPReader
  13. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. def endCollection(): Unit

    Denote that we are done reading a collection.

    Denote that we are done reading a collection.

    Definition Classes
    BinaryPickleReaderPReader
  15. def endEntry(): Unit

    Denotes that we're done reading an entry in the pickle.

    Denotes that we're done reading an entry in the pickle.

    Definition Classes
    BinaryPickleReaderPReader
  16. final def eq(arg0: AnyRef): Boolean

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

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  20. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  21. def hintDynamicallyElidedType(): BinaryPickleReader.this.type

    Definition Classes
    PickleTools
  22. def hintKnownSize(knownSize: Int): BinaryPickleReader.this.type

    Definition Classes
    PickleTools
  23. def hintOid(oid: Int): BinaryPickleReader.this.type

    Definition Classes
    PickleTools
  24. def hintStaticallyElidedType(): BinaryPickleReader.this.type

    Definition Classes
    PickleTools
  25. def hintTag(tag: FastTypeTag[_]): BinaryPickleReader.this.type

    Definition Classes
    PickleTools
  26. var hints: List[Hints]

    Attributes
    protected
    Definition Classes
    PickleTools
  27. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  28. def lastTagRead: String

    Definition Classes
    AbstractBinaryReader
  29. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  30. final def notify(): Unit

    Definition Classes
    AnyRef
  31. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  32. def pinHints(): BinaryPickleReader.this.type

    Definition Classes
    PickleTools
  33. def popHints(): BinaryPickleReader.this.type

    Definition Classes
    PickleTools
  34. def pushHints(): BinaryPickleReader.this.type

    Definition Classes
    PickleTools
  35. def readElement(): PReader

    Returns a new Reader that can be used to read the next element in a collection.

    Returns a new Reader that can be used to read the next element in a collection.

    Definition Classes
    BinaryPickleReaderPReader
  36. def readField(name: String): BinaryPickleReader

    Returns a reader which can read a field of a complex structure in the pickle.

    Returns a reader which can read a field of a complex structure in the pickle.

    name

    The name of the field

    returns

    A reader which can read the structure's field.

    Definition Classes
    BinaryPickleReaderPReader
  37. def readLength(): Int

    Reads the length of a serialized collection.

    Reads the length of a serialized collection. Must be called directly after beginCollection and before readElement.

    returns

    The length of a serialized collection.

    Definition Classes
    BinaryPickleReaderPReader
  38. def readPrimitive(): Any

    Reads one of the supported primitive types from the pickler.

    Reads one of the supported primitive types from the pickler.

    Definition Classes
    BinaryPickleReaderPReader
  39. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  40. def toString(): String

    Definition Classes
    AnyRef → Any
  41. def unpinHints(): BinaryPickleReader.this.type

    Definition Classes
    PickleTools
  42. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  45. def withHints[T](body: (Hints) ⇒ T): T

    Definition Classes
    PickleTools

Inherited from PickleTools

Inherited from PReader

Inherited from Hintable

Inherited from AbstractBinaryReader

Inherited from AnyRef

Inherited from Any

Ungrouped