Package de.gsi.chart.renderer
Enum ContourType
- java.lang.Object
-
- java.lang.Enum<ContourType>
-
- de.gsi.chart.renderer.ContourType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ContourType>
public enum ContourType extends java.lang.Enum<ContourType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTOURCONTOUR_FASTCONTOUR_HEXAGONHEATMAPHEATMAP_HEXAGON
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ContourTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ContourType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONTOUR
public static final ContourType CONTOUR
-
CONTOUR_FAST
public static final ContourType CONTOUR_FAST
-
CONTOUR_HEXAGON
public static final ContourType CONTOUR_HEXAGON
-
HEATMAP
public static final ContourType HEATMAP
-
HEATMAP_HEXAGON
public static final ContourType HEATMAP_HEXAGON
-
-
Method Detail
-
values
public static ContourType[] 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 (ContourType c : ContourType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ContourType 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
-
-