public static enum DrawingContext.Quality extends java.lang.Enum<DrawingContext.Quality>
Enum Constant and Description |
---|
DRAFT
Fast drawing mode.
|
NORMAL
Standard drawing mode.
|
QUALITY
High quality drawing mode.
|
Modifier and Type | Method and Description |
---|---|
static DrawingContext.Quality |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DrawingContext.Quality[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DrawingContext.Quality DRAFT
public static final DrawingContext.Quality NORMAL
public static final DrawingContext.Quality QUALITY
public static DrawingContext.Quality[] values()
for (DrawingContext.Quality c : DrawingContext.Quality.values()) System.out.println(c);
public static DrawingContext.Quality 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 null