public enum MultiValueDecisionType extends java.lang.Enum<MultiValueDecisionType>
Enum Constant and Description |
---|
KEEP_ALL
keep all values; concatenate them with ;
|
KEEP_NONE
keep no value, delete the tag
|
KEEP_ONE
keep exactly one values
|
SUM_ALL_NUMERIC
sum all numeric values; only available for a few keys (eg: capacity)
|
UNDECIDED
not yet decided
|
Modifier and Type | Method and Description |
---|---|
static MultiValueDecisionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MultiValueDecisionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MultiValueDecisionType UNDECIDED
public static final MultiValueDecisionType KEEP_ONE
public static final MultiValueDecisionType SUM_ALL_NUMERIC
public static final MultiValueDecisionType KEEP_NONE
public static final MultiValueDecisionType KEEP_ALL
public static MultiValueDecisionType[] values()
for (MultiValueDecisionType c : MultiValueDecisionType.values()) System.out.println(c);
public static MultiValueDecisionType 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