Uses of Class
jfun.parsec.Words

Packages that use Words
jfun.parsec Provides classes and interfaces for parser combinator logic and basic parsers. 
 

Uses of Words in jfun.parsec
 

Methods in jfun.parsec that return Words
static Words Lexers.getCaseInsensitive(Parser<?> wscanner, java.lang.String[] ops, java.lang.String[] keywords)
          Creates a Words object for lexing the operators with names specified in ops, and for lexing the keywords case insensitively.
static Words Lexers.getCaseInsensitive(Parser<?> wscanner, java.lang.String[] ops, java.lang.String[] keywords, FromString<?> toWord)
          Creates a Words object for lexing the operators with names specified in ops, and for lexing the keywords case insensitively.
static Words Lexers.getCaseInsensitive(java.lang.String[] ops, java.lang.String[] keywords)
          Creates a Words object for lexing the operators with names specified in ops, and for lexing the keywords case insensitively.
static Words Lexers.getCaseSensitive(Parser<?> wscanner, java.lang.String[] ops, java.lang.String[] keywords)
          Creates a Words object for lexing the operators with names specified in ops, and for lexing the keywords case sensitively.
static Words Lexers.getCaseSensitive(Parser<?> wscanner, java.lang.String[] ops, java.lang.String[] keywords, FromString<?> toWord)
          Creates a Words object for lexing the operators with names specified in ops, and for lexing the keywords case sensitively.
static Words Lexers.getCaseSensitive(java.lang.String[] ops, java.lang.String[] keywords)
          Creates a Words object for lexing the operators with names specified in ops, and for lexing the keywords case sensitively.
static Words Lexers.getOperators(java.lang.String... ops)
          Creates a Words object for lexing the operators with names specified in ops.