uk.ac.imperial.ph.hep.command.impl
Enum DaqStateChangeCmd.StateChangeInducer

java.lang.Object
  extended by java.lang.Enum<DaqStateChangeCmd.StateChangeInducer>
      extended by uk.ac.imperial.ph.hep.command.impl.DaqStateChangeCmd.StateChangeInducer
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DaqStateChangeCmd.StateChangeInducer>
Enclosing class:
DaqStateChangeCmd

public static enum DaqStateChangeCmd.StateChangeInducer
extends java.lang.Enum<DaqStateChangeCmd.StateChangeInducer>


Enum Constant Summary
CONFIG_END
           
CURR_RUN
           
PANIC
           
RUN_END
           
SEQ_END
           
SHUT_DOWN
           
START_UP
           
 
Method Summary
 java.lang.String getCmdName()
           
static DaqStateChangeCmd.StateChangeInducer valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DaqStateChangeCmd.StateChangeInducer[] 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

CURR_RUN

public static final DaqStateChangeCmd.StateChangeInducer CURR_RUN

SHUT_DOWN

public static final DaqStateChangeCmd.StateChangeInducer SHUT_DOWN

PANIC

public static final DaqStateChangeCmd.StateChangeInducer PANIC

START_UP

public static final DaqStateChangeCmd.StateChangeInducer START_UP

CONFIG_END

public static final DaqStateChangeCmd.StateChangeInducer CONFIG_END

SEQ_END

public static final DaqStateChangeCmd.StateChangeInducer SEQ_END

RUN_END

public static final DaqStateChangeCmd.StateChangeInducer RUN_END
Method Detail

values

public static DaqStateChangeCmd.StateChangeInducer[] 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 (DaqStateChangeCmd.StateChangeInducer c : DaqStateChangeCmd.StateChangeInducer.values())
    System.out.println(c);

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

valueOf

public static DaqStateChangeCmd.StateChangeInducer 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 name
java.lang.NullPointerException - if the argument is null

getCmdName

public java.lang.String getCmdName()