public static enum LinedChart.SORTING extends java.lang.Enum<LinedChart.SORTING>
Enum Constant and Description |
---|
BY_DURATION |
BY_STARTING_EVENT |
Modifier and Type | Method and Description |
---|---|
static LinedChart.SORTING |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LinedChart.SORTING[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LinedChart.SORTING BY_DURATION
public static final LinedChart.SORTING BY_STARTING_EVENT
public static LinedChart.SORTING[] values()
for (LinedChart.SORTING c : LinedChart.SORTING.values()) System.out.println(c);
public static LinedChart.SORTING 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