public static enum ParameterAccessor.ParamerterDisposition extends java.lang.Enum<ParameterAccessor.ParamerterDisposition>
Extending this enum should not introduce any problems in ParameterAccessor.
| Enum Constant and Description |
|---|
NEW |
PARAM
Parameter is a regular parameter occurring in the Descriptor
|
RETURN
The return-value of a method (has to be crafted manually)
|
THIS
Parameter is an implicit this-pointer
|
| Modifier and Type | Method and Description |
|---|---|
static ParameterAccessor.ParamerterDisposition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ParameterAccessor.ParamerterDisposition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParameterAccessor.ParamerterDisposition THIS
public static final ParameterAccessor.ParamerterDisposition PARAM
public static final ParameterAccessor.ParamerterDisposition RETURN
public static final ParameterAccessor.ParamerterDisposition NEW
public static ParameterAccessor.ParamerterDisposition[] values()
for (ParameterAccessor.ParamerterDisposition c : ParameterAccessor.ParamerterDisposition.values()) System.out.println(c);
public static ParameterAccessor.ParamerterDisposition 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