public static enum AbstractQuery.NullHandlingOnOrder extends Enum<AbstractQuery.NullHandlingOnOrder>
| Enum Constant and Description |
|---|
NULLS_FIRST |
NULLS_LAST |
| Modifier and Type | Method and Description |
|---|---|
static AbstractQuery.NullHandlingOnOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractQuery.NullHandlingOnOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractQuery.NullHandlingOnOrder NULLS_FIRST
public static final AbstractQuery.NullHandlingOnOrder NULLS_LAST
public static AbstractQuery.NullHandlingOnOrder[] values()
for (AbstractQuery.NullHandlingOnOrder c : AbstractQuery.NullHandlingOnOrder.values()) System.out.println(c);
public static AbstractQuery.NullHandlingOnOrder 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 © 2016 Alfresco. All rights reserved.