public static enum BulkActionResult.Status extends Enum<BulkActionResult.Status>
| Enum Constant and Description |
|---|
CREATED |
FAILURE |
SUBMITTED |
SUCCESS |
UNSUBMITTED |
| Modifier and Type | Method and Description |
|---|---|
static BulkActionResult.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BulkActionResult.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BulkActionResult.Status SUCCESS
public static final BulkActionResult.Status FAILURE
public static final BulkActionResult.Status CREATED
public static final BulkActionResult.Status SUBMITTED
public static final BulkActionResult.Status UNSUBMITTED
public static BulkActionResult.Status[] values()
for (BulkActionResult.Status c : BulkActionResult.Status.values()) System.out.println(c);
public static BulkActionResult.Status 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 © 2010–2018 The Apache Software Foundation. All rights reserved.