com.supermap.mapping.dyn
Enum DynLineChart.ValuePointStyle
- java.lang.Object
-
- java.lang.Enum<DynLineChart.ValuePointStyle>
-
- com.supermap.mapping.dyn.DynLineChart.ValuePointStyle
-
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<DynLineChart.ValuePointStyle>
- Enclosing class:
- DynLineChart
public static enum DynLineChart.ValuePointStyle extends java.lang.Enum<DynLineChart.ValuePointStyle>
The value point style on the line chart.
-
-
Enum Constant Summary
Enum Constants Enum Constant and Description CIRCLE
CircleDIAMOND
DiamondPOINT
PointSQUARE
SquareTRIANGLE
TriangleX
X
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method and Description static DynLineChart.ValuePointStyle
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DynLineChart.ValuePointStyle[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
X
public static final DynLineChart.ValuePointStyle X
X
-
CIRCLE
public static final DynLineChart.ValuePointStyle CIRCLE
Circle
-
TRIANGLE
public static final DynLineChart.ValuePointStyle TRIANGLE
Triangle
-
SQUARE
public static final DynLineChart.ValuePointStyle SQUARE
Square
-
DIAMOND
public static final DynLineChart.ValuePointStyle DIAMOND
Diamond
-
POINT
public static final DynLineChart.ValuePointStyle POINT
Point
-
-
Method Detail
-
values
public static DynLineChart.ValuePointStyle[] 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 (DynLineChart.ValuePointStyle c : DynLineChart.ValuePointStyle.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DynLineChart.ValuePointStyle 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
-
-