Package org.antlr.v4.runtime.tree.xpath
Class XPathLexer
- java.lang.Object
-
- org.antlr.v4.runtime.Recognizer<Integer,LexerATNSimulator>
-
- org.antlr.v4.runtime.Lexer
-
- org.antlr.v4.runtime.tree.xpath.XPathLexer
-
- All Implemented Interfaces:
TokenSource
public class XPathLexer extends Lexer
Mimic the old XPathLexer from .g4 file
-
-
Field Summary
Fields Modifier and Type Field Description static intANYWHEREstatic intBANGprotected intcharPositionInLinestatic intIDprotected intlinestatic String[]modeNamesstatic intROOTstatic intRULE_REFstatic String[]ruleNamesstatic intSTRINGstatic intTOKEN_REFstatic String[]tokenNamesDeprecated.UseVOCABULARYinstead.static VocabularyVOCABULARYstatic intWILDCARD-
Fields inherited from class org.antlr.v4.runtime.Lexer
_channel, _factory, _hitEOF, _input, _mode, _modeStack, _text, _token, _tokenFactorySourcePair, _tokenStartCharIndex, _tokenStartCharPositionInLine, _tokenStartLine, _type, DEFAULT_MODE, DEFAULT_TOKEN_CHANNEL, HIDDEN, MAX_CHAR_VALUE, MIN_CHAR_VALUE, MORE, SKIP
-
Fields inherited from class org.antlr.v4.runtime.Recognizer
_interp, EOF
-
-
Constructor Summary
Constructors Constructor Description XPathLexer(CharStream input)
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidconsume()ATNgetATN()Get theATNused by the recognizer for prediction.intgetCharPositionInLine()Get the index into the current line for the current position in the input stream.StringgetGrammarFileName()For debugging and other purposes, might want the grammar name.String[]getModeNames()String[]getRuleNames()String[]getTokenNames()Deprecated.VocabularygetVocabulary()Get the vocabulary used by the recognizer.booleanisNameChar(int c)booleanisNameStartChar(int c)StringmatchID()StringmatchString()TokennextToken()Return a token from this source; i.e., match a token on the char stream.-
Methods inherited from class org.antlr.v4.runtime.Lexer
emit, emit, emitEOF, getAllTokens, getChannel, getChannelNames, getCharErrorDisplay, getCharIndex, getErrorDisplay, getErrorDisplay, getInputStream, getLine, getSourceName, getText, getToken, getTokenFactory, getType, mode, more, notifyListeners, popMode, pushMode, recover, recover, reset, setChannel, setCharPositionInLine, setInputStream, setLine, setText, setToken, setTokenFactory, setType, skip
-
Methods inherited from class org.antlr.v4.runtime.Recognizer
action, addErrorListener, getErrorHeader, getErrorListenerDispatch, getErrorListeners, getInterpreter, getParseInfo, getRuleIndexMap, getSerializedATN, getState, getTokenErrorDisplay, getTokenType, getTokenTypeMap, precpred, removeErrorListener, removeErrorListeners, sempred, setInterpreter, setState
-
-
-
-
Field Detail
-
TOKEN_REF
public static final int TOKEN_REF
- See Also:
- Constant Field Values
-
RULE_REF
public static final int RULE_REF
- See Also:
- Constant Field Values
-
ANYWHERE
public static final int ANYWHERE
- See Also:
- Constant Field Values
-
ROOT
public static final int ROOT
- See Also:
- Constant Field Values
-
WILDCARD
public static final int WILDCARD
- See Also:
- Constant Field Values
-
BANG
public static final int BANG
- See Also:
- Constant Field Values
-
ID
public static final int ID
- See Also:
- Constant Field Values
-
STRING
public static final int STRING
- See Also:
- Constant Field Values
-
modeNames
public static final String[] modeNames
-
ruleNames
public static final String[] ruleNames
-
VOCABULARY
public static final Vocabulary VOCABULARY
-
tokenNames
@Deprecated public static final String[] tokenNames
Deprecated.UseVOCABULARYinstead.
-
line
protected int line
-
charPositionInLine
protected int charPositionInLine
-
-
Constructor Detail
-
XPathLexer
public XPathLexer(CharStream input)
-
-
Method Detail
-
getGrammarFileName
public String getGrammarFileName()
Description copied from class:RecognizerFor debugging and other purposes, might want the grammar name. Have ANTLR generate an implementation for this method.- Specified by:
getGrammarFileNamein classRecognizer<Integer,LexerATNSimulator>
-
getRuleNames
public String[] getRuleNames()
- Specified by:
getRuleNamesin classRecognizer<Integer,LexerATNSimulator>
-
getModeNames
public String[] getModeNames()
- Overrides:
getModeNamesin classLexer
-
getTokenNames
@Deprecated public String[] getTokenNames()
Deprecated.Description copied from class:LexerUsed to print out token names like ID during debugging and error reporting. The generated parsers implement a method that overrides this to point to their String[] tokenNames.- Overrides:
getTokenNamesin classLexer
-
getVocabulary
public Vocabulary getVocabulary()
Description copied from class:RecognizerGet the vocabulary used by the recognizer.- Overrides:
getVocabularyin classRecognizer<Integer,LexerATNSimulator>- Returns:
- A
Vocabularyinstance providing information about the vocabulary used by the grammar.
-
getATN
public ATN getATN()
Description copied from class:RecognizerGet theATNused by the recognizer for prediction.- Specified by:
getATNin classRecognizer<Integer,LexerATNSimulator>- Returns:
- The
ATNused by the recognizer for prediction.
-
nextToken
public Token nextToken()
Description copied from class:LexerReturn a token from this source; i.e., match a token on the char stream.- Specified by:
nextTokenin interfaceTokenSource- Overrides:
nextTokenin classLexer
-
consume
public void consume()
-
getCharPositionInLine
public int getCharPositionInLine()
Description copied from interface:TokenSourceGet the index into the current line for the current position in the input stream. The first character on a line has position 0.- Specified by:
getCharPositionInLinein interfaceTokenSource- Overrides:
getCharPositionInLinein classLexer- Returns:
- The line number for the current position in the input stream, or -1 if the current token source does not track character positions.
-
matchID
public String matchID()
-
matchString
public String matchString()
-
isNameChar
public boolean isNameChar(int c)
-
isNameStartChar
public boolean isNameStartChar(int c)
-
-