Enum Constant and Description |
---|
FORCE
Use: setting method of custom param force set values
|
ORIGINAL
Use: setting method of custom param keeping the original values
|
RESET
Use: setting method of custom param reset values
|
UNSET |
Modifier and Type | Method and Description |
---|---|
static C.PARAM |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static C.PARAM[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final C.PARAM ORIGINAL
public static final C.PARAM RESET
public static final C.PARAM FORCE
public static C.PARAM[] values()
for (C.PARAM c : C.PARAM.values()) System.out.println(c);
public static C.PARAM 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