Enum InstrumentationLevel
- All Implemented Interfaces:
Serializable
,Comparable<InstrumentationLevel>
The instrumentation level can be used to indicate if and when an instrument will be
automatically started and stopped.
-
Enum Constant Summary
Enum ConstantDescriptionStart following broker/em initialization and stop when the broker/em is closed.Start following factory initialization and stop when the factory is closed.Start immediately (no special requirements on the broker or factory) and stop when the configuration is closed.Manual start and stop. -
Method Summary
Modifier and TypeMethodDescriptionstatic InstrumentationLevel
Returns the enum constant of this type with the specified name.static InstrumentationLevel[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
IMMEDIATE
Start immediately (no special requirements on the broker or factory) and stop when the configuration is closed. -
FACTORY
Start following factory initialization and stop when the factory is closed. -
BROKER
Start following broker/em initialization and stop when the broker/em is closed. -
MANUAL
Manual start and stop.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-