Enum Class LogOrRethrowExceptionHandler.Level
java.lang.Object
java.lang.Enum<LogOrRethrowExceptionHandler.Level>
org.springframework.batch.repeat.exception.LogOrRethrowExceptionHandler.Level
- All Implemented Interfaces:
Serializable
,Comparable<LogOrRethrowExceptionHandler.Level>
,Constable
- Enclosing class:
- LogOrRethrowExceptionHandler
public static enum LogOrRethrowExceptionHandler.Level
extends Enum<LogOrRethrowExceptionHandler.Level>
Logging levels for the handler.
- Author:
- Dave Syer
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionKey forClassifier
signalling that the throwable should be logged at debug level.Key forClassifier
signalling that the throwable should be logged at error level.Key forClassifier
signalling that the throwable should be rethrown.Key forClassifier
signalling that the throwable should be logged at warn level. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static LogOrRethrowExceptionHandler.Level[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
RETHROW
Key forClassifier
signalling that the throwable should be rethrown. If the throwable is not a RuntimeException it is wrapped in aRepeatException
. -
DEBUG
Key forClassifier
signalling that the throwable should be logged at debug level. -
WARN
Key forClassifier
signalling that the throwable should be logged at warn level. -
ERROR
Key forClassifier
signalling that the throwable should be logged at error level.
-
-
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
-