public enum MessageTrackingDeliveryStatus extends java.lang.Enum<MessageTrackingDeliveryStatus>
| Enum Constant and Description |
|---|
DELIVERED
The message was delivered to a mailbox or a public folder.
|
PENDING
The message was pending for delivery to a mailbox or a public folder.
|
READ
The message was read.
|
TRANSFERRED
The message was transferred to a mailbox or a public folder.
|
UNSUCCESSFUL
The message was unsuccessful to a mailbox or a public folder.
|
| Modifier and Type | Method and Description |
|---|---|
static MessageTrackingDeliveryStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MessageTrackingDeliveryStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageTrackingDeliveryStatus UNSUCCESSFUL
public static final MessageTrackingDeliveryStatus PENDING
public static final MessageTrackingDeliveryStatus DELIVERED
public static final MessageTrackingDeliveryStatus TRANSFERRED
public static final MessageTrackingDeliveryStatus READ
public static MessageTrackingDeliveryStatus[] values()
for (MessageTrackingDeliveryStatus c : MessageTrackingDeliveryStatus.values()) System.out.println(c);
public static MessageTrackingDeliveryStatus 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