Enum Class ExecutionLogger.LogCategory
- All Implemented Interfaces:
Serializable, Comparable<ExecutionLogger.LogCategory>, Constable
- Enclosing class:
ExecutionLogger
Categories for log entries.
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCustom log entryData flow between nodesError occurredExecution completedExecution startedExpression evaluation resultsNode execution completedNode input data loggedNode output data loggedNode execution skippedNode execution startedPerformance metricRate limiting eventRetry attemptVariable value changes -
Method Summary
Modifier and TypeMethodDescriptionstatic ExecutionLogger.LogCategoryReturns the enum constant of this class with the specified name.static ExecutionLogger.LogCategory[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EXECUTION_START
Execution started -
EXECUTION_END
Execution completed -
NODE_START
Node execution started -
NODE_END
Node execution completed -
NODE_SKIP
Node execution skipped -
NODE_INPUT
Node input data logged -
NODE_OUTPUT
Node output data logged -
DATA_FLOW
Data flow between nodes -
VARIABLE
Variable value changes -
EXPRESSION_EVAL
Expression evaluation results -
ERROR
Error occurred -
RETRY
Retry attempt -
RATE_LIMIT
Rate limiting event -
PERFORMANCE
Performance metric -
CUSTOM
Custom log entry
-
-
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
-