public enum ErrorType extends Enum<ErrorType>
RFC 3798, Disposition field, 3.2.6, disposition-modifier, includes modifiers that are referred to in the text but not in the grammar.
| Enum Constant and Description |
|---|
Error
Indicates message had an error.
|
Failure
Indicates failure to deliver.
|
Warning
Indicates an informative warning
|
| Modifier and Type | Method and Description |
|---|---|
static ErrorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ErrorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ErrorType Error
public static final ErrorType Failure
public static final ErrorType Warning
public static ErrorType[] values()
for (ErrorType c : ErrorType.values()) System.out.println(c);
public static ErrorType 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 © 2010-2016 NHIN Direct. All Rights Reserved.