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