public enum ParameterSetMode extends Enum<ParameterSetMode>
Enum Constant and Description |
---|
FIELDACCESS
Parameter value set by directly accessing the parameter field.
|
SETTERMETHOD
Parameter value set with the appropriate setter method.
|
Modifier and Type | Method and Description |
---|---|
static ParameterSetMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParameterSetMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParameterSetMode SETTERMETHOD
public static final ParameterSetMode FIELDACCESS
public static ParameterSetMode[] values()
for (ParameterSetMode c : ParameterSetMode.values()) System.out.println(c);
public static ParameterSetMode 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 null