|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<DrawingContext.Quality>
de.erichseifert.gral.DrawingContext.Quality
public static enum DrawingContext.Quality
Data type that describes the quality mode of drawing operations.
Enum Constant Summary | |
---|---|
DRAFT
Fast drawing mode. |
|
NORMAL
Standard drawing mode. |
|
QUALITY
High quality drawing mode. |
Method Summary | |
---|---|
static DrawingContext.Quality |
valueOf(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. |
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 DrawingContext.Quality DRAFT
public static final DrawingContext.Quality NORMAL
public static final DrawingContext.Quality QUALITY
Method Detail |
---|
public static DrawingContext.Quality[] values()
for (DrawingContext.Quality c : DrawingContext.Quality.values()) System.out.println(c);
public static DrawingContext.Quality valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |