public static enum OrderedXYSeries.XOrder extends Enum<OrderedXYSeries.XOrder>
| Enum Constant and Description |
|---|
ASCENDING
XVals are in strict ascending order such that:
x(i) > x(i+1) == true
|
DESCENDING
XVals are in strict descending order such that:
x(i) < x(i+1) == true
|
NONE
XVals appear in no particular order.
|
| Modifier and Type | Method and Description |
|---|---|
static OrderedXYSeries.XOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OrderedXYSeries.XOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OrderedXYSeries.XOrder ASCENDING
public static final OrderedXYSeries.XOrder DESCENDING
public static final OrderedXYSeries.XOrder NONE
public static OrderedXYSeries.XOrder[] values()
for (OrderedXYSeries.XOrder c : OrderedXYSeries.XOrder.values()) System.out.println(c);
public static OrderedXYSeries.XOrder 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