org.json4s

Extraction

object Extraction

Function to extract values from JSON AST using case classes.

See: ExtractionExamples.scala

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Extraction
  2. AnyRef
  3. 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 def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def decompose(a: Any)(implicit formats: Formats): JValue

    Decompose a case class into JSON.

    Decompose a case class into JSON.

    Example:

    case class Person(name: String, age: Int)
    implicit val formats = org.json4s.DefaultFormats
    Extraction.decompose(Person("joe", 25)) == JObject(JField("age",JInt(25)) :: JField("name",JString("joe")) :: Nil)
    

  9. def decomposeWithBuilder[T](a: Any, builder: JsonWriter[T])(implicit formats: Formats): T

    Decompose a case class into JSON.

    Decompose a case class into JSON.

    Example:

    case class Person(name: String, age: Int)
    implicit val formats = org.json4s.DefaultFormats
    Extraction.decompose(Person("joe", 25)) == JObject(JField("age",JInt(25)) :: JField("name",JString("joe")) :: Nil)
    

  10. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  12. def extract(json: JValue, scalaType: ScalaType)(implicit formats: Formats): Any

  13. def extract(json: JValue, target: TypeInfo)(implicit formats: Formats): Any

  14. def extract[A](json: JValue)(implicit formats: Formats, mf: Manifest[A]): A

    Extract a case class from JSON.

    Extract a case class from JSON.

    Exceptions thrown
    MappingException

    is thrown if extraction fails

    See also

    org.json4s.JsonAST.JValue#extract

  15. def extractOpt[A](json: JValue)(implicit formats: Formats, mf: Manifest[A]): Option[A]

    Extract a case class from JSON.

    Extract a case class from JSON.

    See also

    org.json4s.JsonAST.JValue#extract

  16. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. def flatten(json: JValue)(implicit formats: Formats = DefaultFormats): Map[String, String]

    Flattens the JSON to a key/value map.

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

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

    Definition Classes
    AnyRef → Any
  20. def internalDecomposeWithBuilder[T](a: Any, builder: JsonWriter[T])(implicit formats: Formats): Unit

    Decompose a case class into JSON.

    Decompose a case class into JSON.

    This is broken out to avoid calling builder.result when we return from recursion

  21. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  22. def loadLazyValValue(a: Any, name: String, defaultValue: Any): Any

    Load lazy val value

    Load lazy val value

    This is a fix for failed lazy val serialization from FieldSerializer (see org.json4s.native.LazyValBugs test).

    We do this by finding the hidden lazy method which will have same name as the lazy val name but with suffix "$lzycompute" (for scala v2.10+), then invoke the method if found, and return the value.

    The "$lzycompute" method naming could be changed in future so this method must be adjusted if that happens.

    a

    Object to be serialized

    name

    Field name to be checked

    defaultValue

    Default value if lazy method is not found

    returns

    Value of invoked lazy method if found, else return the default value

  23. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  26. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  27. def toString(): String

    Definition Classes
    AnyRef → Any
  28. def unflatten(map: Map[String, String], useBigDecimalForDouble: Boolean = false, useBigIntForLong: Boolean = true): JValue

    Unflattens a key/value map to a JSON object.

  29. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped