public static enum TaskFilter.TimeFrame extends java.lang.Enum<TaskFilter.TimeFrame>
Enum Constant and Description |
---|
AFTER
After.
|
ALL
All.
|
BEFORE
Before.
|
BETWEEN
Between.
|
LAST
Last ...
|
LAST24HOURS
Last 24 hour.
|
LAST7DAYS
Last 7 days.
|
LASTHOUR
Last hour.
|
Modifier and Type | Method and Description |
---|---|
static TaskFilter.TimeFrame |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TaskFilter.TimeFrame[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskFilter.TimeFrame ALL
public static final TaskFilter.TimeFrame LASTHOUR
public static final TaskFilter.TimeFrame LAST24HOURS
public static final TaskFilter.TimeFrame LAST7DAYS
public static final TaskFilter.TimeFrame LAST
public static final TaskFilter.TimeFrame BEFORE
public static final TaskFilter.TimeFrame AFTER
public static final TaskFilter.TimeFrame BETWEEN
public static TaskFilter.TimeFrame[] values()
for (TaskFilter.TimeFrame c : TaskFilter.TimeFrame.values()) System.out.println(c);
public static TaskFilter.TimeFrame 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