Enum Class Tree.SelectionMode

java.lang.Object
java.lang.Enum<Tree.SelectionMode>
io.jmix.ui.component.Tree.SelectionMode
All Implemented Interfaces:
Serializable, Comparable<Tree.SelectionMode>, Constable
Enclosing interface:
Tree<E>

public static enum Tree.SelectionMode extends Enum<Tree.SelectionMode>
  • Enum Constant Details

    • SINGLE

      public static final Tree.SelectionMode SINGLE
      A SelectionMode that supports for only single rows to be selected at a time.
    • MULTI

      public static final Tree.SelectionMode MULTI
      A SelectionMode that supports multiple selections to be made.
    • NONE

      public static final Tree.SelectionMode NONE
      A SelectionMode that does not allow for rows to be selected.
  • Method Details

    • values

      public static Tree.SelectionMode[] 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 Tree.SelectionMode 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