public static enum MappingExtension.Direction extends java.lang.Enum<MappingExtension.Direction>
Enum Constant and Description |
---|
ASC
Sort Ascending.
|
DESC
Sort Descending.
|
Modifier and Type | Method and Description |
---|---|
static MappingExtension.Direction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MappingExtension.Direction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MappingExtension.Direction ASC
public static final MappingExtension.Direction DESC
public static MappingExtension.Direction[] values()
for (MappingExtension.Direction c : MappingExtension.Direction.values()) System.out.println(c);
public static MappingExtension.Direction valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null