Enum Constant and Description |
---|
ANNOTATION |
ARGUMENT |
COMPILATION_UNIT |
FIELD |
INITIALIZER |
LOCAL |
METHOD |
STATEMENT |
TYPE |
Modifier and Type | Method and Description |
---|---|
static AST.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AST.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AST.Kind COMPILATION_UNIT
public static final AST.Kind TYPE
public static final AST.Kind FIELD
public static final AST.Kind INITIALIZER
public static final AST.Kind METHOD
public static final AST.Kind ANNOTATION
public static final AST.Kind ARGUMENT
public static final AST.Kind LOCAL
public static final AST.Kind STATEMENT
public static AST.Kind[] values()
for (AST.Kind c : AST.Kind.values()) System.out.println(c);
public static AST.Kind 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 © 2009-2015 The Project Lombok Authors, licensed under the MIT licence.