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 |
|---|---|
String |
value()
Returns the name value of property
|
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.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfcheckIfValid, compare, create, equals, getKeyByValue, getKeyByValue, hasKeyByValue, isValidpublic 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