A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  
getCharErrorDisplay(c) — Method in class org.antlr.runtime.Lexer
getChild(i) — Method in class org.antlr.runtime.tree.BaseTree
getChild(t, i) — Method in class org.antlr.runtime.tree.BaseTreeAdaptor
getChild(t, i) — Method in class org.antlr.runtime.tree.CommonTreeAdaptor
getChild(i) — Method in interface org.antlr.runtime.tree.Tree
getChild(t, i) — Method in interface org.antlr.runtime.tree.TreeAdaptor
Get a child 0..n-1 node
getChildCount(t) — Method in class org.antlr.runtime.tree.BaseTreeAdaptor
getChildCount(t) — Method in class org.antlr.runtime.tree.CommonTreeAdaptor
getChildCount(t) — Method in interface org.antlr.runtime.tree.TreeAdaptor
How many children? If 0, then this is a leaf node
getChildIndex(t) — Method in class org.antlr.runtime.tree.BaseTreeAdaptor
getChildIndex(t) — Method in class org.antlr.runtime.tree.CommonTreeAdaptor
getChildIndex(t) — Method in interface org.antlr.runtime.tree.TreeAdaptor
What index is this node in the child list? Range: 0..n-1 If your node type doesn't handle this, it's ok but the tree rewrites in tree parsers need this functionality.
getCurrentInputSymbol(input:org.antlr.runtime:IntStream) — Method in class org.antlr.runtime.BaseRecognizer
Match needs to return the current input symbol, which gets put into the label for the associated token ref; e.g., x=ID.
getCurrentInputSymbol(input:org.antlr.runtime:IntStream) — Method in class org.antlr.runtime.Parser
getCurrentInputSymbol(input:org.antlr.runtime:IntStream) — Method in class org.antlr.runtime.tree.TreeParser
getErrorHeader(e:org.antlr.runtime:RecognitionException) — Method in class org.antlr.runtime.BaseRecognizer
What is the error header, normally line/character position information?
getErrorHeader(e:org.antlr.runtime:RecognitionException) — Method in class org.antlr.runtime.tree.TreeParser
Prefix error message with the grammar name because message is always intended for the programmer because the parser built the input tree not the user.
getErrorMessage(e:org.antlr.runtime:RecognitionException, tokenNames) — Method in class org.antlr.runtime.BaseRecognizer
What error message should be generated for the various exception types? Not very object-oriented code, but I like having all error message generation within one method rather than spread among all of the exception classes.
getErrorMessage(e:org.antlr.runtime:RecognitionException, tokenNames) — Method in class org.antlr.runtime.Lexer
getErrorMessage(e:org.antlr.runtime:RecognitionException, tokenNames) — Method in class org.antlr.runtime.tree.TreeParser
Tree parsers parse nodes they usually have a token object as payload.
getFirstChildWithType(type) — Method in class org.antlr.runtime.tree.BaseTree
getKindOfOps(rewrites, kind, before) — Method in class org.antlr.runtime.TokenRewriteStream
Get all operations before an index of a particular kind
getLastRewriteTokenIndex(programName) — Method in class org.antlr.runtime.TokenRewriteStream
getMessage() — Method in class org.antlr.runtime.tree.RewriteCardinalityException
getMissingSymbol(input:org.antlr.runtime:IntStream, e:org.antlr.runtime:RecognitionException, expectedTokenType, follow:org.antlr.runtime:BitSet) — Method in class org.antlr.runtime.BaseRecognizer
Conjure up a missing token during error recovery.
getMissingSymbol(input:org.antlr.runtime:IntStream, e:org.antlr.runtime:RecognitionException, expectedTokenType, follow:org.antlr.runtime:BitSet) — Method in class org.antlr.runtime.Parser
getMissingSymbol(input:org.antlr.runtime:IntStream, e:org.antlr.runtime:RecognitionException, expectedTokenType, follow:org.antlr.runtime:BitSet) — Method in class org.antlr.runtime.tree.TreeParser
getNode(i) — Method in class org.antlr.runtime.tree.CommonTreeNodeStream
getNode(i) — Method in interface org.antlr.runtime.tree.TreeNodeStream
Get a tree node at an absolute index i; 0..n-1.
getNodeIndex(node) — Method in class org.antlr.runtime.tree.CommonTreeNodeStream
What is the stream index for node? 0..n-1 Return -1 if node not found.
getParent(t) — Method in class org.antlr.runtime.tree.BaseTreeAdaptor
getParent(t) — Method in class org.antlr.runtime.tree.CommonTreeAdaptor
getParent(t) — Method in interface org.antlr.runtime.tree.TreeAdaptor
Who is the parent node of this node; if null, implies node is root.
getProgram(name) — Method in class org.antlr.runtime.TokenRewriteStream
getRuleMemoization(ruleIndex, ruleStartIndex) — Method in class org.antlr.runtime.BaseRecognizer
Given a rule number and a start token index number, return MEMO_RULE_UNKNOWN if the rule has not parsed input starting from start index.
getRuleMemoizationCacheSize() — Method in class org.antlr.runtime.BaseRecognizer
return how many rule/input-index pairs there are in total.
getText(t) — Method in class org.antlr.runtime.tree.BaseTreeAdaptor
getText() — Method in class org.antlr.runtime.tree.CommonErrorNode
getText(t) — Method in class org.antlr.runtime.tree.CommonTreeAdaptor
getText(t) — Method in interface org.antlr.runtime.tree.TreeAdaptor
getToken(i) — Method in class org.antlr.runtime.CommonTokenStream
Return absolute token i; ignore which channel the tokens are on; that is, count all tokens not just on-channel tokens.
getToken(i) — Method in interface org.antlr.runtime.TokenStream
Get a token at an absolute index i; 0..n-1.
getToken(t) — Method in class org.antlr.runtime.tree.BaseTreeAdaptor
getToken(t) — Method in class org.antlr.runtime.tree.CommonTreeAdaptor
What is the Token associated with this node? If you are not using CommonTree, then you must override this in your own adaptor.
getToken(t) — Method in interface org.antlr.runtime.tree.TreeAdaptor
Return the token object from which this node was created.
getTokenErrorDisplay(t:org.antlr.runtime:Token) — Method in class org.antlr.runtime.BaseRecognizer
How should a token be displayed in an error message? The default is to display just the text, but during development you might want to have a lot of information spit out.
getTokens() — Method in class org.antlr.runtime.CommonTokenStream
getTokensArray(start, stop, types) — Method in class org.antlr.runtime.CommonTokenStream
getTokensBitSet(start, stop, types:org.antlr.runtime:BitSet) — Method in class org.antlr.runtime.CommonTokenStream
Given a start and stop index, return a List of all tokens in the token type BitSet.
getTokensInt(start, stop, ttype) — Method in class org.antlr.runtime.CommonTokenStream
getTokensRange(start, stop) — Method in class org.antlr.runtime.CommonTokenStream
getTokenStartIndex(t) — Method in class org.antlr.runtime.tree.BaseTreeAdaptor
getTokenStartIndex(t) — Method in class org.antlr.runtime.tree.CommonTreeAdaptor
getTokenStartIndex(t) — Method in interface org.antlr.runtime.tree.TreeAdaptor
Get the token start index for this subtree; return -1 if no such index
getTokenStopIndex(t) — Method in class org.antlr.runtime.tree.BaseTreeAdaptor
getTokenStopIndex(t) — Method in class org.antlr.runtime.tree.CommonTreeAdaptor
getTokenStopIndex(t) — Method in interface org.antlr.runtime.tree.TreeAdaptor
Get the token stop index for this subtree; return -1 if no such index
getType(t) — Method in class org.antlr.runtime.tree.BaseTreeAdaptor
getType() — Method in class org.antlr.runtime.tree.CommonErrorNode
getType(t) — Method in class org.antlr.runtime.tree.CommonTreeAdaptor
getType(t) — Method in interface org.antlr.runtime.tree.TreeAdaptor
For tree parsing, I need to know the token type of a node
getUniqueID(node) — Method in class org.antlr.runtime.tree.BaseTreeAdaptor
getUniqueID(node) — Method in interface org.antlr.runtime.tree.TreeAdaptor
For identifying trees.
grammarDecisionDescription — Property in class org.antlr.runtime.NoViableAltException
grammarFileName — Property in class org.antlr.runtime.BaseRecognizer
For debugging and other purposes, might want the grammar name.
growToInclude(bit) — Method in class org.antlr.runtime.BitSet
Grows the set to a larger number of bits.
A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z