Enum Class ListView.ItemStyle

java.lang.Object
java.lang.Enum<ListView.ItemStyle>
org.springframework.shell.component.view.control.ListView.ItemStyle
All Implemented Interfaces:
Serializable, Comparable<ListView.ItemStyle>, Constable
Enclosing class:
ListView<T>

public static enum ListView.ItemStyle extends Enum<ListView.ItemStyle>
Specifies how a item shows selection state.
  • Enum Constant Details

    • NOCHECK

      public static final ListView.ItemStyle NOCHECK
      The item will be shown normally, with no check indicator. The default.
    • CHECKED

      public static final ListView.ItemStyle CHECKED
      The item will indicate checked/un-checked state.
    • RADIO

      public static final ListView.ItemStyle RADIO
      The item is part of a radio group and will indicate selected state.
  • Method Details

    • values

      public static ListView.ItemStyle[] 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 ListView.ItemStyle 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