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