|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<LegendPosition>
com.googlecode.charts4j.LegendPosition
public enum LegendPosition
Enumeration for specifying legend position.
Enum Constant Summary | |
---|---|
BOTTOM
Legend position at bottom. |
|
LEFT
Legend position at left. |
|
RIGHT
Legend position at right. |
|
TOP
Legend position at top. |
Method Summary | |
---|---|
String |
toString()
|
static LegendPosition |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static LegendPosition[] |
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 LegendPosition TOP
public static final LegendPosition BOTTOM
public static final LegendPosition RIGHT
public static final LegendPosition LEFT
Method Detail |
---|
public static final LegendPosition[] values()
for(LegendPosition c : LegendPosition.values()) System.out.println(c);
public static LegendPosition 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<LegendPosition>
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |