Enum Constant and Description |
---|
ACTION
Indicates that an action is write-like, and may modify the state
of an MBean in some way.
|
ACTION_INFO
Indicates that an action is both read-like and write-like.
|
INFO
Indicates that an action is read-like, generally only returning
information without modifying any state.
|
UNKNOWN
Indicates that an action has an unknown nature.
|
Modifier and Type | Method and Description |
---|---|
static Impact |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Impact[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Impact INFO
public static final Impact ACTION
public static final Impact ACTION_INFO
public static final Impact UNKNOWN
public static Impact[] values()
for (Impact c : Impact.values()) System.out.println(c);
public static Impact 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