public enum MultiSelectionProcessing extends java.lang.Enum<MultiSelectionProcessing>
CardSelectionRequest
list.Enum Constant and Description |
---|
FIRST_MATCH
The selection process stops as soon as a selection case is successful.
|
PROCESS_ALL
The selection process performs all the selection cases provided in the Set of CardRequest.
|
Modifier and Type | Method and Description |
---|---|
static MultiSelectionProcessing |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MultiSelectionProcessing[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MultiSelectionProcessing FIRST_MATCH
public static final MultiSelectionProcessing PROCESS_ALL
public static MultiSelectionProcessing[] values()
for (MultiSelectionProcessing c : MultiSelectionProcessing.values()) System.out.println(c);
public static MultiSelectionProcessing valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null