@Public public enum Order extends Enum<Order>
Enum Constant and Description |
---|
ANY
Indicates an order without a direction.
|
ASCENDING
Indicates an ascending order.
|
DESCENDING
Indicates a descending order.
|
NONE
Indicates no order.
|
Modifier and Type | Method and Description |
---|---|
String |
getShortName() |
boolean |
isOrdered()
Checks, if this enum constant represents in fact an order.
|
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 NONE
public static final Order ASCENDING
public static final Order DESCENDING
public static final Order ANY
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 nullpublic boolean isOrdered()
public String getShortName()
Copyright © 2014–2024 The Apache Software Foundation. All rights reserved.