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.

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

    A JSON array with underlying list.

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

    A JSON object with underlying map.

Deprecated Value Members

  1. object Json

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

  2. object JsonNull extends Json with Product with Serializable

    A JSON null value.

  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