public enum UnicodePlatformSpecificId extends Enum<UnicodePlatformSpecificId>
Represents unicode platform-specific enumeration.
| Enum Constant and Description |
|---|
Default
Value 0
Default semantics (Unicode 1.0).
|
ISO10646_1993
Value 2
ISO 10646 1993 semantics (deprecated).
|
Unicode1_1
Value 1
Unicode 1.1 semantics.
|
Unicode2_0
Value 3
Unicode 2.0 or later semantics.
|
Unicode2_0_Full
Value 4
Unicode 2.0 and onwards semantics (non-BMP characters allowed), Unicode full repertoire.
|
| Modifier and Type | Method and Description |
|---|---|
static UnicodePlatformSpecificId |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UnicodePlatformSpecificId[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnicodePlatformSpecificId Default
Value 0 Default semantics (Unicode 1.0).
public static final UnicodePlatformSpecificId Unicode1_1
Value 1 Unicode 1.1 semantics.
public static final UnicodePlatformSpecificId ISO10646_1993
Value 2 ISO 10646 1993 semantics (deprecated).
public static final UnicodePlatformSpecificId Unicode2_0
Value 3 Unicode 2.0 or later semantics. Unicode BMP only.
public static final UnicodePlatformSpecificId Unicode2_0_Full
Value 4 Unicode 2.0 and onwards semantics (non-BMP characters allowed), Unicode full repertoire.
public static UnicodePlatformSpecificId[] values()
for (UnicodePlatformSpecificId c : UnicodePlatformSpecificId.values()) System.out.println(c);
public static UnicodePlatformSpecificId 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 nullCopyright © 2025 Aspose. All Rights Reserved.