public enum ChartAxis extends Enum<ChartAxis>
| Enum Constant and Description |
|---|
r
Enumeration : r
|
x
Enumeration : x
|
y
Enumeration : y
|
y2
Enumeration : y2
|
| Modifier and Type | Field and Description |
|---|---|
static Map<String,String> |
valuesToEnums |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static ChartAxis |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChartAxis[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChartAxis x
public static final ChartAxis y
public static final ChartAxis y2
public static final ChartAxis r
public static ChartAxis[] values()
for (ChartAxis c : ChartAxis.values()) System.out.println(c);
public static ChartAxis 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 © 2015. All Rights Reserved.