public
static
enum
NumericShaper.Range
extends Enum<NumericShaper.Range>
java.lang.Object | ||
↳ | java.lang.Enum<java.awt.font.NumericShaper.Range> | |
↳ | java.awt.font.NumericShaper.Range |
A NumericShaper.Range
represents a Unicode range of a
script having its own decimal digits. For example, the THAI
range has the Thai digits, THAI DIGIT
ZERO (U+0E50) to THAI DIGIT NINE (U+0E59).
The Range
enum replaces the traditional bit
mask-based values (e.g., ARABIC
), and
supports more Unicode ranges than the bit mask-based ones. For
example, the following code using the bit mask:
can be written using this enum as:NumericShaper.getContextualShaper(NumericShaper.ARABIC | NumericShaper.TAMIL, NumericShaper.EUROPEAN);
NumericShaper.getContextualShaper(EnumSet.of( NumericShaper.Range.ARABIC, NumericShaper.Range.TAMIL), NumericShaper.Range.EUROPEAN);
Enum values | |
---|---|
NumericShaper.Range |
ARABIC
The Arabic range with the Arabic-Indic digits. |
NumericShaper.Range |
BALINESE
The Balinese range with the Balinese digits. |
NumericShaper.Range |
BENGALI
The Bengali range with the Bengali digits. |
NumericShaper.Range |
CHAM
The Cham range with the Cham digits. |
NumericShaper.Range |
DEVANAGARI
The Devanagari range with the Devanagari digits. |
NumericShaper.Range |
EASTERN_ARABIC
The Arabic range with the Eastern Arabic-Indic digits. |
NumericShaper.Range |
ETHIOPIC
The Ethiopic range with the Ethiopic digits. |
NumericShaper.Range |
EUROPEAN
The Latin (European) range with the Latin (ASCII) digits. |
NumericShaper.Range |
GUJARATI
The Gujarati range with the Gujarati digits. |
NumericShaper.Range |
GURMUKHI
The Gurmukhi range with the Gurmukhi digits. |
NumericShaper.Range |
JAVANESE
The Javanese range with the Javanese digits. |
NumericShaper.Range |
KANNADA
The Kannada range with the Kannada digits. |
NumericShaper.Range |
KAYAH_LI
The Kayah Li range with the Kayah Li digits. |
NumericShaper.Range |
KHMER
The Khmer range with the Khmer digits. |
NumericShaper.Range |
LAO
The Lao range with the Lao digits. |
NumericShaper.Range |
LEPCHA
The Lepcha range with the Lepcha digits. |
NumericShaper.Range |
LIMBU
The Limbu range with the Limbu digits. |
NumericShaper.Range |
MALAYALAM
The Malayalam range with the Malayalam digits. |
NumericShaper.Range |
MEETEI_MAYEK
The Meetei Mayek range with the Meetei Mayek digits. |
NumericShaper.Range |
MONGOLIAN
The Mongolian range with the Mongolian digits. |
NumericShaper.Range |
MYANMAR
The Myanmar range with the Myanmar digits. |
NumericShaper.Range |
MYANMAR_SHAN
The Myanmar range with the Myanmar Shan digits. |
NumericShaper.Range |
NEW_TAI_LUE
The New Tai Lue range with the New Tai Lue digits. |
NumericShaper.Range |
NKO
The N'Ko range with the N'Ko digits. |
NumericShaper.Range |
OL_CHIKI
The Ol Chiki range with the Ol Chiki digits. |
NumericShaper.Range |
ORIYA
The Oriya range with the Oriya digits. |
NumericShaper.Range |
SAURASHTRA
The Saurashtra range with the Saurashtra digits. |
NumericShaper.Range |
SUNDANESE
The Sundanese range with the Sundanese digits. |
NumericShaper.Range |
TAI_THAM_HORA
The Tai Tham Hora range with the Tai Tham Hora digits. |
NumericShaper.Range |
TAI_THAM_THAM
The Tai Tham Tham range with the Tai Tham Tham digits. |
NumericShaper.Range |
TAMIL
The Tamil range with the Tamil digits. |
NumericShaper.Range |
TELUGU
The Telugu range with the Telugu digits. |
NumericShaper.Range |
THAI
The Thai range with the Thai digits. |
NumericShaper.Range |
TIBETAN
The Tibetan range with the Tibetan digits. |
NumericShaper.Range |
VAI
The Vai range with the Vai digits. |
Public methods | |
---|---|
static
NumericShaper.Range
|
valueOf(String name)
|
static
final
Range[]
|
values()
|
Inherited methods | |
---|---|
From
class
java.lang.Enum
| |
From
class
java.lang.Object
| |
From
interface
java.lang.Comparable
|
NumericShaper.Range ARABIC
The Arabic range with the Arabic-Indic digits.
NumericShaper.Range BALINESE
The Balinese range with the Balinese digits.
NumericShaper.Range BENGALI
The Bengali range with the Bengali digits.
NumericShaper.Range DEVANAGARI
The Devanagari range with the Devanagari digits.
NumericShaper.Range EASTERN_ARABIC
The Arabic range with the Eastern Arabic-Indic digits.
NumericShaper.Range ETHIOPIC
The Ethiopic range with the Ethiopic digits. Ethiopic does not have a decimal digit 0 so Latin (European) 0 is used.
NumericShaper.Range EUROPEAN
The Latin (European) range with the Latin (ASCII) digits.
NumericShaper.Range GUJARATI
The Gujarati range with the Gujarati digits.
NumericShaper.Range GURMUKHI
The Gurmukhi range with the Gurmukhi digits.
NumericShaper.Range JAVANESE
The Javanese range with the Javanese digits.
NumericShaper.Range KANNADA
The Kannada range with the Kannada digits.
NumericShaper.Range KAYAH_LI
The Kayah Li range with the Kayah Li digits.
NumericShaper.Range MALAYALAM
The Malayalam range with the Malayalam digits.
NumericShaper.Range MEETEI_MAYEK
The Meetei Mayek range with the Meetei Mayek digits.
NumericShaper.Range MONGOLIAN
The Mongolian range with the Mongolian digits.
NumericShaper.Range MYANMAR
The Myanmar range with the Myanmar digits.
NumericShaper.Range MYANMAR_SHAN
The Myanmar range with the Myanmar Shan digits.
NumericShaper.Range NEW_TAI_LUE
The New Tai Lue range with the New Tai Lue digits.
NumericShaper.Range OL_CHIKI
The Ol Chiki range with the Ol Chiki digits.
NumericShaper.Range SAURASHTRA
The Saurashtra range with the Saurashtra digits.
NumericShaper.Range SUNDANESE
The Sundanese range with the Sundanese digits.
NumericShaper.Range TAI_THAM_HORA
The Tai Tham Hora range with the Tai Tham Hora digits.
NumericShaper.Range TAI_THAM_THAM
The Tai Tham Tham range with the Tai Tham Tham digits.
NumericShaper.Range TIBETAN
The Tibetan range with the Tibetan digits.
NumericShaper.Range valueOf (String name)
Parameters | |
---|---|
name |
String
|
Returns | |
---|---|
NumericShaper.Range |