public enum IndexColumnSortSequence extends java.lang.Enum<IndexColumnSortSequence>
| Enum Constant and Description |
|---|
ascending
Ascending.
|
descending
Descending.
|
unknown
Unknown
|
| Modifier and Type | Method and Description |
|---|---|
static IndexColumnSortSequence |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IndexColumnSortSequence |
valueOfFromCode(java.lang.String code)
Find the enumeration value corresponding to the string.
|
static IndexColumnSortSequence[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndexColumnSortSequence unknown
public static final IndexColumnSortSequence ascending
public static final IndexColumnSortSequence descending
public static IndexColumnSortSequence[] values()
for (IndexColumnSortSequence c : IndexColumnSortSequence.values()) System.out.println(c);
public static IndexColumnSortSequence valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static IndexColumnSortSequence valueOfFromCode(java.lang.String code)
code - Sort sequence code.Copyright © 2000-2019 Sualeh Fatehi. All rights reserved.