Enum TimeTrackerRecords

    • Enum Constant Summary

      Enum Constants 
      Enum Constant 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
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method 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.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • 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 Detail

      • values

        public static TimeTrackerRecords[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (TimeTrackerRecords c : TimeTrackerRecords.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static TimeTrackerRecords valueOf​(java.lang.String name)
        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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null