scala.swing.FileChooser

SelectionMode

object SelectionMode extends Enumeration

The kind of elements a user can select in a file dialog.

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 DirectoriesOnly: Value

  2. val FilesAndDirectories: Value

  3. val FilesOnly: Value

  4. object ValueSet extends AnyRef

    A factory object for value sets

  5. def equals(arg0: Any): Boolean

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

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

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

    Returns all values of this enumeration that satisfy the predicate p

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

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

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

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

    Apply a function f to all values of this enumeration

  11. def hashCode(): Int

    Returns a hash code value for the object

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

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

  13. def name: String

    The name of this enumeration

  14. def toString(): String

    The name of this enumeration

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

  16. def values: ValueSet

    The values of this enumeration as a set