public static enum RegistryJob.JobStatus extends Enum<RegistryJob.JobStatus>
| Enum Constant and Description |
|---|
CANCELLED |
COMPLETED |
ENQUEUED |
FAILED |
RUNNING |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static RegistryJob.JobStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RegistryJob.JobStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RegistryJob.JobStatus UNKNOWN
public static final RegistryJob.JobStatus ENQUEUED
public static final RegistryJob.JobStatus RUNNING
public static final RegistryJob.JobStatus COMPLETED
public static final RegistryJob.JobStatus FAILED
public static final RegistryJob.JobStatus CANCELLED
public static RegistryJob.JobStatus[] values()
for (RegistryJob.JobStatus c : RegistryJob.JobStatus.values()) System.out.println(c);
public static RegistryJob.JobStatus 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.