public enum ItemChoiceSelectionType extends Enum<ItemChoiceSelectionType>
ItemChoice
Enum Constant and Description |
---|
CHOOSE_MULTIPLE
The customer can choose multiple of the specified target items.
|
CHOOSE_ONE
The customer can only choose one of the specified target items.
|
Modifier and Type | Method and Description |
---|---|
static ItemChoiceSelectionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ItemChoiceSelectionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ItemChoiceSelectionType CHOOSE_ONE
public static final ItemChoiceSelectionType CHOOSE_MULTIPLE
public static ItemChoiceSelectionType[] values()
for (ItemChoiceSelectionType c : ItemChoiceSelectionType.values()) System.out.println(c);
public static ItemChoiceSelectionType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2021. All rights reserved.