Object/Trait

com.rallyhealth.weejson.v1

BufferedValue

Related Docs: trait BufferedValue | package v1

Permalink

object BufferedValue extends Transformer[BufferedValue]

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BufferedValue
  2. Transformer
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. sealed trait AnyNum extends BufferedValue

    Permalink
  2. case class Arr(value: BufferedValue*) extends BufferedValue with Product with Serializable

    Permalink
  3. case class Binary(b: Array[Byte]) extends BufferedValue with Product with Serializable

    Permalink
  4. sealed trait Bool extends BufferedValue

    Permalink
  5. case class Ext(tag: Byte, b: Array[Byte]) extends BufferedValue with Product with Serializable

    Permalink
  6. case class InvalidData(data: BufferedValue, msg: String) extends Exception with Product with Serializable

    Permalink

    Thrown when weepickle tries to convert a JSON blob into a given data structure but fails because part the blob is invalid

    Thrown when weepickle tries to convert a JSON blob into a given data structure but fails because part the blob is invalid

    data

    The section of the JSON blob that weepickle tried to convert. This could be the entire blob, or it could be some subtree.

    msg

    Human-readable text saying what went wrong

  7. case class Num(s: String, decIndex: Int, expIndex: Int) extends AnyNum with Product with Serializable

    Permalink
  8. case class NumDouble(d: Double) extends AnyNum with Product with Serializable

    Permalink
  9. case class NumLong(l: Long) extends AnyNum with Product with Serializable

    Permalink
  10. case class Obj(value0: (String, BufferedValue)*) extends BufferedValue with Product with Serializable

    Permalink
  11. sealed trait Selector extends AnyRef

    Permalink
  12. case class Str(value0: String) extends BufferedValue with Product with Serializable

    Permalink
  13. case class Timestamp(i: Instant) extends BufferedValue with Product with Serializable

    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. object AnyNum

    Permalink
  5. object Bool

    Permalink
  6. implicit def BufferableBigDecimal(i: BigDecimal): AnyNum

    Permalink
  7. implicit def BufferableBoolean(i: Boolean): Bool

    Permalink
  8. implicit def BufferableByte(i: Byte): NumLong

    Permalink
  9. implicit def BufferableDict[T](items: Iterable[(String, T)])(implicit f: (T) ⇒ BufferedValue): Obj

    Permalink
  10. implicit def BufferableDouble(i: Double): NumDouble

    Permalink
  11. implicit def BufferableFloat(i: Float): NumDouble

    Permalink
  12. implicit def BufferableInstant(dt: Instant): Timestamp

    Permalink
  13. implicit def BufferableInt(i: Int): NumLong

    Permalink
  14. implicit def BufferableLong(i: Long): NumLong

    Permalink
  15. implicit def BufferableNull(i: Null): Null.type

    Permalink
  16. implicit def BufferableSeq[T](items: Iterable[T])(implicit f: (T) ⇒ BufferedValue): Arr

    Permalink
  17. implicit def BufferableShort(i: Short): NumLong

    Permalink
  18. implicit def BufferableString(s: CharSequence): Str

    Permalink
  19. object Builder extends JsVisitor[BufferedValue, BufferedValue]

    Permalink

    Extending JsVisitor here for bin compat reasons only.

    Extending JsVisitor here for bin compat reasons only. Overrides all methods, essentially extending Visitor without hidden JSON "baggage".

  20. object False extends Bool with Product with Serializable

    Permalink
  21. object Null extends BufferedValue with Product with Serializable

    Permalink
  22. object Selector

    Permalink
  23. object True extends Bool with Product with Serializable

    Permalink
  24. final def asInstanceOf[T0]: T0

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

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

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  29. def fromAttributes(items: Iterable[(String, BufferedValue)]): Obj

    Permalink
  30. def fromElements(items: Iterable[BufferedValue]): Arr

    Permalink
  31. final def getClass(): Class[_]

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  37. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  39. def transform[T](i: BufferedValue, to: Visitor[_, T]): T

    Permalink
    Definition Classes
    BufferedValueTransformer
  40. def validate[T](i: BufferedValue, to: Visitor[_, T]): Try[T]

    Permalink
    Definition Classes
    Transformer
  41. final def wait(): Unit

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

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

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

Inherited from Transformer[BufferedValue]

Inherited from AnyRef

Inherited from Any

Ungrouped