public enum AxisTickStyle extends java.lang.Enum<AxisTickStyle>
WARNING: do not modify the name of this class, its package or its members, as it is exposed via direct Java access from 4GL code.
| Enum Constant and Description |
|---|
DATA_INTERVAL |
PERCENTAGE |
SMART |
| Modifier and Type | Method and Description |
|---|---|
static AxisTickStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AxisTickStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AxisTickStyle DATA_INTERVAL
public static final AxisTickStyle PERCENTAGE
public static final AxisTickStyle SMART
public static AxisTickStyle[] values()
for (AxisTickStyle c : AxisTickStyle.values()) System.out.println(c);
public static AxisTickStyle 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