io.circe

Json

object Json extends Serializable

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Json
  2. Serializable
  3. Serializable
  4. AnyRef
  5. 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. final val False: Json

  7. final val Null: Json

  8. final val True: Json

  9. final def arr(values: Json*): Json

    Create a Json value representing a JSON array from values.

  10. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  11. def clone(): AnyRef

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

    Definition Classes
    AnyRef
  13. implicit final val eqJson: Eq[Json]

  14. def equals(arg0: Any): Boolean

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. final def fromBigDecimal(value: BigDecimal): Json

    Create a Json value representing a JSON number from a BigDecimal.

  17. final def fromBigInt(value: BigInt): Json

    Create a Json value representing a JSON number from a BigInt.

  18. final def fromBoolean(value: Boolean): Json

    Create a Json value representing a JSON boolean.

  19. final def fromDouble(value: Double): Option[Json]

    Try to create a Json value representing a JSON number from a Double.

    Try to create a Json value representing a JSON number from a Double.

    The result is empty if the argument cannot be represented as a JSON number.

  20. final def fromDoubleOrNull(value: Double): Json

    Create a Json value representing a JSON number or null from a Double.

    Create a Json value representing a JSON number or null from a Double.

    The result is a JSON null if the argument cannot be represented as a JSON number.

  21. final def fromDoubleOrString(value: Double): Json

    Create a Json value representing a JSON number or string from a Double.

    Create a Json value representing a JSON number or string from a Double.

    The result is a JSON string if the argument cannot be represented as a JSON number.

  22. final def fromFields(fields: Iterable[(String, Json)]): Json

    Create a Json value representing a JSON object from a collection of key-value pairs.

  23. final def fromInt(value: Int): Json

    Create a Json value representing a JSON number from an Int.

  24. final def fromJsonNumber(value: JsonNumber): Json

    Create a Json value representing a JSON number from a JsonNumber.

  25. final def fromJsonObject(value: JsonObject): Json

    Create a Json value representing a JSON object from a JsonObject.

  26. final def fromLong(value: Long): Json

    Create a Json value representing a JSON number from a Long.

  27. final def fromString(value: String): Json

    Create a Json value representing a JSON string.

    Create a Json value representing a JSON string.

    Note that this does not parse the argument.

  28. final def fromValues(values: Iterable[Json]): Json

    Create a Json value representing a JSON array from a collection of values.

  29. final def getClass(): Class[_]

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

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

    Definition Classes
    Any
  32. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  35. final def obj(fields: (String, Json)*): Json

    Create a Json value representing a JSON object from key-value pairs.

  36. implicit final val showJson: Show[Json]

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

    Definition Classes
    AnyRef
  38. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. final val Empty: Json

    Annotations
    @deprecated
    Deprecated

    (Since version 0.4.0) Use Null

  2. final def array(values: Json*): Json

    Annotations
    @deprecated
    Deprecated

    (Since version 0.4.0) Use arr

  3. final def bigDecimal(n: BigDecimal): Json

    Annotations
    @deprecated
    Deprecated

    (Since version 0.4.0) Use fromBigDecimal

  4. final def bool(b: Boolean): Json

    Annotations
    @deprecated
    Deprecated

    (Since version 0.4.0) Use fromBoolean

  5. final def empty: Json

    Annotations
    @deprecated
    Deprecated

    (Since version 0.4.0) Use Null

  6. final def int(n: Int): Json

    Annotations
    @deprecated
    Deprecated

    (Since version 0.4.0) Use fromInt

  7. final def long(n: Long): Json

    Annotations
    @deprecated
    Deprecated

    (Since version 0.4.0) Use fromLong

  8. final def number(n: Double): Option[Json]

    Annotations
    @deprecated
    Deprecated

    (Since version 0.4.0) Use fromDouble

  9. final def numberOrNull(n: Double): Json

    Annotations
    @deprecated
    Deprecated

    (Since version 0.4.0) Use fromDoubleOrNull

  10. final def numberOrString(n: Double): Json

    Annotations
    @deprecated
    Deprecated

    (Since version 0.4.0) Use fromDoubleOrString

  11. final def string(s: String): Json

    Annotations
    @deprecated
    Deprecated

    (Since version 0.4.0) Use fromString

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped