public enum UnicodeData extends Enum<UnicodeData>
| Modifier and Type | Method and Description |
|---|---|
static IntervalSet |
getPropertyCodePoints(String propertyCodeOrAlias)
Given a Unicode property (general category code, binary property name, or script name),
returns the
IntervalSet of Unicode code point ranges which have that property. |
static UnicodeData |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UnicodeData[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static UnicodeData[] values()
for (UnicodeData c : UnicodeData.values()) System.out.println(c);
public static UnicodeData valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullpublic static IntervalSet getPropertyCodePoints(String propertyCodeOrAlias)
IntervalSet of Unicode code point ranges which have that property.Copyright © 1992–2020 Tunnel Vision Laboratories, LLC. All rights reserved.