public enum GlyphIdType extends Enum<GlyphIdType>
Specifies types of glyph id.
| Enum Constant and Description |
|---|
ASCIIStringName
ASCII string glyph name.
|
Int32Index
Integer glyph index.
|
| Modifier and Type | Method and Description |
|---|---|
static GlyphIdType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GlyphIdType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GlyphIdType ASCIIStringName
ASCII string glyph name.
public static final GlyphIdType Int32Index
Integer glyph index.
public static GlyphIdType[] values()
for (GlyphIdType c : GlyphIdType.values()) System.out.println(c);
public static GlyphIdType 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.