Packages

object RW extends CompileRW

Source
RW.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RW
  2. CompileRW
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. def enumeration[T](fieldName: String, mapping: (String, T)*): RW[T]

    Convenience functionality for working with enumerations

    Convenience functionality for working with enumerations

    fieldName

    the field name to refer to in the Json

    mapping

    a mapping of key/value pairs representing the String in fieldName to the representative value

  7. def enumeration[T](list: List[T], asString: (T) => String = (t: T) => t.getClass.getSimpleName.replace("$", ""), caseSensitive: Boolean = false): RW[T]
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  11. def from[T](r: (T) => Json, w: (Json) => T, d: => DefType): RW[T]
  12. macro def gen[T]: RW[T]
    Definition Classes
    CompileRW
  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. def poly[P](fieldName: String = "type", getType: (P) => String = defaultGetType)(types: (String, RW[_ <: P])*): RW[P]

    Convenience functionality for working with polymorphic types

    Convenience functionality for working with polymorphic types

    fieldName

    the field name stored in the value (defaults to "type")

    getType

    a function to determine the field value from an instance (defaults to the class name with the first character lowercase - defaultGetType)

    types

    a list of tuples with the type names associated with their RW

  20. def static[T](value: T): RW[T]

    Convenience functionality to provide a static / singleton value that represents that type

    Convenience functionality to provide a static / singleton value that represents that type

    value

    the singleton value to use

  21. def string[T](asString: (T) => String, fromString: (String) => T): RW[T]
  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(classOf[java.lang.InterruptedException])
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  27. def wrapped[T](key: String, asJson: (T) => Json, fromJson: (Json) => T, definition: DefType = DefType.Dynamic): RW[T]

Inherited from CompileRW

Inherited from AnyRef

Inherited from Any

Ungrouped