c

upack

Ext

case class Ext(tag: Byte, data: Array[Byte]) extends Msg with Product with Serializable

Linear Supertypes
Serializable, Serializable, Product, Equals, Msg, Writable, Readable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Ext
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Msg
  7. Writable
  8. Readable
  9. AnyRef
  10. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Ext(tag: Byte, data: Array[Byte])

Value Members

  1. def arr: ArrayBuffer[Msg]

    Returns the elements of this Msg, fails if it is not a upack.Arr

    Returns the elements of this Msg, fails if it is not a upack.Arr

    Definition Classes
    Msg
  2. def binary: Array[Byte]

    Returns the String value of this Msg, fails if it is not a upack.Str

    Returns the String value of this Msg, fails if it is not a upack.Str

    Definition Classes
    Msg
  3. def bool: Boolean

    Returns the Boolean value of this Msg, fails if it is not a upack.Bool

    Returns the Boolean value of this Msg, fails if it is not a upack.Bool

    Definition Classes
    Msg
  4. val data: Array[Byte]
  5. def int32: Int

    Returns the Double value of this Msg, fails if it is not a upack.Int32, upack.Int64 or upack.UInt64

    Returns the Double value of this Msg, fails if it is not a upack.Int32, upack.Int64 or upack.UInt64

    Definition Classes
    Msg
  6. def int64: Long

    Returns the Double value of this Msg, fails if it is not a upack.Int32, upack.Int64 or upack.UInt64

    Returns the Double value of this Msg, fails if it is not a upack.Int32, upack.Int64 or upack.UInt64

    Definition Classes
    Msg
  7. def isNull: Boolean

    Returns true if the value of this Msg is ujson.Null, false otherwise

    Returns true if the value of this Msg is ujson.Null, false otherwise

    Definition Classes
    Msg
  8. def obj: LinkedHashMap[Msg, Msg]

    Returns the key/value map of this Msg, fails if it is not a upack.Obj

    Returns the key/value map of this Msg, fails if it is not a upack.Obj

    Definition Classes
    Msg
  9. def str: String

    Returns the String value of this Msg, fails if it is not a upack.Str

    Returns the String value of this Msg, fails if it is not a upack.Str

    Definition Classes
    Msg
  10. val tag: Byte
  11. def transform[T](f: Visitor[_, T]): T
    Definition Classes
    MsgReadable
  12. def writeBytesTo(out: OutputStream): Unit
    Definition Classes
    Msg → Writable