Enum Message.Command
- java.lang.Object
-
- java.lang.Enum<Message.Command>
-
- org.ovirt.vdsm.jsonrpc.client.reactors.stomp.impl.Message.Command
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Message.Command>
- Enclosing class:
- Message
public static enum Message.Command extends java.lang.Enum<Message.Command>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Message.Command
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Message.Command[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SEND
public static final Message.Command SEND
-
SUBSCRIBE
public static final Message.Command SUBSCRIBE
-
UNSUBSCRIBE
public static final Message.Command UNSUBSCRIBE
-
BEGIN
public static final Message.Command BEGIN
-
COMMIT
public static final Message.Command COMMIT
-
ABORT
public static final Message.Command ABORT
-
DISCONNECT
public static final Message.Command DISCONNECT
-
CONNECT
public static final Message.Command CONNECT
-
RECEIPT
public static final Message.Command RECEIPT
-
CONNECTED
public static final Message.Command CONNECTED
-
ERROR
public static final Message.Command ERROR
-
ACK
public static final Message.Command ACK
-
MESSAGE
public static final Message.Command MESSAGE
-
-
Method Detail
-
values
public static Message.Command[] 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.Command c : Message.Command.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.Command valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-