public static enum Parser.InterfaceDeclarationContext extends Enum<Parser.InterfaceDeclarationContext>
| Enum Constant and Description |
|---|
COMPILATION_UNIT
The interface declaration appears at the top level.
|
NAMED_TYPE_DECLARATION
The interface declaration appears (directly) inside a 'named type declaration'.
|
| Modifier and Type | Method and Description |
|---|---|
static Parser.InterfaceDeclarationContext |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Parser.InterfaceDeclarationContext[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Parser.InterfaceDeclarationContext NAMED_TYPE_DECLARATION
public static final Parser.InterfaceDeclarationContext COMPILATION_UNIT
public static Parser.InterfaceDeclarationContext[] values()
for (Parser.InterfaceDeclarationContext c : Parser.InterfaceDeclarationContext.values()) System.out.println(c);
public static Parser.InterfaceDeclarationContext 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 null