public static enum ColourMap.Type extends Enum<ColourMap.Type>
The descriptions of the different types are taken from the colorbrewer website
Enum Constant and Description |
---|
DIVERGING
Diverging schemes put equal emphasis on mid-range critical values and
extremes at both ends of the data range.
|
QUALITATIVE
Qualitative maps do not imply magnitude differences between classes.
|
SEQUENTIAL
Sequential maps are suited to ordered data that progresses from low
to high.
|
Modifier and Type | Method and Description |
---|---|
static ColourMap.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ColourMap.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColourMap.Type SEQUENTIAL
public static final ColourMap.Type QUALITATIVE
public static final ColourMap.Type DIVERGING
public static ColourMap.Type[] values()
for (ColourMap.Type c : ColourMap.Type.values()) System.out.println(c);
public static ColourMap.Type 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