org.json4s.native.Json.scala Maven / Gradle / Ivy
The newest version!
package org.json4s
package native
import java.io.{Writer => JWriter}
object Json {
def apply(fmts: Formats) = new Json(fmts)
}
class Json(fmts: Formats) extends JsonUtil(fmts) {
def write[A <: AnyRef : Manifest](a: A): String = Serialization.write(a)
def write[A <: AnyRef : Manifest, W <: JWriter](a: A, out: W): W = Serialization.write(a, out)
def writePretty[A <: AnyRef](a: A): String = Serialization.writePretty(a)
def writePretty[A <: AnyRef, W <: JWriter](a: A, out: W): W = Serialization.writePretty(a, out)
def parse(json: JsonInput): JValue = JsonMethods.parse(json, fmts.wantsBigDecimal)
def parseOpt(json: JsonInput): Option[JValue] = JsonMethods.parseOpt(json, fmts.wantsBigDecimal)
def withFormats(fmts: Formats): JsonUtil = new Json(fmts)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy