Enum ColorMap.PredefinedColorMap
- java.lang.Object
-
- java.lang.Enum<ColorMap.PredefinedColorMap>
-
- org.eclipse.nebula.visualization.widgets.datadefinition.ColorMap.PredefinedColorMap
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ColorMap.PredefinedColorMap>
- Enclosing class:
- ColorMap
public static enum ColorMap.PredefinedColorMap extends java.lang.Enum<ColorMap.PredefinedColorMap>
-
-
Constructor Summary
Constructors Modifier Constructor Description private
PredefinedColorMap(java.lang.String name, double[] values, org.eclipse.swt.graphics.RGB[] colors)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ColorMap.PredefinedColorMap
fromIndex(int index)
java.util.LinkedHashMap<java.lang.Double,org.eclipse.swt.graphics.RGB>
getMap()
static java.lang.String[]
getStringValues()
static int
toIndex(ColorMap.PredefinedColorMap p)
java.lang.String
toString()
static ColorMap.PredefinedColorMap
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ColorMap.PredefinedColorMap[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
None
public static final ColorMap.PredefinedColorMap None
-
GrayScale
public static final ColorMap.PredefinedColorMap GrayScale
-
JET
public static final ColorMap.PredefinedColorMap JET
-
ColorSpectrum
public static final ColorMap.PredefinedColorMap ColorSpectrum
-
Hot
public static final ColorMap.PredefinedColorMap Hot
-
Cool
public static final ColorMap.PredefinedColorMap Cool
-
Shaded
public static final ColorMap.PredefinedColorMap Shaded
-
-
Method Detail
-
values
public static ColorMap.PredefinedColorMap[] 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 (ColorMap.PredefinedColorMap c : ColorMap.PredefinedColorMap.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ColorMap.PredefinedColorMap valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getMap
public java.util.LinkedHashMap<java.lang.Double,org.eclipse.swt.graphics.RGB> getMap()
-
getStringValues
public static java.lang.String[] getStringValues()
-
toIndex
public static int toIndex(ColorMap.PredefinedColorMap p)
-
fromIndex
public static ColorMap.PredefinedColorMap fromIndex(int index)
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<ColorMap.PredefinedColorMap>
-
-