public static enum TransferConverter.Order extends Enum<TransferConverter.Order>
Enum Constant and Description |
---|
ascFile
By fileName, in ascending order.
|
ascId
By transferId, in ascending order.
|
ascStart
By starting date, in ascending order.
|
ascStop
By end date, in ascending order.
|
descFile
By fileName, in descending order.
|
descId
By transferId, in descending order.
|
descStart
By starting date, in descending order.
|
descStop
By end date, in descending order.
|
Modifier and Type | Field and Description |
---|---|
boolean |
ascend
If the order is ascending or descending.
|
String |
column
The name of the database column used for sorting.
|
Modifier and Type | Method and Description |
---|---|
static TransferConverter.Order |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransferConverter.Order[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransferConverter.Order ascId
public static final TransferConverter.Order descId
public static final TransferConverter.Order ascFile
public static final TransferConverter.Order descFile
public static final TransferConverter.Order ascStart
public static final TransferConverter.Order descStart
public static final TransferConverter.Order ascStop
public static final TransferConverter.Order descStop
public final String column
public final boolean ascend
public static TransferConverter.Order[] values()
for (TransferConverter.Order c : TransferConverter.Order.values()) System.out.println(c);
public static TransferConverter.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 © 2009–2020 Waarp. All rights reserved.