public static enum TransmissionStatus.STATUS extends java.lang.Enum<TransmissionStatus.STATUS>
| Enum Constant and Description |
|---|
DELIVERED |
IN_PROGRESS |
INPUT_FAILURE |
MAYBE_DELIVERED |
PERMANENT_FAILURE |
SENT |
TEMPORARY_FAILURE |
| Modifier and Type | Method and Description |
|---|---|
long |
value() |
static TransmissionStatus.STATUS |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TransmissionStatus.STATUS[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransmissionStatus.STATUS IN_PROGRESS
public static final TransmissionStatus.STATUS SENT
public static final TransmissionStatus.STATUS DELIVERED
public static final TransmissionStatus.STATUS MAYBE_DELIVERED
public static final TransmissionStatus.STATUS INPUT_FAILURE
public static final TransmissionStatus.STATUS TEMPORARY_FAILURE
public static final TransmissionStatus.STATUS PERMANENT_FAILURE
public static TransmissionStatus.STATUS[] values()
for (TransmissionStatus.STATUS c : TransmissionStatus.STATUS.values()) System.out.println(c);
public static TransmissionStatus.STATUS 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 long value()