public enum ImpactOption extends java.lang.Enum<ImpactOption>
Enum Constant and Description |
---|
ACTION
Indicates that the operation is a write-like,
and would modify the MBean in some way, typically by writing some value
or changing a configuration.
|
ACTION_INFO
Indicates that the operation is both read-like and write-like.
|
INFO
Indicates that the operation is read-like,
it basically returns information.
|
UNKNOWN
Indicates that the operation has an "unknown" nature.
|
Modifier and Type | Method and Description |
---|---|
int |
value() |
static ImpactOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ImpactOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImpactOption ACTION
public static final ImpactOption ACTION_INFO
public static final ImpactOption INFO
public static final ImpactOption UNKNOWN
public static ImpactOption[] values()
for (ImpactOption c : ImpactOption.values()) System.out.println(c);
public static ImpactOption 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 nullpublic int value()
"Copyright © 2010 - 2020 Adobe Systems Incorporated. All Rights Reserved"