public static enum EventTime.SortBy extends Enum<EventTime.SortBy>
| Enum Constant and Description |
|---|
AVERAGE_TIME |
COUNT |
EXCEEDED_COUNT |
MAX_TIME |
MIN_TIME |
NAME |
TOTAL_TIME |
| Modifier and Type | Method and Description |
|---|---|
static EventTime.SortBy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventTime.SortBy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventTime.SortBy NAME
public static final EventTime.SortBy COUNT
public static final EventTime.SortBy TOTAL_TIME
public static final EventTime.SortBy AVERAGE_TIME
public static final EventTime.SortBy MIN_TIME
public static final EventTime.SortBy MAX_TIME
public static final EventTime.SortBy EXCEEDED_COUNT
public static EventTime.SortBy[] values()
for (EventTime.SortBy c : EventTime.SortBy.values()) System.out.println(c);
public static EventTime.SortBy 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 © 2023. All rights reserved.