Package ru.funsys.avalanche.jmx
Enum JMXOperation.IMPACT
- java.lang.Object
-
- java.lang.Enum<JMXOperation.IMPACT>
-
- ru.funsys.avalanche.jmx.JMXOperation.IMPACT
-
- All Implemented Interfaces:
Serializable
,Comparable<JMXOperation.IMPACT>
- Enclosing class:
- JMXOperation
public static enum JMXOperation.IMPACT extends Enum<JMXOperation.IMPACT>
Перечисления типов воздействия, используется вJMXOperation.impact()
.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTION
ACTION_INFO
INFO
UNKNOWN
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static JMXOperation.IMPACT
valueOf(String name)
Returns the enum constant of this type with the specified name.static JMXOperation.IMPACT[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INFO
public static final JMXOperation.IMPACT INFO
-
ACTION
public static final JMXOperation.IMPACT ACTION
-
ACTION_INFO
public static final JMXOperation.IMPACT ACTION_INFO
-
UNKNOWN
public static final JMXOperation.IMPACT UNKNOWN
-
-
Method Detail
-
values
public static JMXOperation.IMPACT[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (JMXOperation.IMPACT c : JMXOperation.IMPACT.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JMXOperation.IMPACT valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-