public enum WebTimerType extends Enum<WebTimerType>
| Enum Constant and Description |
|---|
atDayEnd
Fire event when current day ends.
|
atHourEnd
Fire event when current hour ends.
|
atMinuteEnd
Fire event when current minute ends.
|
atMonthEnd
Fire event when current month ends.
|
atYearEnd
Fire event when current year ends.
|
| Modifier and Type | Method and Description |
|---|---|
static WebTimerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WebTimerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WebTimerType atMinuteEnd
public static final WebTimerType atHourEnd
public static final WebTimerType atDayEnd
public static final WebTimerType atMonthEnd
public static final WebTimerType atYearEnd
public static WebTimerType[] values()
for (WebTimerType c : WebTimerType.values()) System.out.println(c);
public static WebTimerType 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 © 2020. All rights reserved.