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