public static enum ExceptionClassifier.Severity extends Enum<ExceptionClassifier.Severity>
| Enum Constant and Description |
|---|
SEVERE
This is a serious exception that should be handled in some way, e.g.
|
UNKNOWN
This is an exception that is not classified as a known exception, either SEVERE or UNSEVERE
|
UNSEVERE
This exception is considered not severe and may be ignored
|
| Modifier and Type | Method and Description |
|---|---|
static ExceptionClassifier.Severity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExceptionClassifier.Severity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExceptionClassifier.Severity SEVERE
public static final ExceptionClassifier.Severity UNSEVERE
public static final ExceptionClassifier.Severity UNKNOWN
public static ExceptionClassifier.Severity[] values()
for (ExceptionClassifier.Severity c : ExceptionClassifier.Severity.values()) System.out.println(c);
public static ExceptionClassifier.Severity 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 © 2017 etc.to. All rights reserved.