public enum ScaleType extends Enum<ScaleType>
Enum Constant and Description |
---|
MULTI
Multiple scales are defined for the chart, based on its type.
|
NONE
No scale is defined for the chart, based on its type.
|
SINGLE
A single scale is defined for the chart, based on its type.
|
Modifier and Type | Method and Description |
---|---|
static ScaleType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScaleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScaleType MULTI
public static final ScaleType SINGLE
public static final ScaleType NONE
public static ScaleType[] values()
for (ScaleType c : ScaleType.values()) System.out.println(c);
public static ScaleType 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 null