net.liftweb.record

Record

trait Record [MyType <: Record[MyType]] extends FieldContainer

Self Type
MyType
Linear Supertypes
FieldContainer, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. Record
  2. FieldContainer
  3. AnyRef
  4. Any
Visibility
  1. Public
  2. All

Abstract Value Members

  1. def meta : MetaRecord[MyType]

    The meta record (the object that contains the meta result for this type)

    The meta record (the object that contains the meta result for this type)

    Attributes
    abstract

Concrete Value Members

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

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

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

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

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

    Attributes
    final
    Definition Classes
    Any
  6. def allFields : List[net.liftweb.record.Field[_, MyType]]

    Definition Classes
    RecordFieldContainer
  7. def asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  8. def asJSON : JsExp

    Retuns the JSON representation of this record

    Retuns the JSON representation of this record

    returns

    a JsObj

  9. def asJValue : JObject

    Encode this record instance as a JObject

  10. def asJsExp : JsExp

    Retuns the JSON representation of this record, converts asJValue to JsObj

    Retuns the JSON representation of this record, converts asJValue to JsObj

    returns

    a JsObj

  11. def clone (): AnyRef

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

    Attributes
    final
    Definition Classes
    AnyRef
  13. def equals (arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  14. def fieldByName (fieldName: String): Box[net.liftweb.record.Field[_, MyType]]

    Find the field by name

    Find the field by name

    fieldName

    -- the name of the field to find

    returns

    Box[MappedField]

  15. def fields (): List[net.liftweb.record.Field[_, MyType]]

    Get the fields defined on the meta object for this record instance

  16. def finalize (): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  17. def getClass (): java.lang.Class[_]

    Attributes
    final
    Definition Classes
    AnyRef
  18. def hashCode (): Int

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

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

    Attributes
    final
    Definition Classes
    AnyRef
  21. def notify (): Unit

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

    Attributes
    final
    Definition Classes
    AnyRef
  23. def runSafe [T] (f: ⇒ T): T

  24. def safe_? : Boolean

    Is it safe to make changes to the record (or should we check access control?)

    Is it safe to make changes to the record (or should we check access control?)

    Attributes
    final
  25. def saveTheRecord (): Box[MyType]

    Save the instance and return the instance

  26. def setFieldsFromJSON (json: String): Box[Unit]

    Sets the fields of this Record from the given JSON.

  27. def setFieldsFromJValue (jvalue: JValue): Box[Unit]

    Set the fields of this record from the given JValue

  28. def setFieldsFromJsonString (json: String): Box[Unit]

    Sets the fields of this Record from the given JSON.

  29. def setFieldsFromReq (req: Req): Unit

    Sets the fields of this Record from the given Req.

  30. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  31. def toForm (f: (MyType) ⇒ Unit): NodeSeq

    Present the model as a form and execute the function on submission of the form

    Present the model as a form and execute the function on submission of the form

    f

    - the function to execute on form submission

    returns

    the form

  32. def toForm (button: Box[String])(f: (MyType) ⇒ Unit): NodeSeq

    Present the model as a form and execute the function on submission of the form

    Present the model as a form and execute the function on submission of the form

    button

    - If it's Full, put a submit button on the form with the value of the parameter

    f

    - the function to execute on form submission

    returns

    the form

  33. def toString (): String

    Definition Classes
    AnyRef → Any
  34. def toXHtml : NodeSeq

    Returns the HTML representation ofthis Record

  35. def validate : List[FieldError]

    Validates this Record by calling validators for each field

    Validates this Record by calling validators for each field

    returns

    a List of FieldError. If this list is empty you can assume that record was validated successfully

  36. def wait (): Unit

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from FieldContainer

Inherited from AnyRef

Inherited from Any