Serializable, Comparable<SQLServerSortOrder>public enum SQLServerSortOrder extends Enum<SQLServerSortOrder>
| Enum Constant | Description |
|---|---|
Ascending |
|
Descending |
|
Unspecified |
| Modifier and Type | Method | Description |
|---|---|---|
static SQLServerSortOrder |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static SQLServerSortOrder[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SQLServerSortOrder Ascending
public static final SQLServerSortOrder Descending
public static final SQLServerSortOrder Unspecified
public static SQLServerSortOrder[] values()
for (SQLServerSortOrder c : SQLServerSortOrder.values()) System.out.println(c);
public static SQLServerSortOrder 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 © 2018 Microsoft Corporation. All rights reserved.