public enum MessageDeliveryTypeEnum extends Enum<MessageDeliveryTypeEnum>
Java class for MessageDeliveryTypeEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="MessageDeliveryTypeEnum">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Standard"/>
<enumeration value="DelayedDeliveryByMTAQueue"/>
<enumeration value="DelayedDeliveryByOMMQueue"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DELAYED_DELIVERY_BY_MTA_QUEUE |
DELAYED_DELIVERY_BY_OMM_QUEUE |
STANDARD |
| Modifier and Type | Method and Description |
|---|---|
static MessageDeliveryTypeEnum |
fromValue(String v) |
String |
value() |
static MessageDeliveryTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MessageDeliveryTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageDeliveryTypeEnum STANDARD
public static final MessageDeliveryTypeEnum DELAYED_DELIVERY_BY_MTA_QUEUE
public static final MessageDeliveryTypeEnum DELAYED_DELIVERY_BY_OMM_QUEUE
public static MessageDeliveryTypeEnum[] values()
for (MessageDeliveryTypeEnum c : MessageDeliveryTypeEnum.values()) System.out.println(c);
public static MessageDeliveryTypeEnum 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 value()
public static MessageDeliveryTypeEnum fromValue(String v)
Copyright © 2017. All rights reserved.