Uses of Class
org.apache.commons.text.translate.UnicodeEscaper
Package | Description |
---|---|
org.apache.commons.text.translate |
An API for creating text translation routines from a set of smaller building blocks.
|
-
Uses of UnicodeEscaper in org.apache.commons.text.translate
Subclasses of UnicodeEscaper in org.apache.commons.text.translate Modifier and Type Class Description class
JavaUnicodeEscaper
Translates codepoints to their Unicode escaped value suitable for Java source.Methods in org.apache.commons.text.translate that return UnicodeEscaper Modifier and Type Method Description static UnicodeEscaper
UnicodeEscaper. above(int codepoint)
Constructs aUnicodeEscaper
above the specified value (exclusive).static UnicodeEscaper
UnicodeEscaper. below(int codepoint)
Constructs aUnicodeEscaper
below the specified value (exclusive).static UnicodeEscaper
UnicodeEscaper. between(int codepointLow, int codepointHigh)
Constructs aUnicodeEscaper
between the specified values (inclusive).static UnicodeEscaper
UnicodeEscaper. outsideOf(int codepointLow, int codepointHigh)
Constructs aUnicodeEscaper
outside of the specified values (exclusive).