argonaut

Jsons

trait Jsons extends AnyRef

Constructors and other utilities for JSON values.

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Jsons
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. type JsonArray = List[Json]

  2. type JsonAssoc = (JsonField, Json)

  3. type JsonField = String

  4. type JsonObjectMap = InsertionMap[JsonField, Json]

  5. type JsonString = String

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. implicit def JsonInstances: Equal[Json] with Show[Json]

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clone(): AnyRef

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

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

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

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

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

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

    Definition Classes
    Any
  15. val jArray: (JsonArray) ⇒ Json

    Construct a JSON value that is an array.

  16. def jArrayPL: @?>[Json, JsonArray]

    A partial lens for JSON array values.

  17. val jBool: (Boolean) ⇒ Json

    Construct a JSON value that is a boolean.

  18. def jBoolPL: @?>[Json, Boolean]

    A partial lens for JSON boolean values.

  19. val jDouble: (Double) ⇒ Json

    Construct a JSON value that is a double.

  20. val jEmptyArray: Json

    A JSON value that is an empty array.

  21. val jEmptyObject: Json

    A JSON value that is an empty object.

  22. val jEmptyString: Json

    A JSON value that is an empty string.

  23. val jFalse: Json

    Construct a JSON boolean value of false.

  24. val jNull: Json

    Construct a JSON value that is null.

  25. val jNumber: (JsonNumber) ⇒ Json

    Construct a JSON value that is a number.

  26. def jNumberPL: @?>[Json, JsonNumber]

    A partial lens for JSON number values.

  27. val jObject: (JsonObject) ⇒ Json

    Construct a JSON value that is an object.

  28. def jObjectAssocList(x: List[(JsonField, Json)]): Json

    Construct a JSON value that is an object from an association list.

  29. def jObjectMap(x: JsonObjectMap): Json

    Construct a JSON value that is an object from an index.

  30. def jObjectPL: @?>[Json, JsonObject]

    A partial lens for JSON object values.

  31. def jSingleArray(j: Json): Json

    Returns a function that takes a single value and produces a JSON array that contains only that value.

  32. def jSingleObject(k: JsonField, v: Json): Json

    Returns a function that takes an association value and produces a JSON object that contains only that value.

  33. val jString: (JsonString) ⇒ Json

    Construct a JSON value that is a string.

  34. def jStringPL: @?>[Json, JsonString]

    A partial lens for JSON string values.

  35. val jTrue: Json

    Construct a JSON boolean value of true.

  36. val jZero: Json

    A JSON value that is a zero number.

  37. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  38. final def notify(): Unit

    Definition Classes
    AnyRef
  39. final def notifyAll(): Unit

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

    Definition Classes
    AnyRef
  41. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any

Ungrouped