Object

org.json4s

Extraction

Related Doc: package json4s

Permalink

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
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

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

    Permalink

    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)
    

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

    Permalink

    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)
    

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

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

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

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

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

    Permalink

    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

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

    Permalink

    Extract a case class from JSON.

    Extract a case class from JSON.

    See also

    org.json4s.JsonAST.JValue#extract

  14. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. def flatten(json: JValue): Map[String, String]

    Permalink

    Flattens the JSON to a key/value map.

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

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

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

    Permalink

    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

  19. final def isInstanceOf[T0]: Boolean

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

    Permalink

    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

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

    Permalink
    Definition Classes
    AnyRef
  22. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  25. def toString(): String

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

    Permalink

    Unflattens a key/value map to a JSON object.

  27. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped