Package

org.json4s.ast

fast

Permalink

package fast

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. fast
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Type Members

  1. case class JArray(value: Array[JValue] = Array.empty) extends JValue with Product with Serializable

    Permalink

    JArray is internally represented as a mutable Array, to improve sequential performance

  2. sealed abstract class JBoolean extends JValue

    Permalink

    Implements named extractors so we can avoid boxing

  3. case class JField(field: String, value: JValue) extends Product with Serializable

    Permalink
  4. case class JNumber(value: String) extends JValue with Product with Serializable

    Permalink

    JNumber is internally represented as a string, to improve performance

  5. trait JNumberConverter[T] extends AnyRef

    Permalink
  6. case class JObject(value: Array[JField] = Array.empty) extends JValue with Product with Serializable

    Permalink

    JObject is internally represented as a mutable Array, to improve sequential performance

  7. case class JString(value: String) extends JValue with Product with Serializable

    Permalink
  8. sealed abstract class JValue extends Serializable with Product

    Permalink

Value Members

  1. object JBoolean extends Serializable

    Permalink
  2. object JFalse extends JBoolean with Product with Serializable

    Permalink
  3. object JNull extends JValue with Product with Serializable

    Permalink
  4. object JNumber extends Serializable

    Permalink
  5. object JNumberConverter

    Permalink
  6. object JTrue extends JBoolean with Product with Serializable

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped