p

spray

json

package json

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. json
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. trait AdditionalFormats extends AnyRef

    Provides additional JsonFormats and helpers

  2. trait BasicFormats extends AnyRef

    Provides the JsonFormats for the most important Scala types.

  3. trait CollectionFormats extends AnyRef
  4. trait CompactPrinter extends JsonPrinter

    A JsonPrinter that produces compact JSON source without any superfluous whitespace.

  5. trait DefaultJsonProtocol extends BasicFormats with StandardFormats with CollectionFormats with ProductFormats with AdditionalFormats

    Provides all the predefined JsonFormats.

  6. case class DeserializationException (msg: String, cause: Throwable = null, fieldNames: List[String] = Nil) extends RuntimeException with Product with Serializable
  7. case class JsArray (elements: Vector[JsValue]) extends JsValue with Product with Serializable

    A JSON array.

  8. sealed abstract class JsBoolean extends JsValue

    JSON Booleans.

  9. type JsField = (String, JsValue)
  10. case class JsNumber (value: BigDecimal) extends JsValue with Product with Serializable

    A JSON number.

  11. case class JsObject (fields: Map[String, JsValue]) extends JsValue with Product with Serializable

    A JSON object.

  12. case class JsString (value: String) extends JsValue with Product with Serializable

    A JSON string.

  13. sealed abstract class JsValue extends AnyRef

    The general type of a JSON AST node.

  14. trait JsonFormat [T] extends JsonReader[T] with JsonWriter[T]

    Provides the JSON deserialization and serialization for type T.

  15. class JsonParser extends AnyRef
  16. trait JsonPrinter extends (JsValue) ⇒ String

    A JsonPrinter serializes a JSON AST to a String.

  17. trait JsonReader [T] extends AnyRef

    Provides the JSON deserialization for type T.

    Provides the JSON deserialization for type T.

    Annotations
    @implicitNotFound( ... )
  18. trait JsonWriter [T] extends AnyRef

    Provides the JSON serialization for type T.

    Provides the JSON serialization for type T.

    Annotations
    @implicitNotFound( ... )
  19. trait NullOptions extends ProductFormats

    This trait supplies an alternative rendering mode for optional case class members.

    This trait supplies an alternative rendering mode for optional case class members. Normally optional members that are undefined (None) are not rendered at all. By mixing in this trait into your custom JsonProtocol you can enforce the rendering of undefined members as null. (Note that this only affect JSON writing, spray-json will always read missing optional members as well as null optional members as None.)

  20. trait ParserInput extends AnyRef
  21. trait PrettyPrinter extends JsonPrinter

    A JsonPrinter that produces a nicely readable JSON source.

  22. trait ProductFormats extends ProductFormatsInstances

    Provides the helpers for constructing custom JsonFormat implementations for types implementing the Product trait (especially case classes)

  23. trait ProductFormatsInstances extends AnyRef
  24. trait RootJsonFormat [T] extends JsonFormat[T] with RootJsonReader[T] with RootJsonWriter[T]

    A special JsonFormat signaling that the format produces a legal JSON root object, i.e.

    A special JsonFormat signaling that the format produces a legal JSON root object, i.e. either a JSON array or a JSON object.

  25. trait RootJsonReader [T] extends JsonReader[T]

    A special JsonReader capable of reading a legal JSON root object, i.e.

    A special JsonReader capable of reading a legal JSON root object, i.e. either a JSON array or a JSON object.

    Annotations
    @implicitNotFound( ... )
  26. trait RootJsonWriter [T] extends JsonWriter[T]

    A special JsonWriter capable of writing a legal JSON root object, i.e.

    A special JsonWriter capable of writing a legal JSON root object, i.e. either a JSON array or a JSON object.

    Annotations
    @implicitNotFound( ... )
  27. class SerializationException extends RuntimeException
  28. trait StandardFormats extends AnyRef

    Provides the JsonFormats for the non-collection standard types.

Value Members

  1. def deserializationError(msg: String, cause: Throwable = null, fieldNames: List[String] = Nil): Nothing
  2. def jsonReader[T](implicit reader: JsonReader[T]): JsonReader[T]
  3. def jsonWriter[T](implicit writer: JsonWriter[T]): JsonWriter[T]
  4. implicit def pimpAny[T](any: T): PimpedAny[T]
  5. implicit def pimpString(string: String): PimpedString
  6. def serializationError(msg: String): Nothing
  7. object CompactPrinter extends CompactPrinter
  8. object DefaultJsonProtocol extends DefaultJsonProtocol
  9. object JsArray extends Serializable
  10. object JsBoolean
  11. object JsFalse extends JsBoolean with Product with Serializable
  12. object JsNull extends JsValue with Product with Serializable

    The representation for JSON null.

  13. object JsNumber extends Serializable
  14. object JsObject extends Serializable
  15. object JsString extends Serializable
  16. object JsTrue extends JsBoolean with Product with Serializable
  17. object JsonParser

    Fast, no-dependency parser for JSON as defined by http://tools.ietf.org/html/rfc4627.

  18. object JsonPrinter
  19. object JsonReader
  20. object JsonWriter
  21. object ParserInput
  22. object PrettyPrinter extends PrettyPrinter
  23. object ProductFormats

Inherited from AnyRef

Inherited from Any

Ungrouped