public enum ColorSchemeType extends Enum<ColorSchemeType>
ColorBrewer
class| Enum Constant and Description |
|---|
DIVERGING
Diverging color scheme type
|
QUALITATIVE
Qualitative color scheme type
|
SEQUENTIAL
Sequential color scheme type
|
| Modifier and Type | Method and Description |
|---|---|
static ColorSchemeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ColorSchemeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColorSchemeType QUALITATIVE
public static final ColorSchemeType SEQUENTIAL
public static final ColorSchemeType DIVERGING
public static ColorSchemeType[] values()
for (ColorSchemeType c : ColorSchemeType.values()) System.out.println(c);
public static ColorSchemeType 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 nullCopyright © 2018. All rights reserved.