public enum BulkStatus extends Enum<BulkStatus>
| Modifier and Type | Method and Description |
|---|---|
static BulkStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BulkStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BulkStatus PENDING
public static final BulkStatus ONGOING
public static final BulkStatus COMPLETED
public static final BulkStatus ERROR
public static BulkStatus[] values()
for (BulkStatus c : BulkStatus.values()) System.out.println(c);
public static BulkStatus 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 © 2017. All Rights Reserved.