public enum InboundSmsStatus extends java.lang.Enum<InboundSmsStatus>
| Enum Constant and Description |
|---|
DISABLED_PHONE |
ERROR |
INACCESSIBLE_CHANNEL |
INVALID_OPERATION |
SUCCESS |
UNREGISTERED_PHONE |
| Modifier and Type | Method and Description |
|---|---|
static InboundSmsStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InboundSmsStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InboundSmsStatus SUCCESS
public static final InboundSmsStatus INVALID_OPERATION
public static final InboundSmsStatus INACCESSIBLE_CHANNEL
public static final InboundSmsStatus DISABLED_PHONE
public static final InboundSmsStatus UNREGISTERED_PHONE
public static final InboundSmsStatus ERROR
public static InboundSmsStatus[] values()
for (InboundSmsStatus c : InboundSmsStatus.values()) System.out.println(c);
public static InboundSmsStatus 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