net.liftweb.mongodb.record.field

MongoListField

class MongoListField[OwnerType <: BsonRecord[OwnerType], ListType] extends Field[List[ListType], OwnerType] with MandatoryTypedField[List[ListType]] with MongoFieldFlavor[List[ListType]]

List field.

Supported types: primitives - String, Int, Long, Double, Float, Byte, BigInt, Boolean (and their Java equivalents) date types - java.util.Date, org.joda.time.DateTime mongo types - ObjectId, Pattern, UUID

If you need to support other types, you will need to override the asDBObject and setFromDBObject functions accordingly. And the asJValue and setFromJValue functions if you will be using them.

Note: setting optional_? = false will result in incorrect equals behavior when using setFromJValue

Linear Supertypes
MongoFieldFlavor[List[ListType]], MandatoryTypedField[List[ListType]], Product1[List[ListType]], Product, Equals, Field[List[ListType], OwnerType], TypedField[List[ListType]], OwnedField[OwnerType], BaseField, BaseField, FieldContainer, SettableField, SettableValueHolder, Settable, ReadableField, Bindable, ValueHolder, FieldIdentifier, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. MongoListField
  2. MongoFieldFlavor
  3. MandatoryTypedField
  4. Product1
  5. Product
  6. Equals
  7. Field
  8. TypedField
  9. OwnedField
  10. BaseField
  11. BaseField
  12. FieldContainer
  13. SettableField
  14. SettableValueHolder
  15. Settable
  16. ReadableField
  17. Bindable
  18. ValueHolder
  19. FieldIdentifier
  20. AnyRef
  21. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new MongoListField(rec: OwnerType)(implicit arg0: Manifest[ListType])

Type Members

  1. type MyType = List[ListType]

    Definition Classes
    MongoListFieldTypedField
  2. type ValidationFunction = (ValueType) ⇒ List[FieldError]

    Definition Classes
    TypedField
  3. type ValueType = List[ListType]

    ValueType represents the type that users will work with.

    ValueType represents the type that users will work with. For MandatoryTypeField, this is equal to ThisType.

    Definition Classes
    MandatoryTypedFieldValueHolder

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 _1: MongoListField.MyType

    Definition Classes
    MandatoryTypedField → Product1
  7. def allFields: Seq[BaseField]

    Definition Classes
    BaseFieldFieldContainer
  8. def apply(in: Box[MongoListField.MyType]): OwnerType

    Definition Classes
    Field
  9. def apply(in: MongoListField.MyType): OwnerType

    Definition Classes
    Field
  10. def asDBObject: DBObject

    Definition Classes
    MongoListFieldMongoFieldFlavor
  11. def asHtml: NodeSeq

    Default read-only rendering of field

    Default read-only rendering of field

    Definition Classes
    ReadableFieldBindable
  12. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  13. def asJString(encode: (MongoListField.MyType) ⇒ String): JValue

    Helper for implementing asJValue for a conversion to an encoded JString

    Helper for implementing asJValue for a conversion to an encoded JString

    encode

    function to transform the field value into a String

    Attributes
    protected
    Definition Classes
    TypedField
  14. def asJValue: JArray

    Encode the field value into a JValue

    Encode the field value into a JValue

    Definition Classes
    MongoListFieldMongoFieldFlavorBaseField
  15. def asJs: JsExp with Product with Serializable

    Returns the field's value as a valid JavaScript expression

    Returns the field's value as a valid JavaScript expression

    Definition Classes
    MongoFieldFlavor
  16. def asString: String

    Convert the field to a String.

    Convert the field to a String... usually of the form "displayName=value"

    Definition Classes
    TypedFieldBaseField
  17. def atomicUpdate(f: (ValueType) ⇒ ValueType): ValueType

    Perform an atomic update of this Settable.

    Perform an atomic update of this Settable. The current value is passed to the function and the ValueHolder is set to the result of the function. This is enclosed in the performAtomicOperation method which will, by default, synchronize this instance

    Definition Classes
    Settable
  18. implicit def boxNodeFuncToFieldError(in: (Box[MongoListField.MyType]) ⇒ Box[Node]): (Box[MongoListField.MyType]) ⇒ List[FieldError]

    Attributes
    protected
    Definition Classes
    TypedField
  19. implicit def boxNodeToFieldError(in: Box[Node]): List[FieldError]

    Attributes
    protected
    Definition Classes
    TypedField
  20. def canEqual(a: Any): Boolean

    Definition Classes
    MandatoryTypedField → Equals
  21. def canRead_?: Boolean

    Can the value of this field be read without obscuring the result?

    Can the value of this field be read without obscuring the result?

    Definition Classes
    BaseField
  22. def canWrite_?: Boolean

    Can the value of this field be written?

    Can the value of this field be written?

    Definition Classes
    BaseField
  23. def checkCanRead_?: Boolean

    If the owner is not in "safe" mode, check the current environment to see if the field can be read

    If the owner is not in "safe" mode, check the current environment to see if the field can be read

    Definition Classes
    BaseField
  24. def checkCanWrite_?: Boolean

    If the owner is not in "safe" mode, check the current environment to see if the field can be written

    If the owner is not in "safe" mode, check the current environment to see if the field can be written

    Definition Classes
    BaseField
  25. def clear: Unit

    Clear the value of this field

    Clear the value of this field

    Definition Classes
    TypedField
  26. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. def defaultValue: List[ListType]

    The default value of the field when a field has no value set and is optional, or a method that must return a value (e.

    The default value of the field when a field has no value set and is optional, or a method that must return a value (e.g. value) is used

    Definition Classes
    MongoListFieldMandatoryTypedField
  28. def defaultValueBox: Box[MongoListField.MyType]

    The default value of the field when no value is set.

    The default value of the field when no value is set. Must return a Full Box unless optional_? is true

    Definition Classes
    MandatoryTypedFieldTypedField
  29. def dirty_?: Boolean

    Definition Classes
    BaseField
  30. def dirty_?(b: Boolean): Unit

    Attributes
    protected
    Definition Classes
    BaseField
  31. def displayHtml: NodeSeq

    Definition Classes
    ReadableField
  32. def displayName: String

    The display name of this field (e.

    The display name of this field (e.g., "First Name")

    Definition Classes
    OwnedFieldReadableField
  33. def displayNameHtml: Box[NodeSeq]

    Definition Classes
    ReadableField
  34. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  35. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  36. def fieldId: Option[NodeSeq]

    A unique 'id' for the field for form generation

    A unique 'id' for the field for form generation

    Definition Classes
    SettableField
  37. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  38. def forceDirty_?: Boolean

    Should the dirty flag always be set when setBox is called

    Should the dirty flag always be set when setBox is called

    Definition Classes
    BaseField
  39. def formElemAttrs: Seq[http.SHtml.ElemAttr]

    What form elements are we going to add to this field?

    What form elements are we going to add to this field?

    Definition Classes
    BaseField
  40. def formInputType: String

    Form field's type.

    Form field's type. Defaults to 'text', but you may want to change it to other HTML5 values.

    Definition Classes
    BaseField
  41. implicit def formats: Formats

  42. final def genericSetFromAny(in: Any)(implicit m: Manifest[MongoListField.MyType]): Box[MongoListField.MyType]

    Generic implementation of setFromAny that implements exactly what the doc for setFromAny specifies, using a Manifest to check types

    Generic implementation of setFromAny that implements exactly what the doc for setFromAny specifies, using a Manifest to check types

    Attributes
    protected
    Definition Classes
    TypedField
  43. def get: MongoListField.MyType

    get the value

    get the value

    Definition Classes
    MandatoryTypedFieldValueHolder
  44. final def getClass(): Class[_]

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

    Definition Classes
    AnyRef → Any
  46. def helpAsHtml: Box[NodeSeq]

    Definition Classes
    SettableField
  47. def ignoreField_?: Boolean

    Should the field be ignored by the OR Mapper?

    Should the field be ignored by the OR Mapper?

    Definition Classes
    BaseField
  48. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  49. def label: NodeSeq

    Definition Classes
    BaseField
  50. def liftSetFilterToBox(in: Box[MongoListField.MyType]): Box[MongoListField.MyType]

    OptionalTypedField and MandatoryTypedField implement this to do the appropriate lifting of Box[MyType] to ValueType

    OptionalTypedField and MandatoryTypedField implement this to do the appropriate lifting of Box[MyType] to ValueType

    Attributes
    protected
    Definition Classes
    MandatoryTypedFieldTypedField
  51. lazy val mf: Manifest[ListType]

  52. def name: String

    The text name of this field

    The text name of this field

    Definition Classes
    OwnedFieldReadableField
  53. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  54. def noValueErrorMessage: String

    The error message used when the field value could not be set

    The error message used when the field value could not be set

    Definition Classes
    BaseField
  55. implicit def nodeToFieldError(node: Node): List[FieldError]

    Attributes
    protected
    Definition Classes
    TypedField
  56. def notOptionalErrorMessage: String

    The error message used when the field value must be set

    The error message used when the field value must be set

    Definition Classes
    BaseField
  57. final def notify(): Unit

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

    Definition Classes
    AnyRef
  59. def obscure(in: MongoListField.MyType): Box[MongoListField.MyType]

    Definition Classes
    TypedField
  60. def optional_?: Boolean

    Is the value of this field optional (e.

    Is the value of this field optional (e.g. NULLable)?

    Definition Classes
    MandatoryTypedFieldBaseField
  61. def options: List[(ListType, String)]

    Options for select list *

  62. def owner: OwnerType

    Return the owner of this field

    Return the owner of this field

    Definition Classes
    MongoListFieldOwnedField
  63. def performAtomicOperation[T](f: ⇒ T): T

    Perform an atomic operation on the Settable.

    Perform an atomic operation on the Settable. By default synchronizes the instance, but it could use other mechanisms

    Definition Classes
    Settable
  64. def productArity: Int

    Definition Classes
    Product1 → Product
  65. def productElement(n: Int): Any

    Definition Classes
    Product1 → Product
    Annotations
    @throws( ... )
  66. def productIterator: Iterator[Any]

    Definition Classes
    Product
  67. def productPrefix: String

    Definition Classes
    Product
  68. def required_?: Boolean

    Is the Field required (and will have a style designating it as such)

    Is the Field required (and will have a style designating it as such)

    Definition Classes
    SettableField
  69. def resetDirty: Unit

    Definition Classes
    BaseField
  70. def runFilters(in: Box[MongoListField.MyType], filter: List[(Box[MongoListField.MyType]) ⇒ Box[MongoListField.MyType]]): Box[MongoListField.MyType]

    Definition Classes
    TypedField
  71. def runValidation(in: Box[MongoListField.MyType]): List[FieldError]

    Helper function that does validation of a value by using the validators specified for the field

    Helper function that does validation of a value by using the validators specified for the field

    Attributes
    protected
    Definition Classes
    TypedField
  72. final def safe_?: Boolean

    Are we in "safe" mode (i.

    Are we in "safe" mode (i.e., the value of the field can be read or written without any security checks.)

    Definition Classes
    OwnedFieldBaseField
  73. def set(in: MongoListField.MyType): MongoListField.MyType

    Set the value of the field to the given value.

    Set the value of the field to the given value. Note: Because setting a field can fail (return non-Full), this method will return defaultValue if the field could not be set.

    Definition Classes
    MandatoryTypedFieldSettable
  74. def setBox(in: Box[MongoListField.MyType]): Box[MongoListField.MyType]

    Definition Classes
    TypedField
  75. def setFilter: List[(ValueType) ⇒ ValueType]

    A list of functions that transform the value before it is set.

    A list of functions that transform the value before it is set. The transformations are also applied before the value is used in a query. Typical applications of this are trimming and/or toLowerCase-ing strings

    Definition Classes
    TypedFieldSettableField
  76. def setFilterBox: List[(Box[MongoListField.MyType]) ⇒ Box[MongoListField.MyType]]

    A list of functions that transform the value before it is set.

    A list of functions that transform the value before it is set. The transformations are also applied before the value is used in a query. Typical applications of this are trimming and/or toLowerCase-ing strings

    Attributes
    protected
    Definition Classes
    TypedField
  77. def setFromAny(in: Any): Box[MyType]

    Set the value of the field from anything.

    Set the value of the field from anything. Implementations of this method should accept at least the following (pattern => valueBox)

    • value: MyType => setBox(Full(value))
    • Some(value: MyType) => setBox(Full(value))
    • Full(value: MyType) => setBox(Full(value))
    • (value: MyType)::_ => setBox(Full(value))
    • s: String => setFromString(s)
    • Some(s: String) => setFromString(s)
    • Full(s: String) => setFromString(s)
    • null|None|Empty => setBox(defaultValueBox)
    • f: Failure => setBox(f) And usually convert the input to a string and uses setFromString as a last resort.

    Note that setFromAny should _always_ call setBox, even if the conversion fails. This is so that validation properly notes the error.

    The method genericSetFromAny implements this guideline.

    Definition Classes
    MongoListFieldTypedField
  78. def setFromDBObject(dbo: DBObject): Box[MyType]

    Definition Classes
    MongoListFieldMongoFieldFlavor
  79. def setFromJString(jvalue: JValue)(decode: (String) ⇒ Box[MongoListField.MyType]): Box[MongoListField.MyType]

    Helper for implementing setFromJValue for a conversion from an encoded JString

    Helper for implementing setFromJValue for a conversion from an encoded JString

    decode

    function to try and transform a String into a field value

    Attributes
    protected
    Definition Classes
    TypedField
  80. def setFromJValue(jvalue: JValue): Box[MyType]

    Decode the JValue and set the field to the decoded value.

    Decode the JValue and set the field to the decoded value. Returns Empty or Failure if the value could not be set

    Definition Classes
    MongoListFieldTypedField
  81. def setFromString(in: String): Box[List[ListType]]

    Set the value of the field using some kind of type-specific conversion from a String.

    Set the value of the field using some kind of type-specific conversion from a String. By convention, if the field is optional_?, then the empty string should be treated as no-value (Empty). Note that setFromString should _always_ call setBox, even if the conversion fails. This is so that validation properly notes the error.

    returns

    Full(convertedValue) if the conversion succeeds (the field value will be set by side-effect) Empty or Failure if the conversion does not succeed

    Definition Classes
    MongoListFieldTypedField
  82. def set_!(in: Box[MongoListField.MyType]): Box[MongoListField.MyType]

    Attributes
    protected
    Definition Classes
    TypedField
  83. def shouldDisplay_?: Boolean

    Given the current context, should this field be displayed

    Given the current context, should this field be displayed

    Definition Classes
    ReadableField
  84. def show_?: Boolean

    Given the current state of things, should this field be shown

    Given the current state of things, should this field be shown

    Definition Classes
    SettableField
  85. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  86. def tabIndex: Int

    Definition Classes
    BaseField
  87. def toBoxMyType(in: ValueType): Full[ValueType]

    Definition Classes
    MandatoryTypedFieldTypedField
  88. def toForm: Box[NodeSeq]

    Generate a form control for the field

    Generate a form control for the field

    Definition Classes
    MongoListFieldBaseFieldSettableField
  89. def toString(): String

    Definition Classes
    MandatoryTypedField → AnyRef → Any
  90. def toValueType(in: Box[MongoListField.MyType]): MongoListField.MyType

    Definition Classes
    MandatoryTypedFieldTypedField
  91. def toXHtml: NodeSeq

    Convert the field value to an XHTML representation

    Convert the field value to an XHTML representation

    Definition Classes
    BaseField
  92. def uniqueFieldId: Box[String]

    Definition Classes
    BaseFieldFieldIdentifier
  93. def uploadField_?: Boolean

    Is this an upload field so that a form that includes this field must be multi-part mime

    Is this an upload field so that a form that includes this field must be multi-part mime

    Definition Classes
    SettableField
  94. def validate: List[FieldError]

    Validate this field's setting, returning any errors found

    Validate this field's setting, returning any errors found

    Definition Classes
    TypedFieldSettableField
  95. def validations: List[(ValueType) ⇒ List[FieldError]]

    Definition Classes
    TypedFieldSettableField
  96. def value: MongoListField.MyType

    Definition Classes
    MandatoryTypedField
  97. def valueBox: Box[MongoListField.MyType]

    Definition Classes
    TypedField
  98. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def is: MongoListField.MyType

    Get the value.

    Get the value. Use get.

    Definition Classes
    MandatoryTypedFieldValueHolder
    Annotations
    @deprecated
    Deprecated

    (Since version 2.6) Use get

Inherited from MongoFieldFlavor[List[ListType]]

Inherited from MandatoryTypedField[List[ListType]]

Inherited from Product1[List[ListType]]

Inherited from Product

Inherited from Equals

Inherited from Field[List[ListType], OwnerType]

Inherited from TypedField[List[ListType]]

Inherited from OwnedField[OwnerType]

Inherited from BaseField

Inherited from BaseField

Inherited from FieldContainer

Inherited from SettableField

Inherited from SettableValueHolder

Inherited from Settable

Inherited from ReadableField

Inherited from Bindable

Inherited from ValueHolder

Inherited from FieldIdentifier

Inherited from AnyRef

Inherited from Any

Ungrouped