public enum SendType extends Enum<SendType> implements DispositionSendingMode
RFC 3798, Disposition modes, 3.2.6.1, sending-mode
| Enum Constant and Description |
|---|
Automatic
Notification was sent automatically.
|
UserMediated
Notification was sent based on user action.
|
| Modifier and Type | Method and Description |
|---|---|
static SendType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SendType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SendType Automatic
public static final SendType UserMediated
public static SendType[] values()
for (SendType c : SendType.values()) System.out.println(c);
public static SendType 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.