public static enum ParameterAccessor.BasedOn extends java.lang.Enum<ParameterAccessor.BasedOn>
If this enum is extended many functions will throw if not also extended.
| 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(java.lang.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(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