public enum JobStatus extends Enum<JobStatus> implements com.facebook.thrift.TEnum
| Enum Constant and Description |
|---|
FAILED |
FINISHED |
INVALID |
QUEUE |
RUNNING |
STOPPED |
| Modifier and Type | Method and Description |
|---|---|
static JobStatus |
findByValue(int value)
Find a the enum type by its integer value, as defined in the Thrift IDL.
|
int |
getValue()
Get the integer value of this enum value, as defined in the Thrift IDL.
|
static JobStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobStatus QUEUE
public static final JobStatus RUNNING
public static final JobStatus FINISHED
public static final JobStatus FAILED
public static final JobStatus STOPPED
public static final JobStatus INVALID
public static JobStatus[] values()
for (JobStatus c : JobStatus.values()) System.out.println(c);
public static 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 nullpublic int getValue()
getValue in interface com.facebook.thrift.TEnumpublic static JobStatus findByValue(int value)
Copyright © 2022. All rights reserved.