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

Type Members

  1. trait Folder[X] extends Serializable

    Represents a set of operations for reducing a Json instance to a value.

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 fromFloat(value: Float): Option[Json]

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

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

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

  24. final def fromFloatOrNull(value: Float): Json

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

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

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

  25. final def fromFloatOrString(value: Float): Json

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

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

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

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

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

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

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

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

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

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

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

  30. 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.

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

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

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

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

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

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

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

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

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

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

  39. implicit final val showJson: Show[Json]

  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 Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped