public static enum SendableMessageWrapper.SendableMessageState extends java.lang.Enum<SendableMessageWrapper.SendableMessageState>
SendableMessageWrapper
can be in.Enum Constant and Description |
---|
ACKED
SendableMessageWrapper has been acknowledged by addressed recipient. |
CANCELLED
SendableMessageWrapper has been cancelled from transmission by local sending station. |
NEW
SendableMessageWrapper is newly created and not yet queued for transmission. |
QUEUED
SendableMessageWrapper has been queued but not yet transmitted. |
REJECTED
SendableMessageWrapper has been rejected by addressed recipient. |
RETRANSMIT
SendableMessageWrapper has been transmitted more than once. |
TRANSMIT
SendableMessageWrapper has been transmitted once. |
Modifier and Type | Method and Description |
---|---|
static SendableMessageWrapper.SendableMessageState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SendableMessageWrapper.SendableMessageState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SendableMessageWrapper.SendableMessageState NEW
SendableMessageWrapper
is newly created and not yet queued for transmission.public static final SendableMessageWrapper.SendableMessageState QUEUED
SendableMessageWrapper
has been queued but not yet transmitted.public static final SendableMessageWrapper.SendableMessageState TRANSMIT
SendableMessageWrapper
has been transmitted once.public static final SendableMessageWrapper.SendableMessageState RETRANSMIT
SendableMessageWrapper
has been transmitted more than once.public static final SendableMessageWrapper.SendableMessageState CANCELLED
SendableMessageWrapper
has been cancelled from transmission by local sending station.public static final SendableMessageWrapper.SendableMessageState ACKED
SendableMessageWrapper
has been acknowledged by addressed recipient.public static final SendableMessageWrapper.SendableMessageState REJECTED
SendableMessageWrapper
has been rejected by addressed recipient.public static SendableMessageWrapper.SendableMessageState[] values()
for (SendableMessageWrapper.SendableMessageState c : SendableMessageWrapper.SendableMessageState.values()) System.out.println(c);
public static SendableMessageWrapper.SendableMessageState 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 null