public static enum JmxAction.Impact extends Enum<JmxAction.Impact>
| Enum Constant and Description |
|---|
CLASSLOADING
The call involves the MBeanServer methods that involve accessing classloaders and or using them
to deserialize bytes or instantiate objects.
|
READ_ONLY
The call is read-only
|
WRITE
The call writes data
|
| Modifier and Type | Method and Description |
|---|---|
static JmxAction.Impact |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JmxAction.Impact[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JmxAction.Impact READ_ONLY
public static final JmxAction.Impact WRITE
public static final JmxAction.Impact CLASSLOADING
public static JmxAction.Impact[] values()
for (JmxAction.Impact c : JmxAction.Impact.values()) System.out.println(c);
public static JmxAction.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 © 2019 JBoss by Red Hat. All rights reserved.