public static enum BulkAction.Type extends Enum<BulkAction.Type>
| Enum Constant and Description |
|---|
DELETE |
DRYRUN |
EXECUTE |
REACTIVATE |
SUSPEND |
| Modifier and Type | Method and Description |
|---|---|
static BulkAction.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BulkAction.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BulkAction.Type DELETE
public static final BulkAction.Type REACTIVATE
public static final BulkAction.Type SUSPEND
public static final BulkAction.Type DRYRUN
public static final BulkAction.Type EXECUTE
public static BulkAction.Type[] values()
for (BulkAction.Type c : BulkAction.Type.values()) System.out.println(c);
public static BulkAction.Type 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.