public static enum Schedule.Type extends Enum<Schedule.Type>
| Enum Constant and Description |
|---|
ADVANCED |
DAY |
HOUR |
MONTH |
WEEK |
YEAR |
| Modifier and Type | Method and Description |
|---|---|
static Schedule.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Schedule.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Schedule.Type HOUR
public static final Schedule.Type DAY
public static final Schedule.Type WEEK
public static final Schedule.Type MONTH
public static final Schedule.Type YEAR
public static final Schedule.Type ADVANCED
public static Schedule.Type[] values()
for (Schedule.Type c : Schedule.Type.values()) System.out.println(c);
public static Schedule.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 © 2016. All rights reserved.