Package

org.json4s

native

Permalink

package native

Visibility
  1. Public
  2. All

Type Members

  1. case class DocCons(hd: Document, tl: Document) extends Document with Product with Serializable

    Permalink
  2. case class DocGroup(doc: Document) extends Document with Product with Serializable

    Permalink
  3. case class DocNest(indent: Int, doc: Document) extends Document with Product with Serializable

    Permalink
  4. case class DocText(txt: String) extends Document with Product with Serializable

    Permalink
  5. sealed abstract class Document extends Product with Serializable

    Permalink

    A basic pretty-printing library, based on Lindig's strict version of Wadler's adaptation of Hughes' pretty-printer.

    A basic pretty-printing library, based on Lindig's strict version of Wadler's adaptation of Hughes' pretty-printer.

    derived from https://github.com/scala/scala/blob/v2.11.8/src/library/scala/text/Document.scala

  6. trait JsonMethods extends json4s.JsonMethods[Document]

    Permalink
  7. trait Printer extends AnyRef

    Permalink

Value Members

  1. object DocBreak extends Document with Product with Serializable

    Permalink
  2. object DocNil extends Document with Product with Serializable

    Permalink
  3. object Document extends Serializable

    Permalink
  4. object JsonMethods extends JsonMethods

    Permalink
  5. object JsonParser

    Permalink

    JSON parser.

  6. object Printer extends Printer

    Permalink

    Printer converts JSON to String.

    Printer converts JSON to String. Before printing a JValue needs to be rendered into Document.

    Example:

    pretty(render(json))
    

    See also

    org.json4s.JsonAST#render

Ungrouped