sjson.json.Serializer

SJSON

Related Docs: object SJSON | package Serializer

trait SJSON extends JsBean

Linear Supertypes
JsBean, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SJSON
  2. JsBean
  3. AnyRef
  4. 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

Abstract Value Members

  1. abstract val classLoader: Option[ClassLoader]

  2. abstract def newInstance[T](clazz: Class[T])(op: (T) ⇒ Unit): T

    Definition Classes
    JsBean

Concrete 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. def clone(): AnyRef

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

  7. final def eq(arg0: AnyRef): Boolean

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

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. 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
  11. final def getClass(): Class[_]

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

    Definition Classes
    AnyRef → Any
  13. 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
    }
    

  14. def in[T](js: JsValue)(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[T]): T

  15. def in[T](json: String)(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[T]): T

  16. def in[T](bytes: Array[Byte])(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[T]): T

  17. final def isInstanceOf[T0]: Boolean

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

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

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

    Definition Classes
    AnyRef
  21. 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".

  22. implicit def string2Class[T <: AnyRef](name: String)(implicit classLoader: ClassLoader): Class[T]

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

    Definition Classes
    AnyRef
  24. 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
  25. implicit def toNiceObject[T](x: T): NiceObject[T]

    Definition Classes
    JsBean
  26. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from JsBean

Inherited from AnyRef

Inherited from Any

Ungrouped