public enum SmppMessageType extends Enum<SmppMessageType>
| Enum Constant and Description |
|---|
AlertNotification |
DataSm |
DeliverSm |
DeliveryReceipt |
| Modifier and Type | Method and Description |
|---|---|
static SmppMessageType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SmppMessageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SmppMessageType AlertNotification
public static final SmppMessageType DataSm
public static final SmppMessageType DeliveryReceipt
public static final SmppMessageType DeliverSm
public static SmppMessageType[] values()
for (SmppMessageType c : SmppMessageType.values()) System.out.println(c);
public static SmppMessageType 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 nullApache Camel