sjson.json.Serializer

SJSON

Related Docs: trait SJSON | package Serializer

object SJSON extends SJSON with DefaultConstructor

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SJSON
  2. DefaultConstructor
  3. SJSON
  4. JsBean
  5. AnyRef
  6. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. class NiceObject[T] extends AnyRef

    Definition Classes
    JsBean

Value Members

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

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

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

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

    Definition Classes
    Any
  5. val classLoader: Some[ClassLoader]

    Definition Classes
    SJSONSJSON
  6. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def deepClone[T](obj: T)(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[T]): T

    Definition Classes
    SJSON
  8. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. def fromJSON[T](js: JsValue, context: Option[Class[T]]): T

    Convert the JsValue to an instance of the class context.

    Convert the JsValue to an instance of the class context. Returns an instance of T.

    Definition Classes
    JsBean
  12. final def getClass(): Class[_]

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

    Definition Classes
    AnyRef → Any
  14. def in(json: Array[Byte], clazzName: String): AnyRef

    Serialize in a JSON into a Scala object, specifying a class that can be loaded through an externally specified class loader.

    Serialize in a JSON into a Scala object, specifying a class that can be loaded through an externally specified class loader. In order to specify the class loader, do the following :

    object SJSON extends SJSON {
      val classLoader = None
    }
    

    Definition Classes
    SJSON
  15. def in[T](js: JsValue)(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[T]): T

    Definition Classes
    SJSON
  16. def in[T](json: String)(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[T]): T

    Definition Classes
    SJSON
  17. def in[T](bytes: Array[Byte])(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[T]): T

    Definition Classes
    SJSON
  18. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  20. def newInstance[T](clazz: Class[T])(op: (T) ⇒ Unit): T

    Definition Classes
    DefaultConstructor
  21. final def notify(): Unit

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

    Definition Classes
    AnyRef
  23. def out(obj: AnyRef): Array[Byte]

    Serialize out a Scala object.

    Serialize out a Scala object. It can be serialized back in to the object using in method.

    val l = List("ab", "cd")
    in(out(l)) => ["ab", "cd"]
    in[List[String]](out(l)) => List("ab", "cd")
    
    Caveat Nulls are serialized as String null ("null"). This may create problems if a String field contains the value "null".

    Definition Classes
    SJSON
  24. implicit def string2Class[T <: AnyRef](name: String)(implicit classLoader: ClassLoader): Class[T]

    Definition Classes
    JsBean
  25. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  26. def toJSON[T](obj: T): String

    Generate a JSON representation of the object obj and return the string.

    Generate a JSON representation of the object obj and return the string.

    Definition Classes
    JsBean
  27. implicit def toNiceObject[T](x: T): NiceObject[T]

    Definition Classes
    JsBean
  28. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from DefaultConstructor

Inherited from SJSON

Inherited from JsBean

Inherited from AnyRef

Inherited from Any

Ungrouped