Packages

case class JsEntry(key: JsString, value: JsonVal) extends JsonVal with Product with Serializable

JSON Object being constructed.

key

JSON key

value

JSON value

Linear Supertypes
Product, Equals, JsonVal, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JsEntry
  2. Product
  3. Equals
  4. JsonVal
  5. Serializable
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new JsEntry(key: JsString, value: JsonVal)

    key

    JSON key

    value

    JSON value

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def ++(js: JsonVal): JsonVal

    Synthesize Json object.

    Synthesize Json object. If the json object is json primitive type, an exception may occur.

    js

    join json objects.

    Definition Classes
    JsEntry → JsonVal
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. def approvalSyntax(c: Char): Unit

    Detects hooked binding syntax of Json literal.

    Detects hooked binding syntax of Json literal. This detects syntax errors when joining Json objects. The argument receives a delimiter that is not directly related to the construction of Json.

    c

    delimiter

    Definition Classes
    JsEntry → JsonVal
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  8. def des[T](implicit c: Read[T]): T
    Definition Classes
    JsonVal
  9. def encode(b: StringBuffer): Unit

    Convert to json literal.

    Convert to json literal.

    Definition Classes
    JsEntry → JsonVal
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. def isEmpty: Boolean
    Definition Classes
    JsonVal
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. def isNonEmpty: Boolean
    Definition Classes
    JsonVal
  15. val key: JsString
  16. def named(_key: String): JsonVal

    Get a json value with a specific json key from the json object.

    Get a json value with a specific json key from the json object. JsNull may change if that key doesn't exist.

    _key

    Target json key name

    Definition Classes
    JsEntry → JsonVal
  17. def named(key: JsonKeyRef): JsonVal
    Definition Classes
    JsonVal
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. def productElementNames: Iterator[String]
    Definition Classes
    Product
  22. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  23. def toString(): String
    Definition Classes
    JsEntry → JsonVal → AnyRef → Any
  24. def typed[T](key: JsonKeyRef)(implicit arg0: Read[T]): T
    Definition Classes
    JsonVal
  25. val value: JsonVal
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  28. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from Product

Inherited from Equals

Inherited from JsonVal

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped