Package | Description |
---|---|
jfun.parsec |
Provides classes and interfaces for parser combinator logic and basic parsers.
|
Modifier and Type | Method and Description |
---|---|
static Terms |
Terms.getCaseInsensitive(Parser<?> wscanner,
java.lang.String[] ops,
java.lang.String[] keywords)
Deprecated.
|
static Terms |
Terms.getCaseInsensitive(Parser<?> wscanner,
java.lang.String[] ops,
java.lang.String[] keywords,
FromString<?> toWord)
Deprecated.
|
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.
|
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.
|