Enum Class ProfilingMode
- All Implemented Interfaces:
Serializable
,Comparable<ProfilingMode>
,Constable
EXPERIMENTAL
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic ProfilingMode
getValue()
static ProfilingMode
Returns the enum constant of this class with the specified name.static ProfilingMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ON
Profiling is enabled and is driven by setting logging levels via system configuration object. This is the same as profilingEnabled = true in pre-4.0 versions. -
OFF
Profiling is disabled. MidpointInterceptor is not loaded. This is the same as profilingEnabled = false in pre-4.0 versions. -
DYNAMIC
Profiling is enabled/disabled on demand. MidpointInterceptor is loaded and ready to use. Profiling is started either on request of midPoint code (see e.g. profilingObjectIntervalStart/profilingObjectIntervalLength extension properties) or traditionally by setting logging levels via system configuration object.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
fromValue
-
getValue
-