public static enum Font.PlatformId extends java.lang.Enum<Font.PlatformId>
Enum Constant and Description |
---|
Custom |
ISO |
Macintosh |
Unicode |
Unknown |
Windows |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(int value) |
int |
value() |
static Font.PlatformId |
valueOf(int value) |
static Font.PlatformId |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Font.PlatformId[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Font.PlatformId Unknown
public static final Font.PlatformId Unicode
public static final Font.PlatformId Macintosh
public static final Font.PlatformId ISO
public static final Font.PlatformId Windows
public static final Font.PlatformId Custom
public static Font.PlatformId[] values()
for (Font.PlatformId c : Font.PlatformId.values()) System.out.println(c);
public static Font.PlatformId valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int value()
public boolean equals(int value)
public static Font.PlatformId valueOf(int value)