public enum NotificationType extends Enum<NotificationType> implements DispositionType
RFC 3798, Disposition types, 3.2.6.2, includes type (processed) mentioned in document but not listed in grammar.
| Enum Constant and Description |
|---|
Deleted
Indicates message was deleted.
|
Denied
Indicates message was denied.
|
Dispatched
Indicates message was dispatched.
|
Displayed
Indicates message has been displayed to user (does not imply the message was read, understood, etc.)
|
Error
Indicates message was in error.
|
Processed
Indicates message has been received but not displayed to user.
|
| Modifier and Type | Method and Description |
|---|---|
static NotificationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NotificationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NotificationType Processed
public static final NotificationType Displayed
public static final NotificationType Deleted
public static final NotificationType Dispatched
public static final NotificationType Denied
public static final NotificationType Error
public static NotificationType[] values()
for (NotificationType c : NotificationType.values()) System.out.println(c);
public static NotificationType 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.