public static enum ParameterAccessor.BasedOn extends Enum<ParameterAccessor.BasedOn>
Enum Constant and Description |
---|
IMETHOD
ParameterAccessor was constructed using an IMethod
|
METHOD_REFERENCE
ParameterAccessor was constructed using a MethodReference
|
Modifier and Type | Method and Description |
---|---|
static ParameterAccessor.BasedOn |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParameterAccessor.BasedOn[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParameterAccessor.BasedOn IMETHOD
public static final ParameterAccessor.BasedOn METHOD_REFERENCE
public static ParameterAccessor.BasedOn[] values()
for (ParameterAccessor.BasedOn c : ParameterAccessor.BasedOn.values()) System.out.println(c);
public static ParameterAccessor.BasedOn 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