public static enum PartitionManager.Operation extends Enum<PartitionManager.Operation>
| Enum Constant and Description |
|---|
ADD
A new trigger has been added
|
REMOVE
An existing trigger has been removed
|
UPDATE
An existing trigger or any of its related conditions or dampenings have been modified.
|
| Modifier and Type | Method and Description |
|---|---|
static PartitionManager.Operation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PartitionManager.Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PartitionManager.Operation ADD
public static final PartitionManager.Operation UPDATE
public static final PartitionManager.Operation REMOVE
public static PartitionManager.Operation[] values()
for (PartitionManager.Operation c : PartitionManager.Operation.values()) System.out.println(c);
public static PartitionManager.Operation 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 © 2015 Red Hat, Inc.. All rights reserved.