|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<VectorGraphics2D.FontRendering>
de.erichseifert.vectorgraphics2d.VectorGraphics2D.FontRendering
public static enum VectorGraphics2D.FontRendering
Constants to define how fonts are rendered.
Enum Constant Summary | |
---|---|
TEXT
Constant indicating that fonts should be rendered as text objects. |
|
VECTORS
Constant indicating that fonts should be converted to vectors. |
Method Summary | |
---|---|
static VectorGraphics2D.FontRendering |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static VectorGraphics2D.FontRendering[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final VectorGraphics2D.FontRendering TEXT
public static final VectorGraphics2D.FontRendering VECTORS
Method Detail |
---|
public static VectorGraphics2D.FontRendering[] values()
for (VectorGraphics2D.FontRendering c : VectorGraphics2D.FontRendering.values()) System.out.println(c);
public static VectorGraphics2D.FontRendering 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 name
java.lang.NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |