Uses of Class
org.codehaus.mojo.natives.parser.AbstractParserState
-
Packages that use AbstractParserState Package Description org.codehaus.mojo.natives.parser -
-
Uses of AbstractParserState in org.codehaus.mojo.natives.parser
Subclasses of AbstractParserState in org.codehaus.mojo.natives.parser Modifier and Type Class Description classBranchStateclassCaseInsensitiveLetterStateThis parser state checks consumed characters against a specific character (case insensitive).classFilenameStateclassLetterStateThis parser state checks consumed characters against a specific character.classPostEclassWhitespaceOrCaseInsensitiveLetterStateThis parser state checks consumed characters against a specific character (case insensitive) or whitespace.classWhitespaceOrLetterStateThis parser state checks consumed characters against a specific character or whitespace.Methods in org.codehaus.mojo.natives.parser that return AbstractParserState Modifier and Type Method Description abstract AbstractParserStateAbstractParserState. consume(char ch)Consume a characterAbstractParserStateBranchState. consume(char ch)AbstractParserStateCaseInsensitiveLetterState. consume(char ch)Consumes a character and returns the next state for the parser.AbstractParserStateFilenameState. consume(char ch)AbstractParserStateLetterState. consume(char ch)Consumes a character and returns the next state for the parser.AbstractParserStatePostE. consume(char ch)AbstractParserStateWhitespaceOrCaseInsensitiveLetterState. consume(char ch)Consumes a character and returns the next state for the parser.AbstractParserStateWhitespaceOrLetterState. consume(char ch)Consumes a character and returns the next state for the parser.abstract AbstractParserStateAbstractParser. getNewLineState()AbstractParserStateCParser. getNewLineState()AbstractParserStateFortranParser. getNewLineState()Get the state for the beginning of a new line.protected AbstractParserStateBranchState. getNoMatchState()Constructors in org.codehaus.mojo.natives.parser with parameters of type AbstractParserState Constructor Description BranchState(AbstractParser parser, char[] branchChars, AbstractParserState[] branchStates, AbstractParserState noMatchState)CaseInsensitiveLetterState(AbstractParser parser, char matchLetter, AbstractParserState nextStateArg, AbstractParserState noMatchStateArg)Constructor.LetterState(AbstractParser parser, char matchLetter, AbstractParserState nextStateArg, AbstractParserState noMatchStateArg)Constructor.PostE(CParser parser, AbstractParserState bracket, AbstractParserState quote)WhitespaceOrCaseInsensitiveLetterState(AbstractParser parser, char matchLetter, AbstractParserState nextStateArg)Constructor.WhitespaceOrLetterState(AbstractParser parser, char matchLetter, AbstractParserState nextStateArg)Constructor.
-