Packages

final case class Bool(value: Boolean) extends Json with Product with Serializable

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Bool
  2. Serializable
  3. Product
  4. Equals
  5. Json
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Bool(value: Boolean)

Value Members

  1. final def as[A](implicit decoder: JsonDecoder[A]): Either[String, A]
    Definition Classes
    Json
  2. final def equals(that: Any): Boolean
    Definition Classes
    Json → AnyRef → Any
  3. final def foldDown[A](initial: A)(f: (A, Json) => A): A
    Definition Classes
    Json
  4. final def foldDownSome[A](initial: A)(pf: PartialFunction[(A, Json), A]): A
    Definition Classes
    Json
  5. final def foldUp[A](initial: A)(f: (A, Json) => A): A
    Definition Classes
    Json
  6. final def foldUpSome[A](initial: A)(pf: PartialFunction[(A, Json), A]): A
    Definition Classes
    Json
  7. final def get[A <: Json](cursor: JsonCursor[_, A]): Either[String, A]
    Definition Classes
    Json
  8. final def hashCode(): Int
    Definition Classes
    Json → AnyRef → Any
  9. final def merge(that: Json): Json

    - merging objects results in a new objects with all pairs of both sides, with the right hand side being used on key conflicts

    - merging objects results in a new objects with all pairs of both sides, with the right hand side being used on key conflicts

    - merging arrays results in all of the individual elements being merged

    - scalar values will be replaced by the right hand side

    Definition Classes
    Json
  10. def productElementNames: Iterator[String]
    Definition Classes
    Product
  11. def toString(): String
    Definition Classes
    Json → AnyRef → Any
  12. final def transformDown(f: (Json) => Json): Json
    Definition Classes
    Json
  13. final def transformDownSome(pf: PartialFunction[Json, Json]): Json
    Definition Classes
    Json
  14. final def transformUp(f: (Json) => Json): Json
    Definition Classes
    Json
  15. final def transformUpSome(pf: PartialFunction[Json, Json]): Json
    Definition Classes
    Json
  16. val value: Boolean
  17. final def widen: Json
    Definition Classes
    Json