Object/Trait

com.codahale.jerkson

Json

Related Docs: trait Json | package jerkson

Permalink

object Json extends Json

Linear Supertypes
Json, Generator, Parser, Factory, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Json
  2. Json
  3. Generator
  4. Parser
  5. Factory
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def canDeserialize[A](implicit mf: Manifest[A]): Boolean

    Permalink

    Returns true if the given class is deserializable.

    Returns true if the given class is deserializable.

    Definition Classes
    Parser
  6. def canSerialize[A](implicit mf: Manifest[A]): Boolean

    Permalink

    Returns true if the given class is serializable.

    Returns true if the given class is serializable.

    Definition Classes
    Generator
  7. val classLoader: ClassLoader

    Permalink
    Attributes
    protected
    Definition Classes
    Json
  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  11. val factory: MappingJsonFactory

    Permalink

    The JsonFactory to be used by Parser and Generator.

    The JsonFactory to be used by Parser and Generator.

    Attributes
    protected
    Definition Classes
    JsonFactory
  12. def fields(input: Reader): Iterator[(String, JValue)]

    Permalink

    Parse a streaming JSON object, returning an iterator of its field name and value pairs.

    Parse a streaming JSON object, returning an iterator of its field name and value pairs.

    Definition Classes
    Parser
  13. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. def generate[A](obj: A, output: File): Unit

    Permalink

    Generate JSON from the given object and write it to the given File.

    Generate JSON from the given object and write it to the given File.

    Definition Classes
    Generator
  15. def generate[A](obj: A, output: OutputStream): Unit

    Permalink

    Generate JSON from the given object and write it to the given OutputStream.

    Generate JSON from the given object and write it to the given OutputStream.

    Definition Classes
    Generator
  16. def generate[A](obj: A, output: Writer): Unit

    Permalink

    Generate JSON from the given object and write to the given Writer.

    Generate JSON from the given object and write to the given Writer.

    Definition Classes
    Generator
  17. def generate[A](obj: A): String

    Permalink

    Generate JSON from the given object and return it as a string.

    Generate JSON from the given object and return it as a string.

    Definition Classes
    Generator
  18. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  19. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  20. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  21. val mapper: ObjectMapper

    Permalink

    The ObjectMapper to be used by Parser and Generator.

    The ObjectMapper to be used by Parser and Generator.

    Attributes
    protected
    Definition Classes
    JsonFactory
  22. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  23. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  24. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  25. def parse[A](input: JsonNode)(implicit mf: Manifest[A]): A

    Permalink

    Parse a JSON node as a particular type.

    Parse a JSON node as a particular type.

    Definition Classes
    Parser
  26. def parse[A](input: Source)(implicit mf: Manifest[A]): A

    Permalink

    Parse a JSON Source as a particular type.

    Parse a JSON Source as a particular type.

    Definition Classes
    Parser
  27. def parse[A](input: Array[Byte])(implicit mf: Manifest[A]): A

    Permalink

    Parse a JSON byte array as a particular type.

    Parse a JSON byte array as a particular type.

    Definition Classes
    Parser
  28. def parse[A](input: Reader)(implicit mf: Manifest[A]): A

    Permalink

    Parse a JSON Reader as a particular type.

    Parse a JSON Reader as a particular type.

    Definition Classes
    Parser
  29. def parse[A](input: URL)(implicit mf: Manifest[A]): A

    Permalink

    Parse a JSON URL as a particular type.

    Parse a JSON URL as a particular type.

    Definition Classes
    Parser
  30. def parse[A](input: File)(implicit mf: Manifest[A]): A

    Permalink

    Parse a JSON file as a particular type.

    Parse a JSON file as a particular type.

    Definition Classes
    Parser
  31. def parse[A](input: InputStream)(implicit mf: Manifest[A]): A

    Permalink

    Parse a JSON input stream as a particular type.

    Parse a JSON input stream as a particular type.

    Definition Classes
    Parser
  32. def parse[A](input: String)(implicit mf: Manifest[A]): A

    Permalink

    Parse a JSON string as a particular type.

    Parse a JSON string as a particular type.

    Definition Classes
    Parser
  33. def stream[A](input: Reader)(implicit mf: Manifest[A]): Iterator[A]

    Permalink

    Parse a streaming JSON array of particular types, returning an iterator of the elements of the stream.

    Parse a streaming JSON array of particular types, returning an iterator of the elements of the stream.

    Definition Classes
    Parser
  34. def stream[A](input: InputStream)(implicit mf: Manifest[A]): Iterator[A]

    Permalink

    Parse a streaming JSON array of particular types, returning an iterator of the elements of the stream.

    Parse a streaming JSON array of particular types, returning an iterator of the elements of the stream.

    Definition Classes
    Parser
  35. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  36. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  37. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Json

Inherited from Generator

Inherited from Parser

Inherited from Factory

Inherited from AnyRef

Inherited from Any

Ungrouped