public enum PlatformId extends Enum<PlatformId>
Represents PlatformId enumeration.
| Enum Constant and Description |
|---|
ISO
Value2
Apple spec: (reserved; do not use)
MS spec: ISO encoding.
|
Macintosh
Value 1
Macintosh Script Manager code.
|
Microsoft
Value 3
Microsoft encoding.
|
Unicode
Value 0
Unicode
|
| Modifier and Type | Method and Description |
|---|---|
static PlatformId |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PlatformId[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlatformId Unicode
Value 0 Unicode
public static final PlatformId Macintosh
Value 1 Macintosh Script Manager code.
public static final PlatformId ISO
Value2 Apple spec: (reserved; do not use) MS spec: ISO encoding. Note that platform ID 2 (ISO) has been deprecated as of OpenType Specification v1.3. It was intended to represent ISO/IEC 10646, as opposed to Unicode; both standards have identical character code assignments
public static final PlatformId Microsoft
Value 3 Microsoft encoding.
public static PlatformId[] values()
for (PlatformId c : PlatformId.values()) System.out.println(c);
public static PlatformId 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.