JValue

sealed abstract
class JValue extends Product with Serializable

Represents a valid JSON Value

See also
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
class JArray
class JBoolean
object JFalse
object JTrue
object JNull
class JNumber
class JObject
class JString

Value members

Abstract methods

def toJsAny: Any

Converts a JValue to a Javascript object/value that can be used within Javascript

Converts a JValue to a Javascript object/value that can be used within Javascript

Converts a JValue to a unsafe.JValue. Note that when converting JObject, this can produce unsafe.JObject of unknown ordering, since ordering on a scala.collection.Map isn't defined. Duplicate keys will also be removed in an undefined manner.

Converts a JValue to a unsafe.JValue. Note that when converting JObject, this can produce unsafe.JObject of unknown ordering, since ordering on a scala.collection.Map isn't defined. Duplicate keys will also be removed in an undefined manner.

See also

Inherited methods

def canEqual(that: Any): Boolean
Inherited from
Equals
def productArity: Int
Inherited from
Product
def productElement(n: Int): Any
Inherited from
Product
def productElementName(n: Int): String
Inherited from
Product
def productElementNames: Iterator[String]
Inherited from
Product
def productIterator: Iterator[Any]
Inherited from
Product
def productPrefix: String
Inherited from
Product