jpl.mipl.mdms.FileService.komodo.messaging.msg.jaxb
Enum AgentOpcode

java.lang.Object
  extended by java.lang.Enum<AgentOpcode>
      extended by jpl.mipl.mdms.FileService.komodo.messaging.msg.jaxb.AgentOpcode
All Implemented Interfaces:
Serializable, Comparable<AgentOpcode>

public enum AgentOpcode
extends Enum<AgentOpcode>

Java class for agentOpcode.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="agentOpcode">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="LOGIN"/>
     <enumeration value="LOGOUT"/>
     <enumeration value="METRICS_CONNECTION"/>
     <enumeration value="QUERY_CONN"/>
     <enumeration value="HOTBOOT"/>
     <enumeration value="SHUTDOWN_ALL"/>
     <enumeration value="ERROR"/>
     <enumeration value="BRIDGE_HUP"/>
     <enumeration value="BRIDGE_SHUTDOWN"/>
     <enumeration value="QUERY_AA"/>
     <enumeration value="REPLY_AA"/>
     <enumeration value="NACK_AA"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
BRIDGE_HUP
           
BRIDGE_SHUTDOWN
           
ERROR
           
HOTBOOT
           
LOGIN
           
LOGOUT
           
METRICS_CONNECTION
           
NACK_AA
           
QUERY_AA
           
QUERY_CONN
           
REPLY_AA
           
SHUTDOWN_ALL
           
 
Method Summary
static AgentOpcode fromValue(String v)
           
 String value()
           
static AgentOpcode valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AgentOpcode[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

LOGIN

public static final AgentOpcode LOGIN

LOGOUT

public static final AgentOpcode LOGOUT

METRICS_CONNECTION

public static final AgentOpcode METRICS_CONNECTION

QUERY_CONN

public static final AgentOpcode QUERY_CONN

HOTBOOT

public static final AgentOpcode HOTBOOT

SHUTDOWN_ALL

public static final AgentOpcode SHUTDOWN_ALL

ERROR

public static final AgentOpcode ERROR

BRIDGE_HUP

public static final AgentOpcode BRIDGE_HUP

BRIDGE_SHUTDOWN

public static final AgentOpcode BRIDGE_SHUTDOWN

QUERY_AA

public static final AgentOpcode QUERY_AA

REPLY_AA

public static final AgentOpcode REPLY_AA

NACK_AA

public static final AgentOpcode NACK_AA
Method Detail

values

public static final AgentOpcode[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(AgentOpcode c : AgentOpcode.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static AgentOpcode 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

value

public String value()

fromValue

public static AgentOpcode fromValue(String v)