Object/Trait

com.rojoma.json.v3.io

JsonReader

Related Docs: trait JsonReader | package io

Permalink

object JsonReader

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JsonReader
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

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 apply(s: String): JsonReader

    Permalink
  5. def apply(r: Reader, buffer: Boolean = true, blockSize: Int = 1024): JsonReader

    Permalink
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

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

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. def fromEvents(it: Iterator[JsonEvent]): JValue

    Permalink

    Reads a single datum out of an iterator of events.

    Reads a single datum out of an iterator of events.

    it

    The source of tokens. After this call succeeds, the iterator is positioned at the next event after the read datum.

    returns

    A com.rojoma.json.v3.ast.JValue

    Annotations
    @throws( classOf[JsonReaderException] )
    Exceptions thrown

    [[com.rojoma.json.v3.io.JsonReaderException]] if a complete object cannot be read.

    See also

    com.rojoma.json.v3.io.JsonReader

  12. def fromReader(r: Reader, buffer: Boolean = true, blockSize: Int = 1024): JValue

    Permalink

    Read a com.rojoma.json.v3.ast.JValue out of a Reader.

    Read a com.rojoma.json.v3.ast.JValue out of a Reader.

    r

    The source of characters.

    returns

    A com.rojoma.json.v3.ast.JValue

    Annotations
    @throws( classOf[JsonReaderException] ) @throws( classOf[java.io.IOException] )
    Exceptions thrown

    [[com.rojoma.json.v3.io.JsonReaderException]] if a complete object cannot be read.

    `IOException` if a low-level IO error occurs.

    See also

    com.rojoma.json.v3.io.JsonReader

  13. def fromString(s: String): JValue

    Permalink

    Read a com.rojoma.json.v3.ast.JValue out of a String.

    Read a com.rojoma.json.v3.ast.JValue out of a String.

    s

    The source of characters.

    returns

    A com.rojoma.json.v3.ast.JValue

    Annotations
    @throws( classOf[JsonReaderException] )
    Exceptions thrown

    [[com.rojoma.json.v3.io.JsonReaderException]] if a complete object cannot be read.

    See also

    com.rojoma.json.v3.io.JsonReader

  14. def fromTokens(it: Iterator[JsonToken]): JValue

    Permalink

    Reads a single datum out of an iterator of tokens.

    Reads a single datum out of an iterator of tokens.

    it

    The source of tokens. After this call succeeds, the iterator is positioned at the next token after the read datum.

    returns

    A com.rojoma.json.v3.ast.JValue

    Annotations
    @throws( classOf[JsonReaderException] )
    Exceptions thrown

    [[com.rojoma.json.v3.io.JsonReaderException]] if a complete object cannot be read.

    See also

    com.rojoma.json.v3.io.JsonReader

  15. final def getClass(): Class[_]

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  21. def semibufferedString(s: String): JsonReader

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  24. def unbufferedString(s: String): JsonReader

    Permalink
  25. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped