Package eu.webtoolkit.jwt.chart
Enum Class MarkerType
- All Implemented Interfaces:
Serializable
,Comparable<MarkerType>
,Constable
Enumeration that specifies a type of point marker.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionMark points using an asterisk (*).Mark points using a circle.Mark points using a cross (+).Mark points using a custom marker.Mark points using a diamond.Mark points using an inverted (upside-down) triangle.Do not draw point markers.Mark points using a square.Mark points using a star.Mark points using a triangle.Mark points using a cross (x). -
Method Summary
Modifier and TypeMethodDescriptionint
getValue()
Returns the numerical representation of this enum.static MarkerType
Returns the enum constant of this class with the specified name.static MarkerType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
None
Do not draw point markers. -
Square
Mark points using a square. -
Circle
Mark points using a circle. -
Cross
Mark points using a cross (+). -
XCross
Mark points using a cross (x). -
Triangle
Mark points using a triangle. -
Custom
Mark points using a custom marker. -
Star
Mark points using a star. -
InvertedTriangle
Mark points using an inverted (upside-down) triangle. -
Asterisk
Mark points using an asterisk (*). -
Diamond
Mark points using a diamond.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
public int getValue()Returns the numerical representation of this enum.
-