|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<RelFieldCollation.Direction>
org.eigenbase.rel.RelFieldCollation.Direction
public static enum RelFieldCollation.Direction
Direction that a field is ordered in.
| Enum Constant Summary | |
|---|---|
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. |
|
StrictlyAscending
Strictly ascending direction: A value is always followed by a greater value. |
|
StrictlyDescending
Strictly descending direction: A value is always followed by a lesser value. |
|
| Method Summary | |
|---|---|
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're declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final RelFieldCollation.Direction Ascending
public static final RelFieldCollation.Direction StrictlyAscending
public static final RelFieldCollation.Direction Descending
public static final RelFieldCollation.Direction StrictlyDescending
public static final RelFieldCollation.Direction Clustered
| Method Detail |
|---|
public static final 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 name
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||