| Enum Constant and Description | 
|---|
DISABLED
The task is never executed 
 | 
OPPORTUNISTIC
The task decides if it wants to run 
 | 
SCHEDULED
Executes at pre-defined times 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static PlanKind | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static PlanKind[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final PlanKind OPPORTUNISTIC
public static final PlanKind SCHEDULED
public static final PlanKind DISABLED
public static PlanKind[] values()
for (PlanKind c : PlanKind.values()) System.out.println(c);
public static PlanKind 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 nullCopyright © 2023. All Rights Reserved.