public static enum Message.MessageTypes extends Enum<Message.MessageTypes>
Enum Constant and Description |
---|
INBOUND
Inbound message.
|
OUTBOUND
Outbound message.
|
Modifier and Type | Method and Description |
---|---|
static Message.MessageTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Message.MessageTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Message.MessageTypes INBOUND
public static final Message.MessageTypes OUTBOUND
public static Message.MessageTypes[] values()
for (Message.MessageTypes c : Message.MessageTypes.values()) System.out.println(c);
public static Message.MessageTypes 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.