trait JacksonJsonSerialization extends AnyRef
Trait containing methods for reading and writing JSON given implicit formats. This is used internally for all web service communication.
- Alphabetic
- By Inheritance
- JacksonJsonSerialization
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def fromJson[T](json: String)(implicit arg0: scala.reflect.api.JavaUniverse.WeakTypeTag[T], mf: Manifest[T], formats: Formats): T
Deserializes a JSON string into a given type.
Deserializes a JSON string into a given type. This works well on most case classes.
- T
The type to deserialize the content into.
- def fromJsonOption[T](json: String)(implicit arg0: scala.reflect.api.JavaUniverse.WeakTypeTag[T], mf: Manifest[T], formats: Formats): Option[T]
Same as fromJson, but handles option values, by deserializing empty string to
None.Same as fromJson, but handles option values, by deserializing empty string to
None.- T
The type to deserialize the content into.
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toJson(obj: AnyRef)(implicit formats: Formats): String
Serializes an object to a compact JSON string without indentation and line breaks.
Serializes an object to a compact JSON string without indentation and line breaks.
- obj
The object to serialize.
- def toJsonOption[T <: AnyRef](obj: Option[T])(implicit arg0: scala.reflect.api.JavaUniverse.WeakTypeTag[T], mf: Manifest[T], formats: Formats): String
Same as toJson, but handles option values, which are serialized to empty strings.
Same as toJson, but handles option values, which are serialized to empty strings.
- obj
The object to serialize.
- def toPrettyJson(obj: AnyRef)(implicit formats: Formats): String
Serializes an object to a reading-friendly JSON string with indentation and line breaks.
Serializes an object to a reading-friendly JSON string with indentation and line breaks.
- obj
The object to serialize.
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)