public static enum DSNStandard.DSNAction extends Enum<DSNStandard.DSNAction>
| Enum Constant and Description |
|---|
DELAYED
indicates that the Reporting MTA has so far been unable to deliver or relay
the message, but it will continue to attempt to do so.
|
DELIVERED
indicates that the message was successfully delivered to the recipient
address specified by the sender, which includes "delivery" to a mailing
list exploder.
|
EXPANDED
indicates that the message has been successfully delivered to the recipient
address as specified by the sender, and forwarded by the Reporting-MTA
beyond that destination to multiple additional recipient addresses.
|
FAILED
indicates that the message could not be delivered to the recipient.
|
RELAYED
indicates that the message has been relayed or gatewayed into an
environment that does not accept responsibility for generating DSNs upon
successful delivery.
|
| Modifier and Type | Method and Description |
|---|---|
static DSNStandard.DSNAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DSNStandard.DSNAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DSNStandard.DSNAction FAILED
public static final DSNStandard.DSNAction DELAYED
public static final DSNStandard.DSNAction DELIVERED
public static final DSNStandard.DSNAction RELAYED
public static final DSNStandard.DSNAction EXPANDED
public static DSNStandard.DSNAction[] values()
for (DSNStandard.DSNAction c : DSNStandard.DSNAction.values()) System.out.println(c);
public static DSNStandard.DSNAction 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–2021 The Direct Project. All rights reserved.