public static enum Parser.MethodDeclarationContext extends Enum<Parser.MethodDeclarationContext>
| Enum Constant and Description |
|---|
ANNOTATION_TYPE_DECLARATION
Annotation type method declaration.
|
CLASS_DECLARATION
Class method declaration.
|
INTERFACE_DECLARATION
Interface method declaration.
|
| Modifier and Type | Method and Description |
|---|---|
static Parser.MethodDeclarationContext |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Parser.MethodDeclarationContext[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Parser.MethodDeclarationContext CLASS_DECLARATION
public static final Parser.MethodDeclarationContext INTERFACE_DECLARATION
public static final Parser.MethodDeclarationContext ANNOTATION_TYPE_DECLARATION
public static Parser.MethodDeclarationContext[] values()
for (Parser.MethodDeclarationContext c : Parser.MethodDeclarationContext.values()) System.out.println(c);
public static Parser.MethodDeclarationContext 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 © 2022. All rights reserved.