public enum GatewayVariable extends java.lang.Enum<GatewayVariable>
Enum Constant and Description |
---|
LOGIN
Login name to the gateway website
|
MESSAGE
Text of the SMS message
|
NUMBER
Phone number in fully international format +[0-9]{1,15}
|
PASSWORD
Password to the gateway website
|
RECEIPT
This string is non-empty if a delivery report should be sent
|
SENDERNAME
Name of the sender
|
SENDERNUMBER
Phone number of the sender in fully international format +[0-9]{1,15}
|
Modifier and Type | Method and Description |
---|---|
static GatewayVariable |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GatewayVariable[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GatewayVariable NUMBER
public static final GatewayVariable MESSAGE
public static final GatewayVariable SENDERNAME
public static final GatewayVariable SENDERNUMBER
public static final GatewayVariable LOGIN
public static final GatewayVariable PASSWORD
public static final GatewayVariable RECEIPT
public static GatewayVariable[] values()
for (GatewayVariable c : GatewayVariable.values()) System.out.println(c);
public static GatewayVariable 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