com.ibm.streams.operator.management
Enum OperatorManagement.Type
- java.lang.Object
-
- java.lang.Enum<OperatorManagement.Type>
-
- com.ibm.streams.operator.management.OperatorManagement.Type
-
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<OperatorManagement.Type>
- Enclosing class:
- OperatorManagement
public static enum OperatorManagement.Type extends java.lang.Enum<OperatorManagement.Type>
Enumeration of names for anObjectName
'stype
key property for MXBeans inOperatorManagement.STREAMS_OPERATOR_JMX_DOMAIN
.- Since:
- InfoSphere® Streams Version 3.0
-
-
Enum Constant Summary
Enum Constants Enum Constant and Description METRIC
Management bean represents a metric and is an instance ofMetricMXBean
.OPERATORCONTEXT
Management bean is an instance ofOperatorContextMXBean
.PE
Management bean is an instance ofProcessingElementMXBean
.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method and Description java.lang.String
type()
Return the value used for theObjectName
'stype
key property for this management bean type.static OperatorManagement.Type
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static OperatorManagement.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PE
public static final OperatorManagement.Type PE
Management bean is an instance ofProcessingElementMXBean
.
-
OPERATORCONTEXT
public static final OperatorManagement.Type OPERATORCONTEXT
Management bean is an instance ofOperatorContextMXBean
.
-
METRIC
public static final OperatorManagement.Type METRIC
Management bean represents a metric and is an instance ofMetricMXBean
.
-
-
Method Detail
-
values
public static OperatorManagement.Type[] 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 (OperatorManagement.Type c : OperatorManagement.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperatorManagement.Type valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
type
public java.lang.String type()
Return the value used for theObjectName
'stype
key property for this management bean type.- Returns:
- Value used for the
type
key property.
-
-