|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<PointStyle>
org.achartengine.chart.PointStyle
public enum PointStyle
The chart point style enumerator.
Enum Constant Summary | |
---|---|
CIRCLE
|
|
DIAMOND
|
|
POINT
|
|
SQUARE
|
|
TRIANGLE
|
|
X
|
Method Summary | |
---|---|
static int |
getIndexForName(java.lang.String name)
Returns the point shape index based on the given name. |
java.lang.String |
getName()
Returns the point shape name. |
static PointStyle |
getPointStyleForName(java.lang.String name)
Return the point shape that has the provided symbol. |
java.lang.String |
toString()
Returns the point shape name. |
static PointStyle |
valueOf(java.lang.String name)
Returns 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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final PointStyle X
public static final PointStyle CIRCLE
public static final PointStyle TRIANGLE
public static final PointStyle SQUARE
public static final PointStyle DIAMOND
public static final PointStyle POINT
Method Detail |
---|
public static PointStyle[] values()
for (PointStyle c : PointStyle.values()) System.out.println(c);
public static PointStyle 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 java.lang.String getName()
public java.lang.String toString()
toString
in class java.lang.Enum<PointStyle>
public static PointStyle getPointStyleForName(java.lang.String name)
name
- the point style name
public static int getIndexForName(java.lang.String name)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |