public enum DeliveryErrorTypeEnum extends Enum<DeliveryErrorTypeEnum>
Java class for DeliveryErrorTypeEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="DeliveryErrorTypeEnum">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Missing Info"/>
<enumeration value="Undeliverable"/>
<enumeration value="Delivery Server Down"/>
<enumeration value="Bounced Email"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
BOUNCED_EMAIL |
DELIVERY_SERVER_DOWN |
MISSING_INFO |
UNDELIVERABLE |
| Modifier and Type | Method and Description |
|---|---|
static DeliveryErrorTypeEnum |
fromValue(String v) |
String |
value() |
static DeliveryErrorTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeliveryErrorTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeliveryErrorTypeEnum MISSING_INFO
public static final DeliveryErrorTypeEnum UNDELIVERABLE
public static final DeliveryErrorTypeEnum DELIVERY_SERVER_DOWN
public static final DeliveryErrorTypeEnum BOUNCED_EMAIL
public static DeliveryErrorTypeEnum[] values()
for (DeliveryErrorTypeEnum c : DeliveryErrorTypeEnum.values()) System.out.println(c);
public static DeliveryErrorTypeEnum 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 DeliveryErrorTypeEnum fromValue(String v)
Copyright © 2019. All Rights Reserved.