JAtom

org.typelevel.jawn.ast.JAtom
sealed abstract class JAtom extends JValue

Attributes

Source
JValue.scala
Graph
Supertypes
class JValue
class Object
trait Matchable
class Any
Known subtypes
class JBool
object JFalse.type
object JTrue.type
object JNull.type
class JNum
class DeferLong
class DeferNum
class DoubleNum
class LongNum
class JString
Show all

Members list

Value members

Concrete methods

def fold[A](f1: String => A, f2: Double => A, f3: Boolean => A, f4: => A): A

Attributes

Source
JValue.scala

Inherited methods

def asBigDecimal: BigDecimal

Attributes

Inherited from:
JValue
Source
JValue.scala
def asBigInt: BigInt

Attributes

Inherited from:
JValue
Source
JValue.scala
def asBoolean: Boolean

Attributes

Inherited from:
JValue
Source
JValue.scala
def asDouble: Double

Attributes

Inherited from:
JValue
Source
JValue.scala
def asInt: Int

Attributes

Inherited from:
JValue
Source
JValue.scala
def asLong: Long

Attributes

Inherited from:
JValue
Source
JValue.scala
def asString: String

Attributes

Inherited from:
JValue
Source
JValue.scala
final def atomic: Option[JAtom]

Attributes

Inherited from:
JValue
Source
JValue.scala
def get(s: String): JValue

Attributes

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

Attributes

Inherited from:
JValue
Source
JValue.scala
def getBigDecimal: Option[BigDecimal]

Attributes

Inherited from:
JValue
Source
JValue.scala
def getBigInt: Option[BigInt]

Attributes

Inherited from:
JValue
Source
JValue.scala
def getBoolean: Option[Boolean]

Attributes

Inherited from:
JValue
Source
JValue.scala
def getDouble: Option[Double]

Attributes

Inherited from:
JValue
Source
JValue.scala
def getInt: Option[Int]

Attributes

Inherited from:
JValue
Source
JValue.scala
def getLong: Option[Long]

Attributes

Inherited from:
JValue
Source
JValue.scala
def getString: Option[String]

Attributes

Inherited from:
JValue
Source
JValue.scala
final def isNull: Boolean

Attributes

Inherited from:
JValue
Source
JValue.scala
final def nonNull: Boolean

Attributes

Inherited from:
JValue
Source
JValue.scala
def remove(s: String): Option[JValue]

Attributes

Inherited from:
JValue
Source
JValue.scala
final def render(r: Renderer): String

Attributes

Inherited from:
JValue
Source
JValue.scala
final def render(): String

Attributes

Inherited from:
JValue
Source
JValue.scala
def set(s: String, v: JValue): Unit

Attributes

Inherited from:
JValue
Source
JValue.scala
def set(i: Int, v: JValue): Unit

Attributes

Inherited from:
JValue
Source
JValue.scala
override def toString: String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
JValue -> Any
Inherited from:
JValue
Source
JValue.scala
def valueType: String

Attributes

Inherited from:
JValue
Source
JValue.scala