|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<AxisTextAlignment>
com.googlecode.charts4j.AxisTextAlignment
public enum AxisTextAlignment
Enumeration for specifying position of label with respect to axis tick mark.
Enum Constant Summary | |
---|---|
CENTER
Label position centered above tick mark. |
|
LEFT
Label position left of tick mark. |
|
RIGHT
Label position to the right of the text mark. |
Method Summary | |
---|---|
String |
toString()
|
static AxisTextAlignment |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static AxisTextAlignment[] |
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 AxisTextAlignment LEFT
public static final AxisTextAlignment CENTER
public static final AxisTextAlignment RIGHT
Method Detail |
---|
public static final AxisTextAlignment[] values()
for(AxisTextAlignment c : AxisTextAlignment.values()) System.out.println(c);
public static AxisTextAlignment 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<AxisTextAlignment>
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |