public enum NullExceptionHandler extends Enum<NullExceptionHandler> implements ExceptionHandler, IgnoresEverything
NOTHING - An ExceptionHandler that does nothing when an exception occurs and is not enabled for any class.| Enum Constant and Description |
|---|
NOTHING
The NOTHING instance of this enumeration represents a no-op implementation of the ExceptionHandler.
|
| Modifier and Type | Method and Description |
|---|---|
static NullExceptionHandler |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NullExceptionHandler[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfdefaultHandler, ignoresEverything, isEnabled, on, on, on, on, onpublic static final NullExceptionHandler NOTHING
public static NullExceptionHandler[] values()
for (NullExceptionHandler c : NullExceptionHandler.values()) System.out.println(c);
public static NullExceptionHandler valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2024. All rights reserved.