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