public enum TxDetailType extends Enum<TxDetailType>
| Enum Constant and Description |
|---|
DISPOSITION
The message disposition of an MDN message
|
DISPOSITION_OPTIONS
Disposition options
|
DSN_ACTION
The DSN action field from a the delivery status part of a DSN message
|
DSN_STATUS
The DSN status field from a the delivery status part of a DSN message
|
FINAL_RECIPIENTS
The final recipients of DNS and MDN messages
|
FROM
The originator of the message from the From header of a message
|
MSG_FULL_HEADERS
The full message headers of a message
|
MSG_ID
The message id of message
|
PARENT_MSG_ID
For DNS and MDN message, this is the message id of the original message that the DSN or MDN message corresponds to
|
RECIPIENTS
A comma delimited list of all recipients of a message
|
SENDER
The message sender from the Sender header of a message
|
SUBJECT
The subject of the message
|
UNKNOWN
Unknown detail type
|
| Modifier and Type | Method and Description |
|---|---|
String |
getType()
Gets the detail type as a string
|
String |
toString() |
static TxDetailType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TxDetailType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TxDetailType UNKNOWN
public static final TxDetailType SENDER
public static final TxDetailType FROM
public static final TxDetailType RECIPIENTS
public static final TxDetailType FINAL_RECIPIENTS
public static final TxDetailType MSG_ID
public static final TxDetailType PARENT_MSG_ID
public static final TxDetailType SUBJECT
public static final TxDetailType DSN_STATUS
public static final TxDetailType DSN_ACTION
public static final TxDetailType DISPOSITION
public static final TxDetailType DISPOSITION_OPTIONS
public static final TxDetailType MSG_FULL_HEADERS
public static TxDetailType[] values()
for (TxDetailType c : TxDetailType.values()) System.out.println(c);
public static TxDetailType 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 nullpublic String getType()
public String toString()
toString in class Enum<TxDetailType>Copyright © 2018–2025 The Direct Project. All rights reserved.