| Enum Constant and Description |
|---|
ANNOTATED
Applies to any
AnnotatedNode |
CONSTRUCTOR
Applies to a
ConstructorNode |
FIELD
Applies to a given class field
|
LOCAL_VARIABLE
Applies to a
Variable |
METHOD
Applies to a given method
|
PACKAGE
Applies to a
PackageNode |
PARAMETER
Applies to a
Parameter |
TYPE
Applies to a given class
|
| Modifier and Type | Method and Description |
|---|---|
static Local.TO |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Local.TO[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Local.TO FIELD
public static final Local.TO TYPE
public static final Local.TO METHOD
public static final Local.TO CONSTRUCTOR
ConstructorNodepublic static final Local.TO PACKAGE
PackageNodepublic static final Local.TO ANNOTATED
AnnotatedNodepublic static Local.TO[] values()
for (Local.TO c : Local.TO.values()) System.out.println(c);
public static Local.TO 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