scala.swing.FormattedTextField

FocusLostBehavior

object FocusLostBehavior extends Enumeration

The behavior of a formatted text field when it loses its focus.

Inherits

  1. Enumeration
  2. AnyRef
  3. Any

Type Members

  1. class Value extends Ordered[Value]

    The type of the enumerated values

  2. class ValueSet extends Set[Value] with SetLike[Value, ValueSet]

    A class for sets of values Iterating through this set will yield values in increasing order of their ids

Value Members

  1. val Commit: Value

  2. val CommitOrRevert: Value

  3. val Persist: Value

  4. val Revert: Value

  5. object ValueSet extends AnyRef

    A factory object for value sets

  6. def equals(arg0: Any): Boolean

    This method is used to compare the receiver object (this) with the argument object (arg0) for equivalence

  7. def exists(p: (Value) ⇒ Boolean): Boolean

    Apply a predicate p to all values of this enumeration and return true, iff there is at least one value for which p yields true

  8. def filter(p: (Value) ⇒ Boolean): Iterator[Value]

    Returns all values of this enumeration that satisfy the predicate p

  9. def flatMap[B](f: (Value) ⇒ Iterator[B]): Iterator[B]

    Applies the given function f to each value of this enumeration, then concatenates the results

  10. def forall(p: (Value) ⇒ Boolean): Boolean

    Apply a predicate p to all values of this enumeration and return true, iff the predicate yields true for all values

  11. def foreach(f: (Value) ⇒ Unit): Unit

    Apply a function f to all values of this enumeration

  12. def hashCode(): Int

    Returns a hash code value for the object

  13. def map[B](f: (Value) ⇒ B): Iterator[B]

    Returns an iterator resulting from applying the given function f to each value of this enumeration

  14. def name: String

    The name of this enumeration

  15. def toString(): String

    The name of this enumeration

  16. def valueOf(s: String): Option[Value]

  17. def values: ValueSet

    The values of this enumeration as a set