package json
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
- trait FromJson [T] extends Parser[T]
- trait FromJsonLib [J, T] extends (J) ⇒ T
- case class JsonDouble (d: Double) extends JsonValue with Product with Serializable
- case class JsonInt (i: Int) extends JsonValue with Product with Serializable
- case class JsonList (seq: Seq[JsonValue]) extends JsonValue with Product with Serializable
- case class JsonObject (nameAndValues: (String, JsonValue)*) extends JsonValue with Product with Serializable
- trait JsonParser [J] extends (String) ⇒ J
- trait JsonParserLanguage extends AnyRef
- case class JsonString (s: String) extends JsonValue with Product with Serializable
- sealed trait JsonValue extends AnyRef
- trait JsonWriter [J] extends (JsonValue) ⇒ String
- trait JsonWriterLangauge extends AnyRef
- trait ToJson [T] extends (T) ⇒ String
- trait ToJsonLib [T] extends (T) ⇒ JsonValue
Value Members
- object FromJson
- object JsonParserLanguage extends JsonParserLanguage
- object ToJson