public enum JobStateEnum extends Enum<JobStateEnum>
| Enum Constant and Description |
|---|
Aborted
Enumeration : Aborted
|
Closed
Enumeration : Closed
|
Failed
Enumeration : Failed
|
InProgress
This state is used by bulk api v2.
|
JobComplete
This state is used by bulk api v2.
|
Open
Enumeration : Open
|
UploadComplete
Enumeration : UploadComplete
This state is used by the users to indicate that all the data has been uploaded and it's safe to start processing.
|
| Modifier and Type | Method and Description |
|---|---|
static JobStateEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobStateEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobStateEnum Open
public static final JobStateEnum Closed
public static final JobStateEnum Aborted
public static final JobStateEnum Failed
public static final JobStateEnum UploadComplete
public static final JobStateEnum InProgress
public static final JobStateEnum JobComplete
public static JobStateEnum[] values()
for (JobStateEnum c : JobStateEnum.values()) System.out.println(c);
public static JobStateEnum 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 © 2020. All rights reserved.