public enum IndexColumnSortSequence extends Enum<IndexColumnSortSequence>
| Enum Constant and Description |
|---|
ascending
Ascending.
|
descending
Descending.
|
unknown
Unknown
|
| Modifier and Type | Method and Description |
|---|---|
static IndexColumnSortSequence |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IndexColumnSortSequence |
valueOfFromCode(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(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 static IndexColumnSortSequence valueOfFromCode(String code)
code - Sort sequence code.Copyright © 2000-2024 Sualeh Fatehi. All rights reserved.