public static enum Message.MessageType extends Enum<Message.MessageType>
| Modifier and Type | Method and Description |
|---|---|
static Message.MessageType |
fromString(String text) |
String |
toString() |
static Message.MessageType |
valueOf(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.
|
public static final Message.MessageType VALUE_MESSAGE_TYPE_BROADCAST_SUBSCRIPTION_REQUEST
public static final Message.MessageType VALUE_MESSAGE_TYPE_MULTICAST_SUBSCRIPTION_REQUEST
public static final Message.MessageType VALUE_MESSAGE_TYPE_MULTICAST
public static final Message.MessageType VALUE_MESSAGE_TYPE_ONE_WAY
public static final Message.MessageType VALUE_MESSAGE_TYPE_PUBLICATION
public static final Message.MessageType VALUE_MESSAGE_TYPE_REPLY
public static final Message.MessageType VALUE_MESSAGE_TYPE_REQUEST
public static final Message.MessageType VALUE_MESSAGE_TYPE_SUBSCRIPTION_REPLY
public static final Message.MessageType VALUE_MESSAGE_TYPE_SUBSCRIPTION_REQUEST
public static final Message.MessageType VALUE_MESSAGE_TYPE_SUBSCRIPTION_STOP
public static Message.MessageType[] values()
for (Message.MessageType c : Message.MessageType.values()) System.out.println(c);
public static Message.MessageType 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 nullpublic String toString()
toString in class Enum<Message.MessageType>public static Message.MessageType fromString(String text)
Copyright © 2021. All rights reserved.