public class InnerLiteral extends Object
| Constructor and Description |
|---|
InnerLiteral(AbstractString literal,
AbstractString mask,
int maxPrefixSize) |
| Modifier and Type | Method and Description |
|---|---|
AbstractString |
getLiteral()
The literal string.
|
Object |
getLiteralContent(boolean tString) |
AbstractString |
getMask()
An optional mask for matching the string in ignore-case mode.
|
Object |
getMaskContent(boolean tString) |
int |
getMaxPrefixSize()
The maximum number of code points the regular expression may match before matching this
literal.
|
public InnerLiteral(AbstractString literal, AbstractString mask, int maxPrefixSize)
public AbstractString getLiteral()
public Object getLiteralContent(boolean tString)
public AbstractString getMask()
public Object getMaskContent(boolean tString)
public int getMaxPrefixSize()
/a?b/ is "b", with a max prefix size
of 1.