scala.swing.Table

IntervalMode

object IntervalMode extends Enumeration

source: Table.scala
Inherited
  1. Hide All
  2. Show all
  1. Enumeration
  2. AnyRef
  3. Any
Visibility
  1. Public
  2. All

Type Members

  1. class Val extends Value

    A class implementing the

    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. def !=(arg0: AnyRef): Boolean

  2. def !=(arg0: Any): Boolean

    o != arg0 is the same as !(o == (arg0)).

  3. def ##(): Int

  4. def $asInstanceOf[T0](): T0

  5. def $isInstanceOf[T0](): Boolean

  6. def ==(arg0: AnyRef): Boolean

    o == arg0 is the same as if (o eq null) arg0 eq null else o.equals(arg0).

  7. def ==(arg0: Any): Boolean

    o == arg0 is the same as o.equals(arg0).

  8. val MultiInterval: Value

  9. val Single: Value

  10. val SingleInterval: Value

  11. def Value(i: Int, name: String): Value

    Creates a fresh value, part of this enumeration, called name and identified by the integer i .

  12. def Value(name: String): Value

    Creates a fresh value, part of this enumeration, called name .

  13. def Value(i: Int): Value

    Creates a fresh value, part of this enumeration, identified by the integer i .

  14. def Value: Value

    Creates a fresh value, part of this enumeration .

  15. object ValueSet extends AnyRef

    A factory object for value sets

  16. def apply(x: Int): Value

    The value of this enumeration with given id x

  17. def asInstanceOf[T0]: T0

    This method is used to cast the receiver object to be of type T0.

  18. def clone(): AnyRef

    This method creates and returns a copy of the receiver object .

  19. def eq(arg0: AnyRef): Boolean

    This method is used to test whether the argument (arg0) is a reference to the receiver object (this).

  20. def equals(arg0: Any): Boolean

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

  21. 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 .

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

    Returns all values of this enumeration that satisfy the predicate p .

  23. def finalize(): Unit

    This method is called by the garbage collector on the receiver object when garbage collection determines that there are no more references to the object .

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

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

  25. 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 .

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

    Apply a function f to all values of this enumeration .

  27. def getClass(): java.lang.Class[_ <: java.lang.Object]

    Returns a representation that corresponds to the dynamic class of the receiver object .

  28. def hashCode(): Int

    Returns a hash code value for the object .

  29. def isInstanceOf[T0]: Boolean

    This method is used to test whether the dynamic type of the receiver object is T0.

  30. def iterator: Iterator[Value]

    A new iterator over all values of this enumeration .

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

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

  32. def maxId: Int

    The highest integer amongst those used to identify values in this enumeration .

  33. def name: String

    The name of this enumeration .

  34. def ne(arg0: AnyRef): Boolean

    o.ne(arg0) is the same as !(o.eq(arg0)).

  35. var nextId: Int

    The integer to use to identify the next created value .

  36. var nextName: Iterator[String]

    The string to use to name the next created value .

  37. def notify(): Unit

    Wakes up a single thread that is waiting on the receiver object's monitor .

  38. def notifyAll(): Unit

    Wakes up all threads that are waiting on the receiver object's monitor .

  39. def readResolve(): AnyRef

  40. def synchronized[T0](arg0: T0): T0

  41. def toString(): String

    The name of this enumeration .

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

  43. def values: ValueSet

    The values of this enumeration as a set .

  44. def wait(): Unit

  45. def wait(arg0: Long, arg1: Int): Unit

  46. def wait(arg0: Long): Unit

  47. def withName(s: String): Value

    Returns a Value from this Enumeration whose name matches the argument s .