|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Shape>
com.googlecode.charts4j.Shape
public enum Shape
Enumeration for specifying shape of ShapeMarker
.
Enum Constant Summary | |
---|---|
ARROW
Arrow. |
|
CIRCLE
Circle. |
|
CROSS
Cross. |
|
DIAMOND
Diamond. |
|
HORIZONTAL_LINE
Horizontal line. |
|
SQUARE
Square. |
|
VERTICAL_LINE_FULL
Full vertical line spanning chart. |
|
VERTICAL_LINE_PARTIAL
Partial vertical line. |
|
X
X. |
Method Summary | |
---|---|
String |
toString()
|
static Shape |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Shape[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Shape ARROW
public static final Shape CROSS
public static final Shape DIAMOND
public static final Shape CIRCLE
public static final Shape SQUARE
public static final Shape VERTICAL_LINE_PARTIAL
public static final Shape VERTICAL_LINE_FULL
public static final Shape HORIZONTAL_LINE
public static final Shape X
Method Detail |
---|
public static final Shape[] values()
for(Shape c : Shape.values()) System.out.println(c);
public static Shape valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified namepublic String toString()
toString
in class Enum<Shape>
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |