public static enum DrawingContext.Target extends Enum<DrawingContext.Target>
Enum Constant and Description |
---|
BITMAP
Bitmap drawing target consisting of pixels.
|
VECTOR
Vector drawing target consisting of lines and curves.
|
Modifier and Type | Method and Description |
---|---|
static DrawingContext.Target |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DrawingContext.Target[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DrawingContext.Target BITMAP
public static final DrawingContext.Target VECTOR
public static DrawingContext.Target[] values()
for (DrawingContext.Target c : DrawingContext.Target.values()) System.out.println(c);
public static DrawingContext.Target 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 © 2009-2013. All Rights Reserved.