private static enum Parser.ParamContext extends java.lang.Enum<Parser.ParamContext>
| Enum Constant and Description |
|---|
IMPLEMENTATION |
SIGNATURE |
TYPE_EXPRESSION |
| Modifier and Type | Method and Description |
|---|---|
static Parser.ParamContext |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Parser.ParamContext[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Parser.ParamContext IMPLEMENTATION
public static final Parser.ParamContext SIGNATURE
public static final Parser.ParamContext TYPE_EXPRESSION
public static Parser.ParamContext[] values()
for (Parser.ParamContext c : Parser.ParamContext.values()) System.out.println(c);
public static Parser.ParamContext 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