public static enum VectorGraphics2D.FontRendering extends Enum<VectorGraphics2D.FontRendering>
Enum Constant and Description |
---|
TEXT
Constant indicating that fonts should be rendered as
text objects.
|
VECTORS
Constant indicating that fonts should be converted to vectors.
|
Modifier and Type | Method and Description |
---|---|
static VectorGraphics2D.FontRendering |
valueOf(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.
|
public static final VectorGraphics2D.FontRendering TEXT
public static final VectorGraphics2D.FontRendering VECTORS
public static VectorGraphics2D.FontRendering[] values()
for (VectorGraphics2D.FontRendering c : VectorGraphics2D.FontRendering.values()) System.out.println(c);
public static VectorGraphics2D.FontRendering 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 © 2010-2015. All Rights Reserved.