|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<NotificationType>
org.nhindirect.stagent.mail.notifications.NotificationType
public enum NotificationType
Indicates what this disposition notification means.
RFC 3798, Disposition types, 3.2.6.2, includes type (processed) mentioned in document but not listed in grammar.
| Enum Constant Summary | |
|---|---|
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. |
|
| Method Summary | |
|---|---|
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. |
| Methods inherited from class java.lang.Enum |
|---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
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
| Method Detail |
|---|
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 name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||