public enum SendingStatus extends java.lang.Enum<SendingStatus> implements EnumClass<java.lang.Integer>
Modifier and Type | Method and Description |
---|---|
static SendingStatus |
fromId(java.lang.Integer id) |
java.lang.Integer |
getId() |
static SendingStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SendingStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SendingStatus QUEUE
public static final SendingStatus SENDING
public static final SendingStatus SENT
public static final SendingStatus NOTSENT
public static SendingStatus[] values()
for (SendingStatus c : SendingStatus.values()) System.out.println(c);
public static SendingStatus valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.Integer getId()
public static SendingStatus fromId(java.lang.Integer id)