public static enum DataExceptionEvent.SeverityType extends java.lang.Enum<DataExceptionEvent.SeverityType>
| Enum Constant and Description |
|---|
ERROR |
RECOVERABLE_ERROR |
WARNING |
| Modifier and Type | Method and Description |
|---|---|
static DataExceptionEvent.SeverityType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataExceptionEvent.SeverityType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final DataExceptionEvent.SeverityType ERROR
public static final DataExceptionEvent.SeverityType RECOVERABLE_ERROR
public static final DataExceptionEvent.SeverityType WARNING
public static DataExceptionEvent.SeverityType[] values()
for (DataExceptionEvent.SeverityType c : DataExceptionEvent.SeverityType.values())
System.out.println(c);
public static DataExceptionEvent.SeverityType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null