public enum TimeTrackerRecords extends java.lang.Enum<TimeTrackerRecords>
| Enum Constant and Description |
|---|
EVALUATE_EXPRESSION
this key is used to track the expression evaluation "only", assuming the context is already
evaluated if necessary.
|
EVALUATE_EXPRESSION_INCLUDING_CONTEXT
this key is used to track the whole expression evaluation including its context.
|
EVALUATE_EXPRESSIONS
this key is used to track the expression evaluation "only", assuming the context is already
evaluated if necessary.
|
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_DISCONNECT
this key is used to track only the call to disconnect on a connector
|
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_INPUT_EXPRESSIONS
this key is used to track connector input parameters processing only (not pooling, not execute,
not output)
|
EXECUTE_CONNECTOR_OUTPUT_OPERATIONS
this key is used to track connector output parameters processing only (not pooling, not input,
not execute)
|
EXECUTE_CONNECTOR_WORK
this key is used to track the whole connector execution including pooling, input, execute,
output and disconnect
|
| Modifier and Type | Method and Description |
|---|---|
static TimeTrackerRecords |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TimeTrackerRecords[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimeTrackerRecords EXECUTE_CONNECTOR_INCLUDING_POOL_SUBMIT
public static final TimeTrackerRecords EXECUTE_CONNECTOR_CALLABLE
public static final TimeTrackerRecords EXECUTE_CONNECTOR_OUTPUT_OPERATIONS
public static final TimeTrackerRecords EXECUTE_CONNECTOR_INPUT_EXPRESSIONS
public static final TimeTrackerRecords EXECUTE_CONNECTOR_DISCONNECT
public static final TimeTrackerRecords EXECUTE_CONNECTOR_WORK
public static final TimeTrackerRecords EVALUATE_EXPRESSION_INCLUDING_CONTEXT
public static final TimeTrackerRecords EVALUATE_EXPRESSION
public static final TimeTrackerRecords EVALUATE_EXPRESSIONS
public static TimeTrackerRecords[] values()
for (TimeTrackerRecords c : TimeTrackerRecords.values()) System.out.println(c);
public static TimeTrackerRecords valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null