Interface DelpParserConstants
- All Known Implementing Classes:
DelpParser
,DelpParserTokenManager
public interface DelpParserConstants
This interface defines constants used by the `DelpParser` for token
identification and lexical states. These constants are generated by JavaCC
and represent the various tokens and lexical states used during parsing.
The interface includes both integer constants for token IDs and a corresponding array of literal token values for easier reference and debugging.
Note: This file is generated by JavaCC and should not be modified manually.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
Default lexical state.static final int
End of File (EOF) token ID.static final int
RegularExpression ID for a name token.static final int
RegularExpression ID for a quoted string token.static final String[]
Literal token values for easy reference.
-
Field Details
-
EOF
static final int EOFEnd of File (EOF) token ID.- See Also:
-
NAME
static final int NAMERegularExpression ID for a name token.- See Also:
-
QUOTED
static final int QUOTEDRegularExpression ID for a quoted string token.- See Also:
-
DEFAULT
static final int DEFAULTDefault lexical state.- See Also:
-
tokenImage
Literal token values for easy reference.
-