Json

org.json4s.jackson.Json
See theJson companion object
class Json(fmts: Formats, mapper: ObjectMapper) extends JsonUtil

Attributes

Companion
object
Source
Json.scala
Graph
Supertypes
class JsonUtil
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

def parse[A : AsJsonInput](json: A): JValue

Attributes

Source
Json.scala
def parseOpt[A : AsJsonInput](json: A): Option[JValue]

Attributes

Source
Json.scala
def withFormats(fmts: Formats): JsonUtil

Attributes

Source
Json.scala
def write[A <: AnyRef : Manifest](a: A): String

Attributes

Source
Json.scala
def write[A <: AnyRef : Manifest, W <: Writer](a: A, out: W): W

Attributes

Source
Json.scala
def writePretty[A <: AnyRef](a: A): String

Attributes

Source
Json.scala
def writePretty[A <: AnyRef, W <: Writer](a: A, out: W): W

Attributes

Source
Json.scala

Inherited methods

def decompose(any: Any): JValue

Attributes

Inherited from:
JsonUtil
Source
JsonUtil.scala
def read[A : Manifest](json: JsonInput): A

Attributes

Inherited from:
JsonUtil
Source
JsonUtil.scala
def readOpt[A : Manifest](json: JsonInput): Option[A]

Attributes

Inherited from:
JsonUtil
Source
JsonUtil.scala