Enum Class MultiselectOptionType

java.lang.Object
java.lang.Enum<MultiselectOptionType>
com.evolveum.midpoint.xml.ns._public.common.common_3.MultiselectOptionType
All Implemented Interfaces:
TypeSafeEnum, Serializable, Comparable<MultiselectOptionType>, Constable

public enum MultiselectOptionType extends Enum<MultiselectOptionType> implements TypeSafeEnum
Defines the possibility to select multiple items.
  • Enum Constant Details

    • SELECT_ALL

      public static final MultiselectOptionType SELECT_ALL
      Gives the possibility to select all items at once.
    • SELECT_INDIVIDUAL_ITEMS

      public static final MultiselectOptionType SELECT_INDIVIDUAL_ITEMS
      Gives the possibility to select individual items without possibility to select all at once.
    • NO_SELECT

      public static final MultiselectOptionType NO_SELECT
      No possibility to select any items.
  • Method Details

    • values

      public static MultiselectOptionType[] 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 MultiselectOptionType 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
    • value

      public String value()
      Description copied from interface: TypeSafeEnum
      Returns enum value defined as in schema.
      Specified by:
      value in interface TypeSafeEnum
      Returns:
    • fromValue

      public static MultiselectOptionType fromValue(String v)