Package de.gsi.chart.renderer.spi.utils
Enum DefaultRenderColorScheme.Palette
- java.lang.Object
-
- java.lang.Enum<DefaultRenderColorScheme.Palette>
-
- de.gsi.chart.renderer.spi.utils.DefaultRenderColorScheme.Palette
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DefaultRenderColorScheme.Palette>
- Enclosing class:
- DefaultRenderColorScheme
public static enum DefaultRenderColorScheme.Palette extends java.lang.Enum<DefaultRenderColorScheme.Palette>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description P_ADOBEP_DELLP_EQUIDISTANTP_MISCP_TUNEVIEWER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description javafx.collections.ObservableList<javafx.scene.paint.Color>getPalette()static DefaultRenderColorScheme.PalettegetValue(javafx.collections.ObservableList<javafx.scene.paint.Color> list)static DefaultRenderColorScheme.PalettevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DefaultRenderColorScheme.Palette[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
P_TUNEVIEWER
public static final DefaultRenderColorScheme.Palette P_TUNEVIEWER
-
P_MISC
public static final DefaultRenderColorScheme.Palette P_MISC
-
P_ADOBE
public static final DefaultRenderColorScheme.Palette P_ADOBE
-
P_DELL
public static final DefaultRenderColorScheme.Palette P_DELL
-
P_EQUIDISTANT
public static final DefaultRenderColorScheme.Palette P_EQUIDISTANT
-
-
Method Detail
-
values
public static DefaultRenderColorScheme.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 (DefaultRenderColorScheme.Palette c : DefaultRenderColorScheme.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 DefaultRenderColorScheme.Palette 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
-
getPalette
public javafx.collections.ObservableList<javafx.scene.paint.Color> getPalette()
-
getValue
public static DefaultRenderColorScheme.Palette getValue(javafx.collections.ObservableList<javafx.scene.paint.Color> list)
-
-