|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<MarkerType>
eu.webtoolkit.jwt.chart.MarkerType
public enum MarkerType
Enumeration that specifies a type of point marker.
WDataSeries.setMarker(MarkerType marker),
WCartesianChart| Enum Constant Summary | |
|---|---|
CircleMarker
Mark points using a circle. |
|
CrossMarker
Mark points using a cross (+). |
|
NoMarker
Do not draw point markers. |
|
SquareMarker
Mark points using a square. |
|
TriangleMarker
Mark points using a triangle. |
|
XCrossMarker
Mark points using a cross (x). |
|
| Method Summary | |
|---|---|
int |
getValue()
Returns the numerical representation of this enum. |
static MarkerType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static MarkerType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final MarkerType NoMarker
public static final MarkerType SquareMarker
public static final MarkerType CircleMarker
public static final MarkerType CrossMarker
public static final MarkerType XCrossMarker
public static final MarkerType TriangleMarker
| Method Detail |
|---|
public static MarkerType[] values()
for (MarkerType c : MarkerType.values()) System.out.println(c);
public static MarkerType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is nullpublic int getValue()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||