Enum Interpolate
- java.lang.Object
-
- java.lang.Enum<Interpolate>
-
- org.pepstock.charba.client.geo.enums.Interpolate
-
- All Implemented Interfaces:
Serializable
,Comparable<Interpolate>
,Key
public enum Interpolate extends Enum<Interpolate> implements Key
Enumerates the color interpolation for data set and scale.- Author:
- Andrea "Stock" Stocchero
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BLUES
Interpolate color blues.BR_B_G
Interpolate color brBG.BU_GN
Interpolate color buGn.BU_PU
Interpolate color buPu.CIVIDIS
Interpolate color cividis.COOL
Interpolate color cool.CUBEHELIX_DEFAULT
Interpolate color cubehelixDefault.GN_BU
Interpolate color gnBu.GREENS
Interpolate color greens.GREYS
Interpolate color greys.INFERNO
Interpolate color inferno.MAGMA
Interpolate color magma.OR_RD
Interpolate color orRd.ORANGES
Interpolate color oranges.P_R_GN
Interpolate color pRGn.PI_Y_G
Interpolate color piYG.PLASMA
Interpolate color plasma.PU_BU
Interpolate color puBu.PU_BU_GN
Interpolate color puBuGn.PU_OR
Interpolate color puOr.PU_RD
Interpolate color puRd.PURPLES
Interpolate color purples.RAINBOW
Interpolate color rainbow.RD_BU
Interpolate color rdBu.RD_GY
Interpolate color rdGy.RD_PU
Interpolate color rdPu.RD_YL_BU
Interpolate color rdYlBu.RD_YL_GN
Interpolate color rdYlGn.REDS
Interpolate color reds.SINEBOW
Interpolate color sinebow.SPECTRAL
Interpolate color spectral.TURBO
Interpolate color turbo.VIRIDIS
Interpolate color viridis.WARM
Interpolate color warm.YL_GN
Interpolate color ylGn.YL_GN_BU
Interpolate color ylGnBu.YL_OR_BR
Interpolate color ylOrBr.YL_OR_RD
Interpolate color ylOrRd.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
value()
Returns the name value of propertystatic Interpolate
valueOf(String name)
Returns the enum constant of this type with the specified name.static Interpolate[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BLUES
public static final Interpolate BLUES
Interpolate color blues.
-
BR_B_G
public static final Interpolate BR_B_G
Interpolate color brBG.
-
BU_GN
public static final Interpolate BU_GN
Interpolate color buGn.
-
BU_PU
public static final Interpolate BU_PU
Interpolate color buPu.
-
CIVIDIS
public static final Interpolate CIVIDIS
Interpolate color cividis.
-
COOL
public static final Interpolate COOL
Interpolate color cool.
-
CUBEHELIX_DEFAULT
public static final Interpolate CUBEHELIX_DEFAULT
Interpolate color cubehelixDefault.
-
GN_BU
public static final Interpolate GN_BU
Interpolate color gnBu.
-
GREENS
public static final Interpolate GREENS
Interpolate color greens.
-
GREYS
public static final Interpolate GREYS
Interpolate color greys.
-
INFERNO
public static final Interpolate INFERNO
Interpolate color inferno.
-
MAGMA
public static final Interpolate MAGMA
Interpolate color magma.
-
OR_RD
public static final Interpolate OR_RD
Interpolate color orRd.
-
ORANGES
public static final Interpolate ORANGES
Interpolate color oranges.
-
P_R_GN
public static final Interpolate P_R_GN
Interpolate color pRGn.
-
PI_Y_G
public static final Interpolate PI_Y_G
Interpolate color piYG.
-
PLASMA
public static final Interpolate PLASMA
Interpolate color plasma.
-
PU_BU
public static final Interpolate PU_BU
Interpolate color puBu.
-
PU_BU_GN
public static final Interpolate PU_BU_GN
Interpolate color puBuGn.
-
PU_OR
public static final Interpolate PU_OR
Interpolate color puOr.
-
PU_RD
public static final Interpolate PU_RD
Interpolate color puRd.
-
PURPLES
public static final Interpolate PURPLES
Interpolate color purples.
-
RAINBOW
public static final Interpolate RAINBOW
Interpolate color rainbow.
-
RD_BU
public static final Interpolate RD_BU
Interpolate color rdBu.
-
RD_GY
public static final Interpolate RD_GY
Interpolate color rdGy.
-
RD_PU
public static final Interpolate RD_PU
Interpolate color rdPu.
-
RD_YL_BU
public static final Interpolate RD_YL_BU
Interpolate color rdYlBu.
-
RD_YL_GN
public static final Interpolate RD_YL_GN
Interpolate color rdYlGn.
-
REDS
public static final Interpolate REDS
Interpolate color reds.
-
SINEBOW
public static final Interpolate SINEBOW
Interpolate color sinebow.
-
SPECTRAL
public static final Interpolate SPECTRAL
Interpolate color spectral.
-
TURBO
public static final Interpolate TURBO
Interpolate color turbo.
-
VIRIDIS
public static final Interpolate VIRIDIS
Interpolate color viridis.
-
WARM
public static final Interpolate WARM
Interpolate color warm.
-
YL_GN
public static final Interpolate YL_GN
Interpolate color ylGn.
-
YL_GN_BU
public static final Interpolate YL_GN_BU
Interpolate color ylGnBu.
-
YL_OR_BR
public static final Interpolate YL_OR_BR
Interpolate color ylOrBr.
-
YL_OR_RD
public static final Interpolate YL_OR_RD
Interpolate color ylOrRd.
-
-
Method Detail
-
values
public static Interpolate[] 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 (Interpolate c : Interpolate.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Interpolate 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
-
-