Package com.jalios.jcms.chart.series
Enum Series.PointStyle
- java.lang.Object
-
- java.lang.Enum<Series.PointStyle>
-
- com.jalios.jcms.chart.series.Series.PointStyle
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Series.PointStyle>
public static enum Series.PointStyle extends java.lang.Enum<Series.PointStyle>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getLabel()
void
setLabel(java.lang.String label)
java.lang.String
toString()
static Series.PointStyle
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Series.PointStyle[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CIRCLE
public static final Series.PointStyle CIRCLE
-
TRIANGLE
public static final Series.PointStyle TRIANGLE
-
RECT
public static final Series.PointStyle RECT
-
RECT_ROUNDED
public static final Series.PointStyle RECT_ROUNDED
-
RECT_ROT
public static final Series.PointStyle RECT_ROT
-
CROSS
public static final Series.PointStyle CROSS
-
CROSS_ROT
public static final Series.PointStyle CROSS_ROT
-
STAR
public static final Series.PointStyle STAR
-
LINE
public static final Series.PointStyle LINE
-
DASH
public static final Series.PointStyle DASH
-
NONE
public static final Series.PointStyle NONE
-
-
Method Detail
-
values
public static Series.PointStyle[] 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 (Series.PointStyle c : Series.PointStyle.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Series.PointStyle 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
-
getLabel
public java.lang.String getLabel()
- Returns:
- the label
-
setLabel
public void setLabel(java.lang.String label)
- Parameters:
label
- the label to set
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<Series.PointStyle>
-
-