public enum ConflictStrategyEnum extends java.lang.Enum<ConflictStrategyEnum>
Enum Constant and Description |
---|
DEFAULT_CONFLICT_STRATEGY |
DEFAULT_CONFLICT_STRATEGY_OPT |
NO_CONFLICT_STRATEGY |
Modifier and Type | Method and Description |
---|---|
static ConflictStrategyEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConflictStrategyEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConflictStrategyEnum DEFAULT_CONFLICT_STRATEGY
public static final ConflictStrategyEnum DEFAULT_CONFLICT_STRATEGY_OPT
public static final ConflictStrategyEnum NO_CONFLICT_STRATEGY
public static ConflictStrategyEnum[] values()
for (ConflictStrategyEnum c : ConflictStrategyEnum.values()) System.out.println(c);
public static ConflictStrategyEnum 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