public enum ExecutableKind extends Enum<ExecutableKind> implements DeclarationKind
Enum Constant and Description |
---|
ANNOTATION_ELEMENT
Annotation elements.
|
CONSTRUCTOR
Constructors.
|
METHOD
Regular methods (not
annotation elements ). |
Modifier and Type | Method and Description |
---|---|
static ExecutableKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecutableKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutableKind CONSTRUCTOR
public static final ExecutableKind METHOD
annotation elements
).public static final ExecutableKind ANNOTATION_ELEMENT
public static ExecutableKind[] values()
for (ExecutableKind c : ExecutableKind.values()) System.out.println(c);
public static ExecutableKind 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 © 2011–2019 Asakusa Framework Team. All rights reserved.