public static enum Effect.AccelType extends java.lang.Enum<Effect.AccelType>
Effect
implementation.Enum Constant and Description |
---|
DIRECT3D
Indicates that this
Effect is being accelerated in
graphics hardware via Direct3D. |
FIXED
Indicates that this
Effect is implemented in software
(i.e., running on the CPU), accelerated using native
fixed-point arithmetic. |
INTRINSIC
Indicates that this
Effect is implemented on top of
intrinsic operations built in to the Java 2D APIs. |
NONE
Indicates that this
Effect is implemented in software
(i.e., running on the CPU), without any special acceleration. |
OPENGL
Indicates that this
Effect is being accelerated in
graphics hardware via OpenGL. |
SIMD
Indicates that this
Effect is implemented in software
(i.e., running on the CPU), accelerated using native
SIMD instructions (e.g. |
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
text |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static Effect.AccelType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Effect.AccelType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Effect.AccelType INTRINSIC
Effect
is implemented on top of
intrinsic operations built in to the Java 2D APIs.public static final Effect.AccelType NONE
Effect
is implemented in software
(i.e., running on the CPU), without any special acceleration.public static final Effect.AccelType SIMD
Effect
is implemented in software
(i.e., running on the CPU), accelerated using native
SIMD instructions (e.g. SSE).public static final Effect.AccelType FIXED
Effect
is implemented in software
(i.e., running on the CPU), accelerated using native
fixed-point arithmetic.public static final Effect.AccelType OPENGL
Effect
is being accelerated in
graphics hardware via OpenGL.public static final Effect.AccelType DIRECT3D
Effect
is being accelerated in
graphics hardware via Direct3D.public static Effect.AccelType[] values()
for (Effect.AccelType c : Effect.AccelType.values()) System.out.println(c);
public static Effect.AccelType 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 java.lang.String toString()
toString
in class java.lang.Enum<Effect.AccelType>