io.finch

json

package json

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

Type Members

  1. sealed trait Json extends AnyRef

    An immutable JSON API.

    An immutable JSON API.

    Annotations
    @deprecated
    Deprecated

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

  2. case class JsonArray(list: List[Any]) extends Json with Product with Serializable

    A JSON array with underlying list.

    A JSON array with underlying list.

    Annotations
    @deprecated
    Deprecated

    (Since version 0.7.0) JSONArrays are deprecated as part of the Finch JSON deprecation.

  3. case class JsonObject(map: Map[String, Any]) extends Json with Product with Serializable

    A JSON object with underlying map.

    A JSON object with underlying map.

    Annotations
    @deprecated
    Deprecated

    (Since version 0.7.0) JSONObjects are deprecated as part of the Finch JSON deprecation.

Deprecated Value Members

  1. object Json

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

    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.

  2. object JsonNull extends Json with Product with Serializable

    A JSON null value.

    A JSON null value.

    Annotations
    @deprecated
    Deprecated

    (Since version 0.7.0) JSONNull is deprecated as part of the Finch JSON deprecation.

  3. implicit val decodeFinchJson: DecodeRequest[Json]

    Annotations
    @deprecated
    Deprecated

    (Since version 0.7.0) decodeFinchJson is deprecated as part of the Finch JSON deprecation.

  4. implicit val encodeFinchJson: EncodeResponse[Json]

    Annotations
    @deprecated
    Deprecated

    (Since version 0.7.0) encodeFinchJson is deprecated as part of the Finch JSON deprecation.

Inherited from AnyRef

Inherited from Any

Ungrouped