case class Field[T](label: String, value: Property[T], decorator: Decorator = Decorator().bkGreyLabel) extends Executable 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
- Alphabetic
- By Inheritance
- Field
- Serializable
- Product
- Equals
- DecoratedProperty
- DecoratedLabel
- Executable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new Field(label: String, value: Property[T], decorator: Decorator = Decorator().bkGreyLabel)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def apply(v: => T): Field[T]
set a new value on the field.
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
- def decorateLabel(ns: Any): Any
do the decoration
do the decoration
- Definition Classes
- DecoratedLabel
- def decorateLabelWith(f: (Any) => Any): Field[T]
set a new Decorator for the label
set a new Decorator for the label
- Definition Classes
- DecoratedLabel
- def decorateValue(ns: Any): Any
do the decoration
do the decoration
- Definition Classes
- DecoratedProperty
- def decorateValueWith(f: (Any) => Any): Field[T]
set a new Decorator for the value
set a new Decorator for the value
- Definition Classes
- DecoratedProperty
- def decorateWith(f: (Any) => Any): Field[T]
set a new Decorator
set a new Decorator
- Definition Classes
- DecoratedProperty
- val decorator: Decorator
- Definition Classes
- Field → DecoratedLabel
- def decoratorIs(d: Decorator): Field[T]
set a new Decorator
set a new Decorator
- Definition Classes
- Field → DecoratedLabel
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(a: Any): Boolean
- Definition Classes
- Field → Equals → AnyRef → Any
- 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
- Definition Classes
- Field → Executable
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- Field → AnyRef → Any
- def header: Field[T]
use this Field as a header in a table
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val label: String
- def labelStyles: String
return the label styles
return the label styles
- Definition Classes
- DecoratedLabel
- def map(f: (Result) => Result): Executable
- Definition Classes
- Executable
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- def optionalValue: Option[T]
- returns
the field value as an Option
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def styleLabelWith(s: (String, String)): Field[T]
set a new style for the label
set a new style for the label
- Definition Classes
- DecoratedLabel
- def styleValueWith(s: (String, String)): Field[T]
set a new style for the value
set a new style for the value
- Definition Classes
- DecoratedProperty
- def styleWith(s: (String, String)): Field[T]
set a new style
set a new style
- Definition Classes
- DecoratedProperty
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toOption: Option[T]
- returns
the field value as an Option
- def toString(): String
- Definition Classes
- Field → AnyRef → Any
- def toStringField: Field[String]
transforms this typed Field as a Field containing the toString value of the Fields value
- val value: Property[T]
- lazy val valueOrResult: Either[Result, T]
- def valueStyles: String
- Definition Classes
- DecoratedProperty
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)