public enum SortOrder extends Enum<SortOrder>
Enum Constant and Description |
---|
ANY
Any order is acceptable.
|
ITEM
Sort by item, then by timestamp.
|
TIMESTAMP
Sort by timestamp.
|
USER
Sort by user, then by timestamp.
|
Modifier and Type | Method and Description |
---|---|
abstract Comparator<Event> |
getEventComparator()
Get the event comparator for a sort order.
|
static SortOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SortOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SortOrder ANY
public static final SortOrder TIMESTAMP
public static final SortOrder USER
public static final SortOrder ITEM
public static SortOrder[] values()
for (SortOrder c : SortOrder.values()) System.out.println(c);
public static SortOrder 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 null@Nullable public abstract Comparator<Event> getEventComparator()
null
if the order is unsorted.