public enum ScheduledJobStatus extends Enum<ScheduledJobStatus>
| Enum Constant and Description |
|---|
cancelled |
completed |
enqueued |
failed |
queued |
running |
scheduled |
unknown |
| Modifier and Type | Method and Description |
|---|---|
static ScheduledJobStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScheduledJobStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScheduledJobStatus unknown
public static final ScheduledJobStatus enqueued
public static final ScheduledJobStatus running
public static final ScheduledJobStatus completed
public static final ScheduledJobStatus failed
public static final ScheduledJobStatus cancelled
public static final ScheduledJobStatus scheduled
public static final ScheduledJobStatus queued
public static ScheduledJobStatus[] values()
for (ScheduledJobStatus c : ScheduledJobStatus.values()) System.out.println(c);
public static ScheduledJobStatus 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 © 2024. All rights reserved.