net.liftweb.record

BaseField

trait BaseField extends FieldIdentifier with BaseField

Base trait of record fields, with functionality common to any type of field owned by any type of record

Linear Supertypes
Known Subclasses
BinaryField, BinaryTypedField, BooleanField, BooleanTypedField, BsonRecordField, BsonRecordListField, CountryField, DBRefField, DateField, DateTimeField, DateTimeTypedField, DecimalField, DecimalTypedField, DisplayWithLabel, DoubleField, DoubleTypedField, EmailField, EmailTypedField, EnumField, EnumNameField, EnumNameTypedField, EnumTypedField, Field, IntField, IntRefField, IntRefListField, IntTypedField, JObjectField, JSONBasicArrayField, JSONSubRecordArrayField, JSONSubRecordField, JsonObjectField, KeyField, LocaleField, LocaleTypedField, LongField, LongRefField, LongRefListField, LongTypedField, MandatoryTypedField, MongoCaseClassField, MongoCaseClassListField, MongoDateListField, MongoJsonObjectListField, MongoListField, MongoMapField, MongoPasswordField, MongoRefField, MongoRefListField, MyEmail, MyFirstName, MyLastName, MyLocale, MyMappedLongClass, MyPassword, MySuperUser, MyTimeZone, MyUniqueId, MyValidated, NumericTypedField, ObjectIdField, ObjectIdRefField, ObjectIdRefListField, OptionalBinaryField, OptionalBooleanField, OptionalCountryField, OptionalDateTimeField, OptionalDecimalField, OptionalDoubleField, OptionalEmailField, OptionalEnumField, OptionalEnumNameField, OptionalIntField, OptionalLocaleField, OptionalLongField, OptionalPasswordField, OptionalPostalCodeField, OptionalStringField, OptionalTextareaField, OptionalTimeZoneField, OptionalTypedField, OwnedField, PasswordField, PasswordTypedField, PatternField, PostalCodeField, PostalCodeTypedField, StringField, StringRefField, StringRefListField, StringTypedField, TextareaField, TextareaTypedField, TimeZoneField, TimeZoneTypedField, TypedField, UUIDField, UUIDRefField, UUIDRefListField, UniqueIdField, _id, id, id, id, id, id, id, rev
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. BaseField
  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 ValueType

    Attributes
    abstract
    Definition Classes
    ValueHolder

Abstract Value Members

  1. def asJValue : JValue

    Encode the field value into a JValue

    Encode the field value into a JValue

    Attributes
    abstract
  2. def asJs : JsExp

    Returns the field's value as a valid JavaScript expression

    Returns the field's value as a valid JavaScript expression

    Attributes
    abstract
  3. def asString : String

    Attributes
    abstract
  4. def get : ValueType

    get the value

    get the value

    Attributes
    abstract
    Definition Classes
    ValueHolder
  5. def set (in: ValueType): ValueType

    Attributes
    abstract
    Definition Classes
    Settable
  6. 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
  7. def toForm : Box[NodeSeq]

    Generate a form control for the field

    Generate a form control for the field

    Attributes
    abstract
    Definition Classes
    BaseFieldSettableField
  8. 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
  9. def validations : List[(ValueType) ⇒ List[FieldError]]

    Attributes
    abstract
    Definition Classes
    SettableField
  10. 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 canRead_? : Boolean

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

  11. def canWrite_? : Boolean

    Can the value of this field be written?

  12. def checkCanRead_? : Boolean

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

  13. def checkCanWrite_? : Boolean

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

  14. def clone (): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  15. def dirty_? : Boolean

  16. def dirty_? (b: Boolean): Unit

    Attributes
    protected
  17. def displayHtml : NodeSeq

    Definition Classes
    ReadableField
  18. def displayName : String

    The display name of this field (e.

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

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

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

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

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

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  24. def formElemAttrs : Seq[ElemAttr]

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

  25. def getClass (): java.lang.Class[_]

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

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

    Definition Classes
    SettableField
  28. def ignoreField_? : Boolean

    Should the field be ignored by the OR Mapper?

  29. def isInstanceOf [T0] : Boolean

    Attributes
    final
    Definition Classes
    Any
  30. def label : NodeSeq

  31. def name : String

    The text name of this field

    The text name of this field

    Definition Classes
    BaseFieldReadableField
  32. def ne (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  33. def noValueErrorMessage : String

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

  34. def notOptionalErrorMessage : String

    The error message used when the field value must be set

  35. def notify (): Unit

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

    Attributes
    final
    Definition Classes
    AnyRef
  37. def optional_? : Boolean

    Is the value of this field optional (e.

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

  38. 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
  39. 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
  40. def resetDirty : Unit

  41. def safe_? : Boolean

  42. def shouldDisplay_? : Boolean

    Given the current context, should this field be displayed

    Given the current context, should this field be displayed

    Definition Classes
    ReadableField
  43. 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
  44. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  45. def tabIndex : Int

  46. def toString (): String

    Definition Classes
    AnyRef → Any
  47. def toXHtml : NodeSeq

    Convert the field value to an XHTML representation

  48. def uniqueFieldId : Box[String]

    Definition Classes
    BaseFieldFieldIdentifier
  49. 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
  50. def wait (): Unit

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  52. 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