org.apache.qpid.qmf
Enum QMFOperation
java.lang.Object
java.lang.Enum<QMFOperation>
org.apache.qpid.qmf.QMFOperation
- All Implemented Interfaces:
- Serializable, Comparable<QMFOperation>
public enum QMFOperation
- extends Enum<QMFOperation>
Method Summary |
char |
getOpcode()
|
static QMFOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static QMFOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
BROKER_REQUEST
public static final QMFOperation BROKER_REQUEST
BROKER_RESPONSE
public static final QMFOperation BROKER_RESPONSE
COMMAND_COMPLETION
public static final QMFOperation COMMAND_COMPLETION
CLASS_QUERY
public static final QMFOperation CLASS_QUERY
CLASS_INDICATION
public static final QMFOperation CLASS_INDICATION
SCHEMA_REQUEST
public static final QMFOperation SCHEMA_REQUEST
SCHEMA_RESPONSE
public static final QMFOperation SCHEMA_RESPONSE
HEARTBEAT_INDEICATION
public static final QMFOperation HEARTBEAT_INDEICATION
CONFIG_INDICATION
public static final QMFOperation CONFIG_INDICATION
INSTRUMENTATION_INDICATION
public static final QMFOperation INSTRUMENTATION_INDICATION
GET_QUERY_RESPONSE
public static final QMFOperation GET_QUERY_RESPONSE
GET_QUERY
public static final QMFOperation GET_QUERY
METHOD_REQUEST
public static final QMFOperation METHOD_REQUEST
METHOD_RESPONSE
public static final QMFOperation METHOD_RESPONSE
PACKAGE_QUERY
public static final QMFOperation PACKAGE_QUERY
PACKAGE_INDICATION
public static final QMFOperation PACKAGE_INDICATION
AGENT_ATTACH_REUQEST
public static final QMFOperation AGENT_ATTACH_REUQEST
AGENT_ATTACH_RESPONSE
public static final QMFOperation AGENT_ATTACH_RESPONSE
CONSOLE_ADDED_INDICATION
public static final QMFOperation CONSOLE_ADDED_INDICATION
EVENT
public static final QMFOperation EVENT
values
public static QMFOperation[] 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 (QMFOperation c : QMFOperation.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static QMFOperation 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 name
NullPointerException
- if the argument is null
getOpcode
public char getOpcode()
Licensed to the Apache Software Foundation