java.lang.Object
java.lang.Enum<Selectable.Action>
de.bernd_michaely.common.desktop.fx.collections.selection.Selectable.Action
All Implemented Interfaces:
Serializable, Comparable<Selectable.Action>, Constable
Enclosing interface:
Selectable

public static enum Selectable.Action extends Enum<Selectable.Action>
Enum to describe selection related actions.
  • Enum Constant Details

    • SELECTION_SET

      public static final Selectable.Action SELECTION_SET
      Set selection status to true.
    • SELECTION_UNSET

      public static final Selectable.Action SELECTION_UNSET
      Set selection status to false.
    • SELECTION_TOGGLE

      public static final Selectable.Action SELECTION_TOGGLE
      Invert selection status.
  • Method Details

    • values

      public static Selectable.Action[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Selectable.Action valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null