net.liftweb.mapper

MixableMappedField

trait MixableMappedField extends BaseField

This is the supertrait of all traits that can be mixed into a MappedField. All methods should be abstract. They will be made concrete in implementations.

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. MixableMappedField
  2. BaseField
  3. FieldContainer
  4. SettableField
  5. SettableValueHolder
  6. Settable
  7. ReadableField
  8. Bindable
  9. ValueHolder
  10. FieldIdentifier
  11. AnyRef
  12. Any
Visibility
  1. Public
  2. All

Type Members

  1. type TheOwnerType <: Mapper[TheOwnerType]

    Will be set to the type of the owner of the field

    Will be set to the type of the owner of the field

    Attributes
    abstract
  2. type ValueType

    Attributes
    abstract
    Definition Classes
    ValueHolder

Abstract Value Members

  1. def asString : String

    Return the field name and field value, delimited by an '='

    Return the field name and field value, delimited by an '='

    Attributes
    abstract
  2. def dbColumnCount : Int

    Attributes
    abstract
  3. def dbForeignKey_? : Boolean

    Is the field a foreign key reference

    Is the field a foreign key reference

    Attributes
    abstract
  4. def dbIndexed_? : Boolean

    Attributes
    abstract
  5. def dbNotNull_? : Boolean

    Attributes
    abstract
  6. def dbPrimaryKey_? : Boolean

    Attributes
    abstract
  7. def get : ValueType

    get the value

    get the value

    Attributes
    abstract
    Definition Classes
    ValueHolder
  8. def name : String

    The human name of this field

    The human name of this field

    Attributes
    abstract
    Definition Classes
    ReadableField
  9. def set (in: ValueType): ValueType

    Attributes
    abstract
    Definition Classes
    Settable
  10. 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

    Attributes
    abstract
    Definition Classes
    SettableField
  11. def toForm : Box[NodeSeq]

    Create an input field for the item

    Create an input field for the item

    Attributes
    abstract
    Definition Classes
    SettableField
  12. def validate : List[FieldError]

    Validate this field and return a list of Validation Issues

    Validate this field and return a list of Validation Issues

    Attributes
    abstract
    Definition Classes
    SettableField
  13. def validations : List[(ValueType) ⇒ List[FieldError]]

    Attributes
    abstract
    Definition Classes
    SettableField
  14. def is : ValueType

    Get the value.

    Get the value. Use get.

    @deprecated

    Attributes
    abstract
    Definition Classes
    ValueHolder
    Annotations
    @deprecated
    Deprecated

    Use get

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 : Seq[BaseField]

    Definition Classes
    BaseFieldFieldContainer
  7. def asHtml : NodeSeq

    Default read-only rendering of field

    Default read-only rendering of field

    Definition Classes
    ReadableFieldBindable
  8. def asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  9. 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
  10. def clone (): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  11. def displayHtml : NodeSeq

    Definition Classes
    ReadableField
  12. def displayName : String

    The display name of this field (e.

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

    Definition Classes
    ReadableField
  13. def displayNameHtml : Box[NodeSeq]

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

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

    Definition Classes
    AnyRef → Any
  16. 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
  17. def finalize (): Unit

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

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

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

    Definition Classes
    SettableField
  21. def isInstanceOf [T0] : Boolean

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

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

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

    Attributes
    final
    Definition Classes
    AnyRef
  25. 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
  26. 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
  27. def shouldDisplay_? : Boolean

    Given the current context, should this field be displayed

    Given the current context, should this field be displayed

    Definition Classes
    ReadableField
  28. def show_? : Boolean

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

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

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

    Attributes
    final
    Definition Classes
    AnyRef
  30. def toString (): String

    Definition Classes
    AnyRef → Any
  31. def uniqueFieldId : Box[String]

    Definition Classes
    FieldIdentifier
  32. 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
  33. def wait (): Unit

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()

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