Package org.bonitasoft.engine.tracking
Enum Class TimeTrackerRecords
- All Implemented Interfaces:
Serializable,Comparable<TimeTrackerRecords>,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionthis key is used to track the expression evaluation "only", assuming the context is already evaluated if necessary.this key is used to track the whole expression evaluation including its context.this key is used to track the expression evaluation "only", assuming the context is already evaluated if necessary.this key is used to track the connector execution (execute method only, not in/out parameters processing), without potential pool submission impactthis key is used to track only the call to disconnect on a connectorthis key is used to track the connector execution (execute method only, not in/out parameters processing) including the pool submission (that may have additional impact if the pool is full).this key is used to track connector input parameters processing only (not pooling, not execute, not output)this key is used to track connector output parameters processing only (not pooling, not input, not execute)this key is used to track the whole connector execution including pooling, input, execute, output and disconnect -
Method Summary
Modifier and TypeMethodDescriptionstatic TimeTrackerRecordsReturns the enum constant of this class with the specified name.static TimeTrackerRecords[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EXECUTE_CONNECTOR_INCLUDING_POOL_SUBMIT
this key is used to track the connector execution (execute method only, not in/out parameters processing) including the pool submission (that may have additional impact if the pool is full). -
EXECUTE_CONNECTOR_CALLABLE
this key is used to track the connector execution (execute method only, not in/out parameters processing), without potential pool submission impact -
EXECUTE_CONNECTOR_OUTPUT_OPERATIONS
this key is used to track connector output parameters processing only (not pooling, not input, not execute) -
EXECUTE_CONNECTOR_INPUT_EXPRESSIONS
this key is used to track connector input parameters processing only (not pooling, not execute, not output) -
EXECUTE_CONNECTOR_DISCONNECT
this key is used to track only the call to disconnect on a connector -
EXECUTE_CONNECTOR_WORK
this key is used to track the whole connector execution including pooling, input, execute, output and disconnect -
EVALUATE_EXPRESSION_INCLUDING_CONTEXT
this key is used to track the whole expression evaluation including its context. See ExpressionResolver. -
EVALUATE_EXPRESSION
this key is used to track the expression evaluation "only", assuming the context is already evaluated if necessary. See ExpressionService. -
EVALUATE_EXPRESSIONS
this key is used to track the expression evaluation "only", assuming the context is already evaluated if necessary. Evaluates a set of expression in one measure. See ExpressionService.
-
-
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
-