|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Priority>
com.googlecode.charts4j.Priority
public enum Priority
Determines the order in which the chart elements (ex: shape markers) are drawn. LOW specifies the element is drawn before all other parts of the chart. This means the element will be at least partially obscured if another chart element is drawn in the same place. NORMAL is the default. HIGH specifies the element is drawn on top of all other parts of the chart. This means it will at least partially hide another chart elements if it is drawn in the same place.
Enum Constant Summary | |
---|---|
HIGH
High priority. |
|
LOW
Low priority. |
|
NORMAL
Normal priority. |
Method Summary | |
---|---|
String |
toString()
|
static Priority |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Priority[] |
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 Priority LOW
public static final Priority NORMAL
public static final Priority HIGH
Method Detail |
---|
public static final Priority[] values()
for(Priority c : Priority.values()) System.out.println(c);
public static Priority 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<Priority>
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |