org.apache.qpid.qmf
Enum QMFOperation

java.lang.Object
  extended by java.lang.Enum<QMFOperation>
      extended by org.apache.qpid.qmf.QMFOperation
All Implemented Interfaces:
Serializable, Comparable<QMFOperation>

public enum QMFOperation
extends Enum<QMFOperation>


Enum Constant Summary
AGENT_ATTACH_RESPONSE
           
AGENT_ATTACH_REUQEST
           
BROKER_REQUEST
           
BROKER_RESPONSE
           
CLASS_INDICATION
           
CLASS_QUERY
           
COMMAND_COMPLETION
           
CONFIG_INDICATION
           
CONSOLE_ADDED_INDICATION
           
EVENT
           
GET_QUERY
           
GET_QUERY_RESPONSE
           
HEARTBEAT_INDEICATION
           
INSTRUMENTATION_INDICATION
           
METHOD_REQUEST
           
METHOD_RESPONSE
           
PACKAGE_INDICATION
           
PACKAGE_QUERY
           
SCHEMA_REQUEST
           
SCHEMA_RESPONSE
           
 
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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
Method Detail

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