public enum OrderType extends Enum<OrderType>
| Enum Constant and Description |
|---|
ASC
Corresponding to ASC of SQL
|
DESC
Corresponding to desc of SQL
|
| Modifier and Type | Method and Description |
|---|---|
String |
getName()
return type of order.
|
static OrderType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OrderType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OrderType ASC
public static final OrderType DESC
public static OrderType[] values()
for (OrderType c : OrderType.values()) System.out.println(c);
public static OrderType 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 String getName()
Copyright © 2024. All rights reserved.