Trait

net.liftweb.mapper

ValidateLength

Related Doc: package mapper

Permalink

trait ValidateLength extends MixableMappedField

Mix this trait into a MappedString and it will add maximum length validation to the MappedString

Self Type
ValidateLength with MappedString[_]
Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ValidateLength
  2. MixableMappedField
  3. BaseField
  4. FieldContainer
  5. SettableField
  6. SettableValueHolder
  7. Settable
  8. ReadableField
  9. Bindable
  10. ValueHolder
  11. FieldIdentifier
  12. AnyRef
  13. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Type Members

  1. abstract type TheOwnerType <: Mapper[(ValidateLength.this)#TheOwnerType]

    Permalink

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

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

    Definition Classes
    MixableMappedField
  2. abstract type ValueType

    Permalink
    Definition Classes
    ValueHolder

Abstract Value Members

  1. abstract def asString: String

    Permalink

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

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

    Definition Classes
    MixableMappedField
  2. abstract def dbColumnCount: Int

    Permalink
    Definition Classes
    MixableMappedField
  3. abstract def dbForeignKey_?: Boolean

    Permalink

    Is the field a foreign key reference

    Is the field a foreign key reference

    Definition Classes
    MixableMappedField
  4. abstract def dbIndexed_?: Boolean

    Permalink
    Definition Classes
    MixableMappedField
  5. abstract def dbNotNull_?: Boolean

    Permalink
    Definition Classes
    MixableMappedField
  6. abstract def dbPrimaryKey_?: Boolean

    Permalink
    Definition Classes
    MixableMappedField
  7. abstract def get: (ValidateLength.this)#ValueType

    Permalink

    get the value

    get the value

    Definition Classes
    ValueHolder
  8. abstract def name: String

    Permalink

    The human name of this field

    The human name of this field

    Definition Classes
    ReadableField
  9. abstract def set(in: (ValidateLength.this)#ValueType): (ValidateLength.this)#ValueType

    Permalink
    Definition Classes
    Settable
  10. abstract def setFilter: List[((ValidateLength.this)#ValueType) ⇒ (ValidateLength.this)#ValueType]

    Permalink

    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
    SettableField
  11. abstract def toForm: Box[NodeSeq]

    Permalink

    Create an input field for the item

    Create an input field for the item

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

    Permalink

    Validate this field and return a list of Validation Issues

    Validate this field and return a list of Validation Issues

    Definition Classes
    SettableField

Concrete Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. def allFields: Seq[BaseField]

    Permalink
    Definition Classes
    BaseFieldFieldContainer
  5. def asHtml: NodeSeq

    Permalink

    Default read-only rendering of field

    Default read-only rendering of field

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

    Permalink
    Definition Classes
    Any
  7. def atomicUpdate(f: ((ValidateLength.this)#ValueType) ⇒ (ValidateLength.this)#ValueType): (ValidateLength.this)#ValueType

    Permalink

    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
  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def defaultErrorMessage: String

    Permalink
  10. def displayHtml: NodeSeq

    Permalink
    Definition Classes
    ReadableField
  11. def displayName: String

    Permalink

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

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

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

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

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

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

    Permalink

    A unique 'id' for the field for form generation

    A unique 'id' for the field for form generation

    Definition Classes
    SettableField
  16. def finalize(): Unit

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

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

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

    Permalink
    Definition Classes
    SettableField
  20. final def isInstanceOf[T0]: Boolean

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

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

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

    Permalink
    Definition Classes
    AnyRef
  24. def performAtomicOperation[T](f: ⇒ T): T

    Permalink

    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
  25. def required_?: Boolean

    Permalink

    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
  26. def shouldDisplay_?: Boolean

    Permalink

    Given the current context, should this field be displayed

    Given the current context, should this field be displayed

    Definition Classes
    ReadableField
  27. def show_?: Boolean

    Permalink

    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
  28. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  29. def toString(): String

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

    Permalink
    Definition Classes
    FieldIdentifier
  31. def uploadField_?: Boolean

    Permalink

    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
  32. def validations: List[((ValidateLength.this)#ValueType) ⇒ List[FieldError]]

    Permalink
    Definition Classes
    ValidateLengthSettableField
  33. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from MixableMappedField

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