public static enum Renderer.ColorInterpolation extends java.lang.Enum<Renderer.ColorInterpolation>
Enum Constant and Description |
---|
HSV
Color interpolation is performed in HSV space.
|
NONE
Color interpolation is disabled.
|
RGB
Color interpolation is performed in RGB space.
|
Modifier and Type | Method and Description |
---|---|
static Renderer.ColorInterpolation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Renderer.ColorInterpolation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Renderer.ColorInterpolation NONE
public static final Renderer.ColorInterpolation RGB
public static final Renderer.ColorInterpolation HSV
public static Renderer.ColorInterpolation[] values()
for (Renderer.ColorInterpolation c : Renderer.ColorInterpolation.values()) System.out.println(c);
public static Renderer.ColorInterpolation 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