Package examples.testudtlib
Enum WhiteSpace.RuleNames
- java.lang.Object
-
- java.lang.Enum<WhiteSpace.RuleNames>
-
- examples.testudtlib.WhiteSpace.RuleNames
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<WhiteSpace.RuleNames>
- Enclosing class:
- WhiteSpace
public static enum WhiteSpace.RuleNames extends java.lang.Enum<WhiteSpace.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.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANY
id =7
, name ="any"
COMMENT
id =6
, name ="comment"
CR
id =10
, name ="CR"
CRLF
id =11
, name ="CRLF"
F_SP
id =5
, name ="F-SP"
FWSP
id =2
, name ="FWSP"
FWSP_COMMENT
id =0
, name ="FWSP-COMMENT"
LF
id =9
, name ="LF"
OWSP
id =3
, name ="OWSP"
SP
id =8
, name ="SP"
WSP
id =4
, name ="WSP"
WSP_COMMENT
id =1
, name ="WSP-COMMENT"
-
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 WhiteSpace.RuleNames
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static WhiteSpace.RuleNames[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ANY
public static final WhiteSpace.RuleNames ANY
id =7
, name ="any"
-
COMMENT
public static final WhiteSpace.RuleNames COMMENT
id =6
, name ="comment"
-
CR
public static final WhiteSpace.RuleNames CR
id =10
, name ="CR"
-
CRLF
public static final WhiteSpace.RuleNames CRLF
id =11
, name ="CRLF"
-
F_SP
public static final WhiteSpace.RuleNames F_SP
id =5
, name ="F-SP"
-
FWSP
public static final WhiteSpace.RuleNames FWSP
id =2
, name ="FWSP"
-
FWSP_COMMENT
public static final WhiteSpace.RuleNames FWSP_COMMENT
id =0
, name ="FWSP-COMMENT"
-
LF
public static final WhiteSpace.RuleNames LF
id =9
, name ="LF"
-
OWSP
public static final WhiteSpace.RuleNames OWSP
id =3
, name ="OWSP"
-
SP
public static final WhiteSpace.RuleNames SP
id =8
, name ="SP"
-
WSP
public static final WhiteSpace.RuleNames WSP
id =4
, name ="WSP"
-
WSP_COMMENT
public static final WhiteSpace.RuleNames WSP_COMMENT
id =1
, name ="WSP-COMMENT"
-
-
Method Detail
-
values
public static WhiteSpace.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 (WhiteSpace.RuleNames c : WhiteSpace.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 WhiteSpace.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.
-
-