Uses of Class
jfun.parsec.Terms

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

Uses of Terms in jfun.parsec
 

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