public static enum ManagedOperation.Impact extends Enum<ManagedOperation.Impact>
Enum Constant and Description |
---|
Lifecycle
The operation affects the component life-cycle/runtime state
|
ReadOnly
There is not modification of the ManagedObject
|
ReadWrite
The impact may modify the ManagedObject
|
Unknown
The impact is not known
|
WriteOnly
The impact is to modify the ManagedObject
|
Modifier and Type | Method and Description |
---|---|
static ManagedOperation.Impact |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ManagedOperation.Impact[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ManagedOperation.Impact ReadOnly
public static final ManagedOperation.Impact ReadWrite
public static final ManagedOperation.Impact WriteOnly
public static final ManagedOperation.Impact Lifecycle
public static final ManagedOperation.Impact Unknown
public static ManagedOperation.Impact[] values()
for (ManagedOperation.Impact c : ManagedOperation.Impact.values()) System.out.println(c);
public static ManagedOperation.Impact 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 © 2013 JBoss, a division of Red Hat, Inc.. All Rights Reserved.