sjson.json

Serialize

Related Doc: package json

object Serialize

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Serialize
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

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: Option[ClassLoader]

  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

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

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

    Definition Classes
    AnyRef → Any
  13. def in[T](json: Array[Byte], clazzName: String)(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[T]): T

    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[T](obj: T)(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[T]): 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. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  23. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped