public static enum IAxis.Position extends Enum<IAxis.Position>
| Enum Constant and Description |
|---|
Primary
bottom or left side of chart
|
Secondary
top or right side of chart
|
| Modifier and Type | Method and Description |
|---|---|
static IAxis.Position |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IAxis.Position[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IAxis.Position Primary
public static final IAxis.Position Secondary
public static IAxis.Position[] values()
for (IAxis.Position c : IAxis.Position.values()) System.out.println(c);
public static IAxis.Position valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016. All Rights Reserved.