public static enum RelFieldCollation.Direction extends Enum<RelFieldCollation.Direction>
| Enum Constant and Description |
|---|
ASCENDING
Ascending direction: A value is always followed by a greater or equal
value.
|
CLUSTERED
Clustered direction: Values occur in no particular order, and the
same value may occur in contiguous groups, but never occurs after
that.
|
DESCENDING
Descending direction: A value is always followed by a lesser or equal
value.
|
STRICTLY_ASCENDING
Strictly ascending direction: A value is always followed by a greater
value.
|
STRICTLY_DESCENDING
Strictly descending direction: A value is always followed by a lesser
value.
|
| Modifier and Type | Field and Description |
|---|---|
String |
shortString |
| Modifier and Type | Method and Description |
|---|---|
static RelFieldCollation.Direction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RelFieldCollation.Direction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RelFieldCollation.Direction ASCENDING
public static final RelFieldCollation.Direction STRICTLY_ASCENDING
public static final RelFieldCollation.Direction DESCENDING
public static final RelFieldCollation.Direction STRICTLY_DESCENDING
public static final RelFieldCollation.Direction CLUSTERED
public final String shortString
public static RelFieldCollation.Direction[] values()
for (RelFieldCollation.Direction c : RelFieldCollation.Direction.values()) System.out.println(c);
public static RelFieldCollation.Direction 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 © 2012–2015 The Apache Software Foundation. All rights reserved.