Package tech.tablesaw.plotly.components
Enum Marker.Palette
- java.lang.Object
-
- java.lang.Enum<Marker.Palette>
-
- tech.tablesaw.plotly.components.Marker.Palette
-
- All Implemented Interfaces:
Serializable
,Comparable<Marker.Palette>
- Enclosing class:
- Marker
public static enum Marker.Palette extends Enum<Marker.Palette>
Predefined palettes
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
static Marker.Palette
valueOf(String name)
Returns the enum constant of this type with the specified name.static Marker.Palette[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GREYS
public static final Marker.Palette GREYS
-
GREENS
public static final Marker.Palette GREENS
-
YL_GN_BU
public static final Marker.Palette YL_GN_BU
-
YL_OR_RD
public static final Marker.Palette YL_OR_RD
-
BLUE_RED
public static final Marker.Palette BLUE_RED
-
RD_BU
public static final Marker.Palette RD_BU
-
REDS
public static final Marker.Palette REDS
-
BLUES
public static final Marker.Palette BLUES
-
PICNIC
public static final Marker.Palette PICNIC
-
RAINBOW
public static final Marker.Palette RAINBOW
-
PORTLAND
public static final Marker.Palette PORTLAND
-
JET
public static final Marker.Palette JET
-
HOT
public static final Marker.Palette HOT
-
BLACKBODY
public static final Marker.Palette BLACKBODY
-
EARTH
public static final Marker.Palette EARTH
-
ELECTRIC
public static final Marker.Palette ELECTRIC
-
VIRIDIS
public static final Marker.Palette VIRIDIS
-
CIVIDIS
public static final Marker.Palette CIVIDIS
-
-
Method Detail
-
values
public static Marker.Palette[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Marker.Palette c : Marker.Palette.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Marker.Palette valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
public String toString()
- Overrides:
toString
in classEnum<Marker.Palette>
-
-