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