Package joynr
Enum Message.MessageType
- java.lang.Object
-
- java.lang.Enum<Message.MessageType>
-
- joynr.Message.MessageType
-
- All Implemented Interfaces:
Serializable,Comparable<Message.MessageType>
- Enclosing class:
- Message
public static enum Message.MessageType extends Enum<Message.MessageType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Message.MessageTypefromString(String text)StringtoString()static Message.MessageTypevalueOf(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 Detail
-
VALUE_MESSAGE_TYPE_BROADCAST_SUBSCRIPTION_REQUEST
public static final Message.MessageType VALUE_MESSAGE_TYPE_BROADCAST_SUBSCRIPTION_REQUEST
-
VALUE_MESSAGE_TYPE_MULTICAST_SUBSCRIPTION_REQUEST
public static final Message.MessageType VALUE_MESSAGE_TYPE_MULTICAST_SUBSCRIPTION_REQUEST
-
VALUE_MESSAGE_TYPE_MULTICAST
public static final Message.MessageType VALUE_MESSAGE_TYPE_MULTICAST
-
VALUE_MESSAGE_TYPE_ONE_WAY
public static final Message.MessageType VALUE_MESSAGE_TYPE_ONE_WAY
-
VALUE_MESSAGE_TYPE_PUBLICATION
public static final Message.MessageType VALUE_MESSAGE_TYPE_PUBLICATION
-
VALUE_MESSAGE_TYPE_REPLY
public static final Message.MessageType VALUE_MESSAGE_TYPE_REPLY
-
VALUE_MESSAGE_TYPE_REQUEST
public static final Message.MessageType VALUE_MESSAGE_TYPE_REQUEST
-
VALUE_MESSAGE_TYPE_SUBSCRIPTION_REPLY
public static final Message.MessageType VALUE_MESSAGE_TYPE_SUBSCRIPTION_REPLY
-
VALUE_MESSAGE_TYPE_SUBSCRIPTION_REQUEST
public static final Message.MessageType VALUE_MESSAGE_TYPE_SUBSCRIPTION_REQUEST
-
VALUE_MESSAGE_TYPE_SUBSCRIPTION_STOP
public static final Message.MessageType VALUE_MESSAGE_TYPE_SUBSCRIPTION_STOP
-
-
Method Detail
-
values
public static Message.MessageType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Message.MessageType c : Message.MessageType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Message.MessageType valueOf(String name)
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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<Message.MessageType>
-
fromString
public static Message.MessageType fromString(String text)
-
-