com.codahale.jerkson

Json

trait Json extends Parser with Generator

Linear Supertypes
Generator, Parser, Factory, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Json
  2. Generator
  3. Parser
  4. Factory
  5. AnyRef
  6. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

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

    Returns true if the given class is deserializable.

    Returns true if the given class is deserializable.

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

    Returns true if the given class is serializable.

    Returns true if the given class is serializable.

    Definition Classes
    Generator
  9. val classLoader: ClassLoader

    Attributes
    protected
  10. def clone(): AnyRef

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

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

    Definition Classes
    AnyRef → Any
  13. val factory: MappingJsonFactory

    The JsonFactory to be used by Parser and Generator.

    The JsonFactory to be used by Parser and Generator.

    Attributes
    protected
    Definition Classes
    JsonFactory
  14. def finalize(): Unit

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

    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
  16. def generate[A](obj: A, output: OutputStream): Unit

    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
  17. def generate[A](obj: A, output: Writer): Unit

    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
  18. def generate[A](obj: A): String

    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
  19. final def getClass(): Class[_]

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

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

    Definition Classes
    Any
  22. val mapper: ObjectMapper

    The ObjectMapper to be used by Parser and Generator.

    The ObjectMapper to be used by Parser and Generator.

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

    Definition Classes
    AnyRef
  24. final def notify(): Unit

    Definition Classes
    AnyRef
  25. final def notifyAll(): Unit

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

    Parse a JSON node as a particular type.

    Parse a JSON node as a particular type.

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

    Parse a JSON Source as a particular type.

    Parse a JSON Source as a particular type.

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

    Parse a JSON byte array as a particular type.

    Parse a JSON byte array as a particular type.

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

    Parse a JSON Reader as a particular type.

    Parse a JSON Reader as a particular type.

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

    Parse a JSON URL as a particular type.

    Parse a JSON URL as a particular type.

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

    Parse a JSON file as a particular type.

    Parse a JSON file as a particular type.

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

    Parse a JSON input stream as a particular type.

    Parse a JSON input stream as a particular type.

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

    Parse a JSON string as a particular type.

    Parse a JSON string as a particular type.

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

    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. def stream[A](input: InputStream)(implicit mf: Manifest[A]): Iterator[A]

    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
  36. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  37. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from Generator

Inherited from Parser

Inherited from Factory

Inherited from AnyRef

Inherited from Any

Ungrouped