public static enum Axis.Type extends Enum<Axis.Type>
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Axis.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Axis.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Axis.Type LINEAR
public static final Axis.Type LOG
public static final Axis.Type DATE
public static final Axis.Type CATEGORY
public static final Axis.Type DEFAULT
public static Axis.Type[] values()
for (Axis.Type c : Axis.Type.values()) System.out.println(c);
public static Axis.Type 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 © 2020. All rights reserved.