public enum AlphaInterpolation extends Enum<AlphaInterpolation>
| Enum Constant and Description |
|---|
DEFAULT
No change to default settings.
|
QUALITY
Optimized for quality.
|
SPEED
Optimized for speed.
|
| Modifier and Type | Method and Description |
|---|---|
static AlphaInterpolation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AlphaInterpolation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlphaInterpolation DEFAULT
public static final AlphaInterpolation SPEED
public static final AlphaInterpolation QUALITY
public static AlphaInterpolation[] values()
for (AlphaInterpolation c : AlphaInterpolation.values()) System.out.println(c);
public static AlphaInterpolation 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 null