public static enum ParameterAccessor.ParamerterDisposition extends Enum<ParameterAccessor.ParamerterDisposition>
| 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(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(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 nullCopyright © 2015. All rights reserved.