public static enum AbstractPersistence.SQL_ORDER extends Enum<AbstractPersistence.SQL_ORDER>
Modifier and Type | Method and Description |
---|---|
static AbstractPersistence.SQL_ORDER |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractPersistence.SQL_ORDER[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractPersistence.SQL_ORDER ASC
public static final AbstractPersistence.SQL_ORDER DESC
public static AbstractPersistence.SQL_ORDER[] values()
for (AbstractPersistence.SQL_ORDER c : AbstractPersistence.SQL_ORDER.values()) System.out.println(c);
public static AbstractPersistence.SQL_ORDER 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. All Rights Reserved.