com.fsist.safepickle

PickleReader

Related Doc: package safepickle

trait PickleReader extends AnyRef

Produces a stream of tokens. Counterpart of Writer.

This is patterned after the Jackson stream interface. At any given time, the Reader has a current token, unless it hasn't started reading yet or is already done. The current token can be inspected using the methods on the trait. Typical usage looks like this:

while (reader.next) { reader.tokenType match ... }

The methods int, string etc. throw an UnpicklingException if the current token is not of the right type, or if there is no current token.

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. PickleReader
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def atEof: Boolean

    Begins returning true after the first time next returns false.

  2. abstract def attributeName: String

  3. abstract def boolean: Boolean

  4. abstract def double: Double

  5. abstract def float: Float

  6. abstract def int: Int

  7. abstract def long: Long

  8. abstract def next(): Boolean

    Advances to the next token.

    Advances to the next token. Returns false on EOF.

  9. abstract def string: String

  10. abstract def tokenType: TokenType

Concrete 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 assertTokenType(tt: TokenType): Unit

    Throws an UnpicklingException if the current tokenType isn't tt.

  6. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean

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

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

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

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

    Definition Classes
    AnyRef → Any
  12. final def isInstanceOf[T0]: Boolean

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

    Definition Classes
    AnyRef
  14. def nextInArray(): Unit

    Like next(), but throws an UnexpectedEofException if EOF is encountered.

  15. def nextInObject(): Unit

    Like next(), but throws an UnexpectedEofException if EOF is encountered.

  16. final def notify(): Unit

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

    Definition Classes
    AnyRef
  18. def read[T](expectObjectStart: Boolean = true)(implicit pickler: Pickler[T]): T

    Can be overridden by a particular implementation to intercept certain types, based on runtime type checking of the typeName, and read them in some backend-specific way without using the provided pickler.

    Can be overridden by a particular implementation to intercept certain types, based on runtime type checking of the typeName, and read them in some backend-specific way without using the provided pickler.

    Otherwise, if the type is not being overridden, delegates to the pickler provided.

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

    Definition Classes
    AnyRef
  20. def toString(): String

    Definition Classes
    AnyRef → Any
  21. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped