public enum Order extends Enum<Order>
| Enum Constant and Description |
|---|
COLEXICOGRAPHICAL
Describes a colexicographical order.
|
LEXICOGRAPHICAL
Describes a lexicographical order.
|
| Modifier and Type | Method and Description |
|---|---|
static Order |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Order[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Order LEXICOGRAPHICAL
(2,2,2,2) will be greater than the tuple
(2,1,3,2).public static final Order COLEXICOGRAPHICAL
(2,1,3,2) will be greater than the tuple
(2,2,2,2).public static Order[] values()
for (Order c : Order.values()) System.out.println(c);
public static 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 © 2015. All Rights Reserved.