Serializable, Comparable<XQueryConstants.OrderDirection>public static enum XQueryConstants.OrderDirection extends Enum<XQueryConstants.OrderDirection>
| Enum Constant | Description |
|---|---|
ASCENDING |
|
DESCENDING |
| Modifier and Type | Method | Description |
|---|---|---|
static XQueryConstants.OrderDirection |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static XQueryConstants.OrderDirection[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XQueryConstants.OrderDirection ASCENDING
public static final XQueryConstants.OrderDirection DESCENDING
public static XQueryConstants.OrderDirection[] values()
for (XQueryConstants.OrderDirection c : XQueryConstants.OrderDirection.values()) System.out.println(c);
public static XQueryConstants.OrderDirection 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 © 2019 Apache Software Foundation. All Rights Reserved.