Package examples.anbncn
Enum AnBnCn.RuleNames
- java.lang.Object
-
- java.lang.Enum<AnBnCn.RuleNames>
-
- examples.anbncn.AnBnCn.RuleNames
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<AnBnCn.RuleNames>
- Enclosing class:
- AnBnCn
public static enum AnBnCn.RuleNames extends java.lang.Enum<AnBnCn.RuleNames>
This enum provides easy to remember enum constants for locating the rule identifiers and names. The enum constants have the same spelling as the rule names rendered in all caps with underscores replacing hyphens.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
ruleID()
Associates the enum with an identifier for the grammar rule it represents.java.lang.String
ruleName()
Associates the enum with the original grammar name of the rule it represents.static AnBnCn.RuleNames
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AnBnCn.RuleNames[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
A
public static final AnBnCn.RuleNames A
id =5
, name ="A"
-
ANBN
public static final AnBnCn.RuleNames ANBN
id =3
, name ="AnBn"
-
ANBNCN
public static final AnBnCn.RuleNames ANBNCN
id =0
, name ="AnBnCn"
-
B
public static final AnBnCn.RuleNames B
id =6
, name ="B"
-
BNCN
public static final AnBnCn.RuleNames BNCN
id =4
, name ="BnCn"
-
C
public static final AnBnCn.RuleNames C
id =7
, name ="C"
-
CONSUMEAS
public static final AnBnCn.RuleNames CONSUMEAS
id =2
, name ="ConsumeAs"
-
PREFIX
public static final AnBnCn.RuleNames PREFIX
id =1
, name ="Prefix"
-
-
Method Detail
-
values
public static AnBnCn.RuleNames[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AnBnCn.RuleNames c : AnBnCn.RuleNames.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AnBnCn.RuleNames valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
ruleName
public java.lang.String ruleName()
Associates the enum with the original grammar name of the rule it represents.- Returns:
- the original grammar rule name.
-
ruleID
public int ruleID()
Associates the enum with an identifier for the grammar rule it represents.- Returns:
- the rule name identifier.
-
-