public enum AccelerationType extends java.lang.Enum<AccelerationType>
Enum Constant and Description |
---|
DEFAULT |
DIRECT3D |
OPENGL |
QUARTZ |
UNACCELERATED |
XRENDER |
Modifier and Type | Method and Description |
---|---|
static java.util.List<AccelerationType> |
getForThisOS() |
static AccelerationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccelerationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccelerationType DEFAULT
public static final AccelerationType DIRECT3D
public static final AccelerationType OPENGL
public static final AccelerationType QUARTZ
public static final AccelerationType XRENDER
public static final AccelerationType UNACCELERATED
public static AccelerationType[] values()
for (AccelerationType c : AccelerationType.values()) System.out.println(c);
public static AccelerationType 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 nullpublic static java.util.List<AccelerationType> getForThisOS()