public enum OperationImpact extends java.lang.Enum<OperationImpact>
MBeanOperationInfo
impact integer values.MBeanOperationInfo.getImpact()
Enum Constant and Description |
---|
ACTION |
ACTION_INFO |
INFO |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static OperationImpact |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OperationImpact[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperationImpact ACTION
MBeanOperationInfo.ACTION
public static final OperationImpact ACTION_INFO
MBeanOperationInfo.ACTION_INFO
public static final OperationImpact INFO
MBeanOperationInfo.INFO
public static final OperationImpact UNKNOWN
MBeanOperationInfo.UNKNOWN
public static OperationImpact[] values()
for (OperationImpact c : OperationImpact.values()) System.out.println(c);
public static OperationImpact valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null