Package com.vonage.client.sms.messages
Enum Message.MessageType
java.lang.Object
java.lang.Enum<Message.MessageType>
com.vonage.client.sms.messages.Message.MessageType
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Message.MessageType>,java.lang.constant.Constable
- Enclosing class:
- Message
public static enum Message.MessageType extends java.lang.Enum<Message.MessageType>
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description BINARYMessage is a binary SMS message with a custom UDH and binary payloadTEXTMessage is a regular TEXT SMS messageUNICODEMessage is a unicode message, for sending messages in non-latin script to a supported handsetWAPPUSHMessage is a wap-push message to send a browsable / downloadable url to the handset -
Method Summary
Modifier and Type Method Description java.lang.StringtoString()static Message.MessageTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Message.MessageType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
TEXT
Message is a regular TEXT SMS message -
BINARY
Message is a binary SMS message with a custom UDH and binary payload -
WAPPUSH
Message is a wap-push message to send a browsable / downloadable url to the handset -
UNICODE
Message is a unicode message, for sending messages in non-latin script to a supported handset
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
toString
- Overrides:
toStringin classjava.lang.Enum<Message.MessageType>
-