public static enum XAxis.XAxisPosition extends java.lang.Enum<XAxis.XAxisPosition>
| Enum Constant and Description |
|---|
BOTH_SIDED |
BOTTOM |
BOTTOM_INSIDE |
TOP |
TOP_INSIDE |
| Modifier and Type | Method and Description |
|---|---|
static XAxis.XAxisPosition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static XAxis.XAxisPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XAxis.XAxisPosition TOP
public static final XAxis.XAxisPosition BOTTOM
public static final XAxis.XAxisPosition BOTH_SIDED
public static final XAxis.XAxisPosition TOP_INSIDE
public static final XAxis.XAxisPosition BOTTOM_INSIDE
public static XAxis.XAxisPosition[] values()
for (XAxis.XAxisPosition c : XAxis.XAxisPosition.values()) System.out.println(c);
public static XAxis.XAxisPosition 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 namejava.lang.NullPointerException - if the argument is null