public enum OrderByType extends Enum<OrderByType>
| Enum Constant and Description |
|---|
ASC |
ASC_NULLS_FIRST |
ASC_NULLS_LAST |
DESC |
DESC_NULLS_FIRST |
DESC_NULLS_LAST |
| Modifier and Type | Method and Description |
|---|---|
String |
getSqlKeyword() |
static OrderByType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OrderByType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OrderByType ASC
public static final OrderByType DESC
public static final OrderByType ASC_NULLS_LAST
public static final OrderByType DESC_NULLS_FIRST
public static final OrderByType ASC_NULLS_FIRST
public static final OrderByType DESC_NULLS_LAST
public static OrderByType[] values()
for (OrderByType c : OrderByType.values()) System.out.println(c);
public static OrderByType 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 getSqlKeyword()
Copyright © 2018 Bonitasoft S.A.. All rights reserved.