Class

scala.pickling.json

JSONPickleReader

Related Doc: package json

Permalink

class JSONPickleReader extends PReader with PickleTools

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. JSONPickleReader
  2. PickleTools
  3. PReader
  4. Hintable
  5. AnyRef
  6. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new JSONPickleReader(datum: Any, format: JSONPickleFormat)

    Permalink

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. def areHintsPinned: Boolean

    Permalink
    Definition Classes
    PickleTools
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def atObject: Boolean

    Permalink

    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
    JSONPickleReaderPReader
  7. def atPrimitive: Boolean

    Permalink

    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
    JSONPickleReaderPReader
  8. def beginCollection(): PReader

    Permalink

    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
    JSONPickleReaderPReader
  9. def beginEntry(): String

    Permalink

    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
    JSONPickleReaderPReader
  10. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. var datum: Any

    Permalink
  12. def endCollection(): Unit

    Permalink

    Denote that we are done reading a collection.

    Denote that we are done reading a collection.

    Definition Classes
    JSONPickleReaderPReader
  13. def endEntry(): Unit

    Permalink

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

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

    Definition Classes
    JSONPickleReaderPReader
  14. final def eq(arg0: AnyRef): Boolean

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

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  19. def hintElidedType(tag: FastTypeTag[_]): JSONPickleReader.this.type

    Permalink

    Hints to the pickle format that we KNOW the type of this field, so it can elide any type hints from the final pickle.

    Hints to the pickle format that we KNOW the type of this field, so it can elide any type hints from the final pickle. During unpickling, this informs the format that it shouldn't look for any type hints in the pickle, but instead use this tag as the unpickle tag key.

    Definition Classes
    PickleToolsHintable
  20. def hintKnownSize(knownSize: Int): JSONPickleReader.this.type

    Permalink

    Hints at the expected (byte) size of the entry we're about to write..

    Hints at the expected (byte) size of the entry we're about to write..

    Definition Classes
    PickleToolsHintable
  21. def hintOid(oid: Int): JSONPickleReader.this.type

    Permalink

    Hints the object id of the next beginEntry/endEntry calls.

    Hints the object id of the next beginEntry/endEntry calls. If this oid is -1, it implies that the next entry has not been registered in any sharing cache, and should be pickled fully. If the oid != -1, then the pickle format is free to elide the fields of the entry in favor of pickling a scala.pickling.refs.Ref.

    Hint: This is only used during pickling.

    Definition Classes
    PickleToolsHintable
  22. var hints: List[Hints]

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

    Permalink
    Definition Classes
    Any
  24. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  25. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  26. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  27. def pinHints(): JSONPickleReader.this.type

    Permalink

    Locks the hints down to what we've specified, so if you drop into another pickler it retains our information.

    Locks the hints down to what we've specified, so if you drop into another pickler it retains our information.

    Definition Classes
    PickleToolsHintable
  28. def popHints(): JSONPickleReader.this.type

    Permalink

    Pops to the previously saved set of hints.

    Pops to the previously saved set of hints.

    Definition Classes
    PickleToolsHintable
  29. def pushHints(): JSONPickleReader.this.type

    Permalink

    Creates a new fresh set of hints, preserving what was hinted before.

    Creates a new fresh set of hints, preserving what was hinted before.

    Definition Classes
    PickleToolsHintable
  30. def readElement(): PReader

    Permalink

    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
    JSONPickleReaderPReader
  31. def readField(name: String): JSONPickleReader

    Permalink

    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
    JSONPickleReaderPReader
  32. def readLength(): Int

    Permalink

    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
    JSONPickleReaderPReader
  33. def readPrimitive(): Any

    Permalink

    Reads one of the supported primitive types from the pickler.

    Reads one of the supported primitive types from the pickler.

    Definition Classes
    JSONPickleReaderPReader
  34. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  35. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  36. def unpinHints(): JSONPickleReader.this.type

    Permalink

    Unlocks the hints.

    Unlocks the hints.

    Definition Classes
    PickleToolsHintable
  37. final def wait(): Unit

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

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

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

    Permalink
    Definition Classes
    PickleTools

Inherited from PickleTools

Inherited from PReader

Inherited from Hintable

Inherited from AnyRef

Inherited from Any

Ungrouped