public static enum TimerAlert.Type extends Enum<TimerAlert.Type>
Enum Constant and Description |
---|
REACH_DAILY_TIME |
REACH_TOTAL_TIME |
Modifier and Type | Method and Description |
---|---|
static TimerAlert.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TimerAlert.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimerAlert.Type REACH_DAILY_TIME
public static final TimerAlert.Type REACH_TOTAL_TIME
public static TimerAlert.Type[] values()
for (TimerAlert.Type c : TimerAlert.Type.values()) System.out.println(c);
public static TimerAlert.Type 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 © 2007–2013 CodeLutin. All rights reserved.