public enum ImpactType extends Enum<ImpactType>
| Enum Constant and Description |
|---|
IDEMPOTENT_WRITE
Write operation, changes the state of the managed resource in an idempotent manner.
|
READ
Read operation, does not affect state of the managed resource.
|
WRITE
Write operation, changes the state of the managed resource.
|
| Modifier and Type | Method and Description |
|---|---|
static ImpactType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImpactType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImpactType READ
MBeanOperationInfo.INFO for JMX and GET method for Rest.public static final ImpactType WRITE
MBeanOperationInfo.INFO for JMX and POST method for Rest.public static final ImpactType IDEMPOTENT_WRITE
MBeanOperationInfo.INFO for JMX and PUT method for Rest.public static ImpactType[] values()
for (ImpactType c : ImpactType.values()) System.out.println(c);
public static ImpactType 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 © 2014 eXo Platform SAS. All Rights Reserved.