org.specs2.form

Field

case class Field[T](label: String, value: Property[T], decorator: Decorator) extends Executable with StandardResults with DecoratedProperty[Field[T]] with Product with Serializable

A Field is a property which is used only to display input values or output values.

The apply method can be used to retrieve the Field value: Field(label, 1).apply() must_== 1

The value is stored in a Property object so it will not be evaluated until explicitly queried.

Linear Supertypes
Serializable, Serializable, Product, Equals, DecoratedProperty[Field[T]], DecoratedLabel[Field[T]], StandardResults, Executable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. Field
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. DecoratedProperty
  7. DecoratedLabel
  8. StandardResults
  9. Executable
  10. AnyRef
  11. Any
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Field(label: String, value: Property[T], decorator: Decorator = ...)

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 anError: Error

    Definition Classes
    StandardResults
  7. def apply(): T

    returns

    the field value

  8. def apply(v: ⇒ T): Field[T]

    set a new value on the field.

  9. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  10. def canEqual(arg0: Any): Boolean

    Definition Classes
    Field → Equals
  11. def clone(): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  12. def decorateLabel(ns: Any): Any

    do the decoration

    do the decoration

    Definition Classes
    DecoratedLabel
  13. def decorateLabelWith(f: (Any) ⇒ Any): Field[T]

    set a new Decorator for the label

    set a new Decorator for the label

    Definition Classes
    DecoratedLabel
  14. def decorateValue(ns: Any): Any

    do the decoration

    do the decoration

    Definition Classes
    DecoratedProperty
  15. def decorateValueWith(f: (Any) ⇒ Any): Field[T]

    set a new Decorator for the value

    set a new Decorator for the value

    Definition Classes
    DecoratedProperty
  16. def decorateWith(f: (Any) ⇒ Any): Field[T]

    set a new Decorator

    set a new Decorator

    Definition Classes
    DecoratedProperty
  17. val decorator: Decorator

    Definition Classes
    FieldDecoratedLabel
  18. def decoratorIs(d: Decorator): Field[T]

    set a new Decorator

    set a new Decorator

    Definition Classes
    FieldDecoratedLabel
  19. def done: Success

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

    Definition Classes
    AnyRef
  21. def equals(a: Any): Boolean

    Definition Classes
    Field → Equals → AnyRef → Any
  22. def execute: Result

    executing a field execute the value and returns success unless there is an Error

    executing a field execute the value and returns success unless there is an Error

    returns

    a Result

    Definition Classes
    FieldExecutable
  23. def failure: Failure

    Definition Classes
    StandardResults
  24. def finalize(): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  25. def get: T

    alias for apply()

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

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

    Definition Classes
    Field → AnyRef → Any
  28. def header: Field[T]

    use this Field as a header in a table

  29. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  30. val label: String

  31. def labelStyles: String

    return the label styles

    return the label styles

    Definition Classes
    DecoratedLabel
  32. def map(f: (Result) ⇒ Result): Executable

    modify the result to return

    modify the result to return

    Definition Classes
    Executable
  33. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  36. def pending: Pending

    Definition Classes
    StandardResults
  37. def productArity: Int

    Definition Classes
    Field → Product
  38. def productElement(arg0: Int): Any

    Definition Classes
    Field → Product
  39. def productIterator: Iterator[Any]

    Definition Classes
    Product
  40. def productPrefix: String

    Definition Classes
    Field → Product
  41. def skipped: Skipped

    Definition Classes
    StandardResults
  42. def styleLabelWith(s: (String, String)): Field[T]

    set a new style for the label

    set a new style for the label

    Definition Classes
    DecoratedLabel
  43. def styleValueWith(s: (String, String)): Field[T]

    set a new style for the value

    set a new style for the value

    Definition Classes
    DecoratedProperty
  44. def styleWith(s: (String, String)): Field[T]

    set a new style

    set a new style

    Definition Classes
    DecoratedProperty
  45. def success: Success

    Definition Classes
    StandardResults
  46. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  47. def toString(): String

    returns

    "label: value"

    Definition Classes
    Field → AnyRef → Any
  48. def toStringField: Field[String]

    transforms this typed Field as a Field containing the toString value of the Fields value

  49. def todo: Pending

    Definition Classes
    StandardResults
  50. val value: Property[T]

  51. lazy val valueOrResult: Either[Result, T]

  52. def valueStyles: String

    Definition Classes
    DecoratedProperty
  53. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()
  56. def wontdo: Success

    Definition Classes
    StandardResults

Deprecated Value Members

  1. def productElements: Iterator[Any]

    Definition Classes
    Product
    Annotations
    @deprecated
    Deprecated

    (Since version 2.8.0) use productIterator instead

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from DecoratedProperty[Field[T]]

Inherited from DecoratedLabel[Field[T]]

Inherited from StandardResults

Inherited from Executable

Inherited from AnyRef

Inherited from Any