public static enum PropertyValueComparator.Order extends Enum<PropertyValueComparator.Order>
| Enum Constant and Description |
|---|
Ascending |
Descending |
| Modifier and Type | Method and Description |
|---|---|
static PropertyValueComparator.Order |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropertyValueComparator.Order[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyValueComparator.Order Ascending
public static final PropertyValueComparator.Order Descending
public static PropertyValueComparator.Order[] values()
for (PropertyValueComparator.Order c : PropertyValueComparator.Order.values()) System.out.println(c);
public static PropertyValueComparator.Order 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 nullCopyright © 2014. All rights reserved.