Uses of Class
net.sf.parcinj.TerminalSymbolType

Packages that use TerminalSymbolType
net.sf.parcinj ParCinJ core classes. 
 

Uses of TerminalSymbolType in net.sf.parcinj
 

Methods in net.sf.parcinj that return TerminalSymbolType
static TerminalSymbolType TerminalSymbolType.delimiter(java.lang.String delimiter)
          Creates a terminal symbol type which is a delimiter.
static TerminalSymbolType TerminalSymbolType.keyWord(java.lang.String keyWord)
          Creates a terminal symbol type which is a key word.
 

Constructors in net.sf.parcinj with parameters of type TerminalSymbolType
SimpleLexer(char escape, char quote, java.lang.String ignoredDelimitingCharacters, TerminalSymbolType... terminalSymbols)
          Creates an instance for the specified escape character, quote character, ignored delimiting characters, and terminal symbols.
SimpleLexer(char escape, char quote, TerminalSymbolType... terminalSymbols)
          Creates an instance for the specified escape character, quote character, and terminal symbols.
SimpleLexer(TerminalSymbolType... terminalSymbols)
          Creates an instance for the specified terminal symbols and no quoting.
TerminalSymbolByText(TerminalSymbolType terminalSymbolType)
          Creates an instance for the string representation of the specified terminal symbol type.
Token(TerminalSymbolType terminalSymbol, int lineNumber, int columnNumber)
          Creates an instance for the specified terminal symbol which provides the token text and TokenType.