|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<LogOrRethrowExceptionHandler.Level> org.springframework.batch.repeat.exception.LogOrRethrowExceptionHandler.Level
public static enum LogOrRethrowExceptionHandler.Level
Logging levels for the handler.
Enum Constant Summary | |
---|---|
DEBUG
Key for Classifier signalling that the throwable should be
logged at debug level. |
|
ERROR
Key for Classifier signalling that the throwable should be
logged at error level. |
|
RETHROW
Key for Classifier signalling that the throwable should be
rethrown. |
|
WARN
Key for Classifier signalling that the throwable should be
logged at warn level. |
Method Summary | |
---|---|
static LogOrRethrowExceptionHandler.Level |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static LogOrRethrowExceptionHandler.Level[] |
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 |
---|
public static final LogOrRethrowExceptionHandler.Level RETHROW
Classifier
signalling that the throwable should be
rethrown. If the throwable is not a RuntimeException it is wrapped in
a RepeatException
.
public static final LogOrRethrowExceptionHandler.Level DEBUG
Classifier
signalling that the throwable should be
logged at debug level.
public static final LogOrRethrowExceptionHandler.Level WARN
Classifier
signalling that the throwable should be
logged at warn level.
public static final LogOrRethrowExceptionHandler.Level ERROR
Classifier
signalling that the throwable should be
logged at error level.
Method Detail |
---|
public static LogOrRethrowExceptionHandler.Level[] values()
for (LogOrRethrowExceptionHandler.Level c : LogOrRethrowExceptionHandler.Level.values()) System.out.println(c);
public static LogOrRethrowExceptionHandler.Level valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |