public static enum OutboundMessage.Status extends Enum<OutboundMessage.Status>
Enum Constant and Description |
---|
EXPIRED
The message wasn't delivered because the time for delivery has
expired.
|
NOT_SENT
The default status.
|
NOT_SENT_NO_SIGNAL
The message wasn't sent.
|
SENT_ACK
The message was sent with delivery receipt.
|
SENT_NOT_ACK
The message was sent but without delivery receipt.
|
Modifier and Type | Method and Description |
---|---|
static OutboundMessage.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OutboundMessage.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutboundMessage.Status NOT_SENT_NO_SIGNAL
public static final OutboundMessage.Status NOT_SENT
public static final OutboundMessage.Status SENT_NOT_ACK
public static final OutboundMessage.Status SENT_ACK
public static final OutboundMessage.Status EXPIRED
public static OutboundMessage.Status[] values()
for (OutboundMessage.Status c : OutboundMessage.Status.values()) System.out.println(c);
public static OutboundMessage.Status 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 nullCopyright © 2015–2016 jSMS4Pi. All rights reserved.