public static enum MethodInvocation.HandleType extends java.lang.Enum<MethodInvocation.HandleType>
| Enum Constant and Description |
|---|
EXACT
An exact invocation without type adjustments.
|
REGULAR
A regular invocation with standard type adjustments.
|
| Modifier and Type | Field and Description |
|---|---|
private java.lang.String |
methodName
The name of the invoked method.
|
| Modifier and Type | Method and Description |
|---|---|
protected java.lang.String |
getMethodName()
Returns the name of the represented method.
|
static MethodInvocation.HandleType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MethodInvocation.HandleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MethodInvocation.HandleType EXACT
public static final MethodInvocation.HandleType REGULAR
public static MethodInvocation.HandleType[] values()
for (MethodInvocation.HandleType c : MethodInvocation.HandleType.values()) System.out.println(c);
public static MethodInvocation.HandleType 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 nullprotected java.lang.String getMethodName()