public static enum ParameterKeyValue.OperationType extends Enum<ParameterKeyValue.OperationType>
| Enum Constant and Description |
|---|
REGISTER_OUT |
SET_NULL |
SET_PARAM |
| Modifier and Type | Method and Description |
|---|---|
static ParameterKeyValue.OperationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParameterKeyValue.OperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParameterKeyValue.OperationType SET_PARAM
public static final ParameterKeyValue.OperationType SET_NULL
public static final ParameterKeyValue.OperationType REGISTER_OUT
public static ParameterKeyValue.OperationType[] values()
for (ParameterKeyValue.OperationType c : ParameterKeyValue.OperationType.values()) System.out.println(c);
public static ParameterKeyValue.OperationType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017. All rights reserved.