net.liftweb.mongodb.record

MongoRecord

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

Self Type
MyType
Linear Supertypes
BsonRecord[MyType], Record[MyType], FieldContainer, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. MongoRecord
  2. BsonRecord
  3. Record
  4. FieldContainer
  5. AnyRef
  6. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def id: Any

  2. abstract def meta: MongoMetaRecord[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)

    Definition Classes
    MongoRecordBsonRecordRecord

Concrete Value Members

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

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

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

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

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

    Definition Classes
    Any
  6. def allFields: List[Field[_, MyType]]

    Definition Classes
    RecordFieldContainer
  7. def asDBObject: DBObject

    Encode a record instance into a DBObject

    Encode a record instance into a DBObject

    Definition Classes
    BsonRecord
  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def asJSON: JsExp

    Returns the JSON representation of this record

    Returns 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

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

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

    returns

    a JsObj

    Definition Classes
    Record
  12. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  13. def copy: MyType

    Definition Classes
    Record
  14. def deleteBox_!: Box[Boolean]

    Try to delete the instance from backing store

  15. def delete_!: Boolean

    Delete the instance from backing store

  16. def dirty_?: Boolean

    Definition Classes
    Record
  17. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  18. def equals(other: Any): Boolean

    Definition Classes
    Record → AnyRef → Any
  19. def equalsWithPatternCheck(other: Any): Boolean

    Pattern.

    Pattern.equals doesn't work properly so it needs a special check. If you use PatternField, be sure to override equals with this.

    Attributes
    protected
    Definition Classes
    BsonRecord
  20. def fieldByName(fieldName: String): Box[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
  21. def fields(): List[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
  22. def finalize(): Unit

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

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

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

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

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

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

    Definition Classes
    AnyRef
  29. def runSafe[T](f: ⇒ T): T

    Definition Classes
    Record
  30. final 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?)

    Definition Classes
    Record
  31. def save(safe: Boolean = true): MyType

    Save the instance and return the instance

    Save the instance and return the instance

    safe

    - if true will use WriteConcern ACKNOWLEDGED else UNACKNOWLEDGED

  32. def save(concern: WriteConcern): MyType

    Save the instance and return the instance

  33. def saveBox(): Box[MyType]

    Try to save the instance and return the instance in a Box.

  34. def saveTheRecord(): Box[MyType]

    Save the instance and return the instance

    Save the instance and return the instance

    Definition Classes
    MongoRecordBsonRecordRecord
  35. def setFieldsFromDBObject(dbo: DBObject): Unit

    Set the fields of this record from the given DBObject

    Set the fields of this record from the given DBObject

    Definition Classes
    BsonRecord
  36. 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
  37. 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
  38. 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
  39. 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
  40. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  41. 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
  42. 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
  43. def toString(): String

    Definition Classes
    Record → AnyRef → Any
  44. def toXHtml: NodeSeq

    Returns the HTML representation of this Record

    Returns the HTML representation of this Record

    Definition Classes
    Record
  45. def update: MyType

    Update only the dirty fields

  46. def updateBox: Box[MyType]

    Try to update only the dirty fields

  47. 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
  48. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def save: MyType

    Save the instance and return the instance WILL NOT RAISE MONGO SERVER ERRORS.

    Save the instance and return the instance WILL NOT RAISE MONGO SERVER ERRORS. Use save(Boolean) or save(WriteConcern) to control error behavior

    Annotations
    @deprecated
    Deprecated

    (Since version 2.6) save with no argument list is deprecated and will go away in Lift 3; it defaults to an unsafe WriteConcern. Please call save(false) for this behavior. Calling save() or save(true) will set the WriteConcern to ACKNOWLEDGED, which is in line with default MongoClient behavior.

Inherited from BsonRecord[MyType]

Inherited from Record[MyType]

Inherited from FieldContainer

Inherited from AnyRef

Inherited from Any

Ungrouped