public static enum Symbol.Kind extends Enum<Symbol.Kind>
| Enum Constant and Description | 
|---|
| ALTERNATIVEnon-terminal to represent the union | 
| EXPLICIT_ACTIONnon-terminal action symbol which is explicitly consumed | 
| IMPLICIT_ACTIONnon-terminal action symbol which are automatically consumed | 
| REPEATERnon-terminal to represent the contents of an array or map | 
| ROOTStart symbol for some grammar | 
| SEQUENCEnon-terminal symbol which is a sequence of one or more other symbols | 
| TERMINALterminal symbols which have no productions | 
| Modifier and Type | Method and Description | 
|---|---|
| static Symbol.Kind | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static Symbol.Kind[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Symbol.Kind TERMINAL
public static final Symbol.Kind ROOT
public static final Symbol.Kind SEQUENCE
public static final Symbol.Kind REPEATER
public static final Symbol.Kind ALTERNATIVE
public static final Symbol.Kind IMPLICIT_ACTION
public static final Symbol.Kind EXPLICIT_ACTION
public static Symbol.Kind[] values()
for (Symbol.Kind c : Symbol.Kind.values()) System.out.println(c);
public static Symbol.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–2020 The Apache Software Foundation. All rights reserved.