Enum Class TimeTrackerRecords

java.lang.Object
java.lang.Enum<TimeTrackerRecords>
org.bonitasoft.engine.tracking.TimeTrackerRecords
All Implemented Interfaces:
Serializable, Comparable<TimeTrackerRecords>, Constable

public enum TimeTrackerRecords extends Enum<TimeTrackerRecords>
  • Enum Constant Details

    • EXECUTE_CONNECTOR_INCLUDING_POOL_SUBMIT

      public static final TimeTrackerRecords 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

      public static final TimeTrackerRecords 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

      public static final TimeTrackerRecords 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

      public static final TimeTrackerRecords EXECUTE_CONNECTOR_INPUT_EXPRESSIONS
      this key is used to track connector input parameters processing only (not pooling, not execute, not output)
    • EXECUTE_CONNECTOR_DISCONNECT

      public static final TimeTrackerRecords EXECUTE_CONNECTOR_DISCONNECT
      this key is used to track only the call to disconnect on a connector
    • EXECUTE_CONNECTOR_WORK

      public static final TimeTrackerRecords EXECUTE_CONNECTOR_WORK
      this key is used to track the whole connector execution including pooling, input, execute, output and disconnect
    • EVALUATE_EXPRESSION_INCLUDING_CONTEXT

      public static final TimeTrackerRecords EVALUATE_EXPRESSION_INCLUDING_CONTEXT
      this key is used to track the whole expression evaluation including its context. See ExpressionResolver.
    • EVALUATE_EXPRESSION

      public static final TimeTrackerRecords EVALUATE_EXPRESSION
      this key is used to track the expression evaluation "only", assuming the context is already evaluated if necessary. See ExpressionService.
    • EVALUATE_EXPRESSIONS

      public static final TimeTrackerRecords 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

      public static TimeTrackerRecords[] 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

      public static TimeTrackerRecords valueOf(String name)
      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 name
      NullPointerException - if the argument is null