public enum TxMessageType extends Enum<TxMessageType>
| Enum Constant and Description |
|---|
DSN
A delivery status notification message
|
IMF
Internet message format.
|
MDN
A message disposition notification message
|
SMIME
An encrypted message in SMIME format
|
UNKNOWN
Unknown message type
|
| Modifier and Type | Method and Description |
|---|---|
static TxMessageType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TxMessageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TxMessageType UNKNOWN
public static final TxMessageType IMF
public static final TxMessageType SMIME
public static final TxMessageType MDN
public static final TxMessageType DSN
public static TxMessageType[] values()
for (TxMessageType c : TxMessageType.values()) System.out.println(c);
public static TxMessageType 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 © 2018–2025 The Direct Project. All rights reserved.