JSet

org.json4s.JSet
case class JSet(set: Set[JValue]) extends JValue

Attributes

Source
JValue.scala
Graph
Supertypes
class JValue
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Type members

Types

type Values = Set[JValue]

Attributes

Source
JValue.scala

Value members

Concrete methods

def difference(o: JSet): JSet

Attributes

Source
JValue.scala
def intersect(o: JSet): JSet

Attributes

Source
JValue.scala
def union(o: JSet): JSet

Attributes

Source
JValue.scala
def values: Values

Return unboxed values from JSON

Return unboxed values from JSON

Example:

JObject(JField("name", JString("joe")) :: Nil).values == Map("name" -> "joe")

Attributes

Source
JValue.scala

Inherited methods

def ++(other: JValue): JValue

Concatenate with another JSON. This is a concatenation monoid: (JValue, ++, JNothing)

Concatenate with another JSON. This is a concatenation monoid: (JValue, ++, JNothing)

Example:

JArray(JInt(1) :: JInt(2) :: Nil) ++ JArray(JInt(3) :: Nil) ==
JArray(List(JInt(1), JInt(2), JInt(3)))

Attributes

Inherited from:
JValue
Source
JValue.scala
def apply(i: Int): JValue

Return nth element from JSON. Meaningful only to JArray, JObject and JField. Returns JNothing for other types.

Return nth element from JSON. Meaningful only to JArray, JObject and JField. Returns JNothing for other types.

Example:

JArray(JInt(1) :: JInt(2) :: Nil)(1) == JInt(2)

Attributes

Inherited from:
JValue
Source
JValue.scala
def children: List[JValue]

Return direct child elements.

Return direct child elements.

Example:

JArray(JInt(1) :: JInt(2) :: Nil).children == List(JInt(1), JInt(2))

Attributes

Inherited from:
JValue
Source
JValue.scala
def diff(other: JValue): Diff

Return a diff.

Return a diff.

Attributes

See also

org.json4s.Diff#diff

Inherited from:
Diffable (hidden)
Source
Diff.scala
def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product
def toOption: Option[JValue]

When this org.json4s.JValue is a org.json4s.JNothing or a org.json4s.JNull, this method returns scala.None When it has a value it will return scala.Some

When this org.json4s.JValue is a org.json4s.JNothing or a org.json4s.JNull, this method returns scala.None When it has a value it will return scala.Some

Attributes

Inherited from:
JValue
Source
JValue.scala
def toSome: Option[JValue]

When this org.json4s.JValue is a org.json4s.JNothing, this method returns scala.None When it has a value it will return scala.Some

When this org.json4s.JValue is a org.json4s.JNothing, this method returns scala.None When it has a value it will return scala.Some

Attributes

Inherited from:
JValue
Source
JValue.scala