Class

fm.serializer.json

JSONByteArrayInput

Related Doc: package json

Permalink

final class JSONByteArrayInput extends JSONInput

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JSONByteArrayInput
  2. JSONInput
  3. Input
  4. RawInput
  5. CollectionInput
  6. FieldInput
  7. NestedInput
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new JSONByteArrayInput(bytes: Array[Byte], options: JSONOptions)

    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 allowStringMap: Boolean

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

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  9. def expectNextChar(ch: Int): Unit

    Permalink
    Definition Classes
    JSONInput
  10. def finalize(): Unit

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

    Permalink
    Definition Classes
    AnyRef → Any
  12. def handleCollectionComma(): Unit

    Permalink
    Definition Classes
    JSONInput
  13. def handleFieldComma(): Unit

    Permalink
    Definition Classes
    JSONInput
  14. def hasAnotherElement: Boolean

    Permalink

    Is there another element to read in the collection?

    Is there another element to read in the collection?

    Definition Classes
    JSONInputCollectionInput
  15. def hasNext: Boolean

    Permalink

    Is there a next character? (i.e.

    Is there a next character? (i.e. is peek valid?)

    Attributes
    protected
    Definition Classes
    JSONInput
  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. def next: Char

    Permalink

    Return peek and advance to the next character

    Return peek and advance to the next character

    Attributes
    protected
    Definition Classes
    JSONByteArrayInputJSONInput
  20. def nextValueIsNull: Boolean

    Permalink

    Returns true if the next value is known to be null otherwise false if the value is not null or is unknown.

    Returns true if the next value is known to be null otherwise false if the value is not null or is unknown. This means that even if the next value ends up being null this can return false.

    Note: If the next value is null then this method should consume that input

    Definition Classes
    JSONInputRawInputNestedInput
  21. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  23. var peek: Int

    Permalink

    Peek at the next character without consuming it

    Peek at the next character without consuming it

    Attributes
    protected
    Definition Classes
    JSONByteArrayInputJSONInput
  24. def readFieldName(): String

    Permalink

    If dynamic string maps are supported then this should be implemented otherwise this can just throw an exception.

    If dynamic string maps are supported then this should be implemented otherwise this can just throw an exception.

    null should be returns on the end of an object/message

    Definition Classes
    JSONInputFieldInput
  25. def readFieldNumber(nameToNumMap: Map[String, Int]): Int

    Permalink

    This is for reading fields of an object.

    This is for reading fields of an object.

    Return the field number for the next readable field. Returns 0 if we've reached the end of the object/message

    Definition Classes
    JSONInputFieldInput
  26. def readNestedBool(): Boolean

    Permalink
    Definition Classes
    JSONInputNestedInput
  27. def readNestedByteArray(): Array[Byte]

    Permalink
    Definition Classes
    JSONInputNestedInput
  28. def readNestedCollection[T](f: (CollectionInput) ⇒ T): T

    Permalink
    Definition Classes
    JSONInputNestedInput
  29. def readNestedDouble(): Double

    Permalink
    Definition Classes
    JSONInputNestedInput
  30. def readNestedFixedInt(): Int

    Permalink
    Definition Classes
    JSONInputNestedInput
  31. def readNestedFixedLong(): Long

    Permalink
    Definition Classes
    JSONInputNestedInput
  32. def readNestedFloat(): Float

    Permalink
    Definition Classes
    JSONInputNestedInput
  33. def readNestedInt(): Int

    Permalink
    Definition Classes
    JSONInputNestedInput
  34. def readNestedLong(): Long

    Permalink
    Definition Classes
    JSONInputNestedInput
  35. def readNestedObject[T](f: (FieldInput) ⇒ T): T

    Permalink
    Definition Classes
    JSONInputNestedInput
  36. def readNestedSignedInt(): Int

    Permalink
    Definition Classes
    JSONInputNestedInput
  37. def readNestedSignedLong(): Long

    Permalink
    Definition Classes
    JSONInputNestedInput
  38. def readNestedString(): String

    Permalink
    Definition Classes
    JSONInputNestedInput
  39. def readNestedUnsignedInt(): Int

    Permalink
    Definition Classes
    JSONInputNestedInput
  40. def readNestedUnsignedLong(): Long

    Permalink
    Definition Classes
    JSONInputNestedInput
  41. def readRawBool(): Boolean

    Permalink
    Definition Classes
    JSONInputRawInput
  42. def readRawByteArray(): Array[Byte]

    Permalink
    Definition Classes
    JSONInputRawInput
  43. def readRawCollection[T](f: (CollectionInput) ⇒ T): T

    Permalink
    Definition Classes
    JSONInputRawInput
  44. def readRawDouble(): Double

    Permalink
    Definition Classes
    JSONInputRawInput
  45. def readRawFixedInt(): Int

    Permalink
    Definition Classes
    JSONInputRawInput
  46. def readRawFixedLong(): Long

    Permalink
    Definition Classes
    JSONInputRawInput
  47. def readRawFloat(): Float

    Permalink
    Definition Classes
    JSONInputRawInput
  48. def readRawInt(): Int

    Permalink
    Definition Classes
    JSONInputRawInput
  49. def readRawLong(): Long

    Permalink
    Definition Classes
    JSONInputRawInput
  50. def readRawObject[T](f: (FieldInput) ⇒ T): T

    Permalink
    Definition Classes
    JSONInputRawInput
  51. def readRawSignedInt(): Int

    Permalink
    Definition Classes
    JSONInputRawInput
  52. def readRawSignedLong(): Long

    Permalink
    Definition Classes
    JSONInputRawInput
  53. def readRawString(): String

    Permalink
    Definition Classes
    JSONInputRawInput
  54. def readRawUnsignedInt(): Int

    Permalink
    Definition Classes
    JSONInputRawInput
  55. def readRawUnsignedLong(): Long

    Permalink
    Definition Classes
    JSONInputRawInput
  56. def skipUnknownField(): Unit

    Permalink

    Skip an unknown field value.

    Skip an unknown field value.

    If after calling readFieldNumber(...) we don't know how to handle the resulting field number then this method can be called to skip the value of the field after which we can call readFieldNumber(...) again.

    Definition Classes
    JSONInputFieldInput
  57. final def synchronized[T0](arg0: ⇒ T0): T0

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

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

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

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

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

Inherited from JSONInput

Inherited from Input

Inherited from RawInput

Inherited from CollectionInput

Inherited from FieldInput

Inherited from NestedInput

Inherited from AnyRef

Inherited from Any

Ungrouped