public static enum TTFFile.PostScriptVersion extends java.lang.Enum<TTFFile.PostScriptVersion>
post) contained in this font.
Enum Constant and Description |
---|
UNKNOWN
Unknown version of the PostScript table.
|
V1
PostScript table version 1.0.
|
V2
PostScript table version 2.0.
|
V3
PostScript table version 3.0.
|
Modifier and Type | Method and Description |
---|---|
static TTFFile.PostScriptVersion |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TTFFile.PostScriptVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TTFFile.PostScriptVersion V1
public static final TTFFile.PostScriptVersion V2
public static final TTFFile.PostScriptVersion V3
public static final TTFFile.PostScriptVersion UNKNOWN
public static TTFFile.PostScriptVersion[] values()
for (TTFFile.PostScriptVersion c : TTFFile.PostScriptVersion.values()) System.out.println(c);
public static TTFFile.PostScriptVersion 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 nullCopyright 1999-2012 The Apache Software Foundation. All Rights Reserved.