io.finch.json

Json

object Json

A JSON companion object, which in an entry point into JSON API.

Annotations
@deprecated
Deprecated

(Since version 0.7.0) Finch Json is deprecated in favor of other Json libraries.

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

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. def arr(args: Any*): Json

    Creates a new JSON array of given sequence of items args.

    Creates a new JSON array of given sequence of items args.

    args

    sequence of items in the array

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def compress(j: Json): Json

    Removes all null-value properties from the given JSON object j.

  10. def concatLeft(a: Json, b: Json): Json

    Concatenates two given JSON object a and b with a object in priority.

    Concatenates two given JSON object a and b with a object in priority.

    a

    the left object

    b

    the right object

  11. def concatRight(a: Json, b: Json): Json

    Concatenates two given JSON object a and b with b object in priority.

    Concatenates two given JSON object a and b with b object in priority.

    a

    the left object

    b

    the right object

  12. def decode(s: String): Option[Json]

    Decodes a JSON object from the given string s.

    Decodes a JSON object from the given string s.

    s

    a string representation of a json object

  13. def emptyArray: Json

    Creates an empty JSON array.

  14. def emptyObject: Json

    Creates an empty JSON object.

  15. def encode(j: Json): String

    Encodes the given JSON object j into its string representation.

    Encodes the given JSON object j into its string representation.

    j

    a json object to encode

  16. final def eq(arg0: AnyRef): Boolean

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

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

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

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

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

    Definition Classes
    Any
  22. def mergeLeft(a: Json, b: Json): Json

    Deeply merges given JSON objects a and b into a single json object.

    Deeply merges given JSON objects a and b into a single json object. In case of conflict tag the value of a _left_ json object will be taken.

    a

    the left json object

    b

    the right json object

  23. def mergeRight(a: Json, b: Json): Json

    Deeply merges given JSON objects a and b into a single json object.

    Deeply merges given JSON objects a and b into a single json object. In case of conflict tag the value of a _right_ json object will be taken.

    a

    the left json object

    b

    the right json object

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

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

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

    Definition Classes
    AnyRef
  27. def obj(args: (String, Any)*): Json

    Creates a JSON object of given sequence of properties args.

    Creates a JSON object of given sequence of properties args. Every argument/property is a pair of tag and value associated with it. It's possible to pass a complete JSON path (separated by dot) as tag.

    args

    a sequence of json properties

  28. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  29. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped