Enum TableRequest.Order.Direction
- java.lang.Object
-
- java.lang.Enum<TableRequest.Order.Direction>
-
- zone.berna.datatablesajax.request.TableRequest.Order.Direction
-
- Enclosing class:
- TableRequest.Order
public static enum TableRequest.Order.Direction extends java.lang.Enum<TableRequest.Order.Direction>
Represents the ordering direction of the results.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASCENDING
DESCENDING
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TableRequest.Order.Direction
of(java.lang.String requestMapping)
Converts the string representation of ordering used by DataTables to this enum.static TableRequest.Order.Direction
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TableRequest.Order.Direction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ASCENDING
public static final TableRequest.Order.Direction ASCENDING
-
DESCENDING
public static final TableRequest.Order.Direction DESCENDING
-
-
Method Detail
-
values
public static TableRequest.Order.Direction[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TableRequest.Order.Direction c : TableRequest.Order.Direction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TableRequest.Order.Direction valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
of
public static TableRequest.Order.Direction of(java.lang.String requestMapping)
Converts the string representation of ordering used by DataTables to this enum.- Parameters:
requestMapping
- the string representation ("asc" or "desc")- Returns:
- the corresponding
TableRequest.Order.Direction
value
-
-