public static enum Palette.Preset extends java.lang.Enum<Palette.Preset>
Enum Constant and Description |
---|
PresetDEM |
PresetGray |
PresetHeat |
PresetNDVI |
Modifier and Type | Method and Description |
---|---|
static Palette.Preset |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Palette.Preset[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Palette.Preset PresetNDVI
public static final Palette.Preset PresetHeat
public static final Palette.Preset PresetGray
public static final Palette.Preset PresetDEM
public static Palette.Preset[] values()
for (Palette.Preset c : Palette.Preset.values()) System.out.println(c);
public static Palette.Preset 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