net.liftweb.mongodb.record

BsonRecord

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

Specialized Record that can be encoded and decoded from BSON (DBObject)

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

Abstract Value Members

  1. def meta : BsonMetaRecord[MyType]

    Refines meta to require a BsonMetaRecord

    Refines meta to require a BsonMetaRecord

    Attributes
    abstract
    Definition Classes
    BsonRecordRecord

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 asDBObject : DBObject

    Encode a record instance into a DBObject

  8. def asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  9. def asJSON : JsExp

    Retuns the JSON representation of this record

    Retuns the JSON representation of this record

    returns

    a JsObj

    Definition Classes
    Record
  10. def asJValue : JObject

    Encode this record instance as a JObject

    Encode this record instance as a JObject

    Definition Classes
    Record
  11. 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

    Definition Classes
    Record
  12. def clone (): AnyRef

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

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

    Definition Classes
    AnyRef → Any
  15. 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]

    Definition Classes
    Record
  16. def fields (): List[net.liftweb.record.Field[_, MyType]]

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

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

    Definition Classes
    Record
  17. def finalize (): Unit

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

    Attributes
    final
    Definition Classes
    AnyRef → Any
  19. def hashCode (): Int

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

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

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

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

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

    Definition Classes
    Record
  25. 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
    Definition Classes
    Record
  26. def saveTheRecord (): Box[MyType]

    Save the instance and return the instance

    Save the instance and return the instance

    Definition Classes
    BsonRecordRecord
  27. def setFieldsFromDBObject (dbo: DBObject): Unit

    Set the fields of this record from the given DBObject

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

    Sets the fields of this Record from the given JSON.

    Sets the fields of this Record from the given JSON.

    Definition Classes
    Record
  29. def setFieldsFromJValue (jvalue: JValue): Box[Unit]

    Set the fields of this record from the given JValue

    Set the fields of this record from the given JValue

    Definition Classes
    Record
  30. def setFieldsFromJsonString (json: String): Box[Unit]

    Sets the fields of this Record from the given JSON.

    Sets the fields of this Record from the given JSON.

    Definition Classes
    Record
  31. def setFieldsFromReq (req: Req): Unit

    Sets the fields of this Record from the given Req.

    Sets the fields of this Record from the given Req.

    Definition Classes
    Record
  32. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  33. 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

    Definition Classes
    Record
  34. 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

    Definition Classes
    Record
  35. def toString (): String

    Definition Classes
    BsonRecord → AnyRef → Any
  36. def toXHtml : NodeSeq

    Returns the HTML representation ofthis Record

    Returns the HTML representation ofthis Record

    Definition Classes
    Record
  37. 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

    Definition Classes
    Record
  38. def wait (): Unit

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from Record[MyType]

Inherited from FieldContainer

Inherited from AnyRef

Inherited from Any