public enum ScaleDistribution extends Enum<ScaleDistribution> implements Key
Enum Constant and Description |
---|
linear
Data are spread according to their time (distances can vary).
|
series
Data are spread at the same distance from each other.
|
Modifier and Type | Method and Description |
---|---|
static ScaleDistribution |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScaleDistribution[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScaleDistribution linear
public static final ScaleDistribution series
public static ScaleDistribution[] values()
for (ScaleDistribution c : ScaleDistribution.values()) System.out.println(c);
public static ScaleDistribution 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