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.Fields in org.codehaus.mojo.natives.parser declared as AbstractParserState Modifier and Type Field Description private AbstractParserStatePostE. bracketprivate AbstractParserState[]BranchState. branchStatesprivate AbstractParserStateCParser. newLineStateprivate AbstractParserStateFortranParser. newLineStateState that starts consuming content at the beginning of a line.private AbstractParserStateCaseInsensitiveLetterState. nextStateNext state if a match is found.private AbstractParserStateLetterState. nextStateNext state if a match is found.private AbstractParserStateWhitespaceOrCaseInsensitiveLetterState. nextStateNext state if the character is found.private AbstractParserStateWhitespaceOrLetterState. nextStateNext state if the character is found.private AbstractParserStateBranchState. noMatchStateprivate AbstractParserStateCaseInsensitiveLetterState. noMatchStateNext state if not match is found.private AbstractParserStateLetterState. noMatchStateNext state if not match is found.private AbstractParserStatePostE. quoteMethods 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.
-