public static enum Scheduled.Mode extends Enum<Scheduled.Mode>
| Modifier and Type | Method and Description |
|---|---|
static Scheduled.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Scheduled.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Scheduled.Mode SINGLE
public static final Scheduled.Mode REPEATED
public static final Scheduled.Mode CONDITION
public static final Scheduled.Mode QUEUE
public static Scheduled.Mode[] values()
for (Scheduled.Mode c : Scheduled.Mode.values()) System.out.println(c);
public static Scheduled.Mode 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.