public enum ErrorSeverity extends Enum<ErrorSeverity>
| Enum Constant and Description |
|---|
CRITICAL
Indicates that a process was abruptly terminated; data may have been lost
or corrupted.
|
ERROR
Indicates an assertion failure or the occurrence of some other
non-conforming condition.
|
WARNING
Indicates a condition that is not strictly non-conforming but
nevertheless violates a convention, expectation, or a recommendation.
|
| Modifier and Type | Method and Description |
|---|---|
static ErrorSeverity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ErrorSeverity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ErrorSeverity WARNING
public static final ErrorSeverity ERROR
public static final ErrorSeverity CRITICAL
public static ErrorSeverity[] values()
for (ErrorSeverity c : ErrorSeverity.values()) System.out.println(c);
public static ErrorSeverity 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 © 2016 Open Geospatial Consortium. All rights reserved.