Enum PointStyle
- All Implemented Interfaces:
Serializable, Comparable<PointStyle>
The chart point style enumerator.
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic intgetIndexForName(String name) Returns the point shape index based on the given name.getName()Returns the point shape name.static PointStylegetPointStyleForName(String name) Return the point shape that has the provided symbol.toString()Returns the point shape name.static PointStyleReturns the enum constant of this type with the specified name.static PointStyle[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
X
-
CIRCLE
-
TRIANGLE
-
SQUARE
-
DIAMOND
-
POINT
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getPointStyleForName
Return the point shape that has the provided symbol.
Parameters
name: the point style name
Returns
the point shape
-
getIndexForName
Returns the point shape index based on the given name.
Returns
the point shape index
-
getName
Returns the point shape name.
Returns
the point shape name
-
toString
Returns the point shape name.
Returns
the point shape name
- Overrides:
toStringin classEnum<PointStyle>
-