com.planet_ink.coffee_mud.Items.Software
Enum RocketShipProgram.RocketStateMachine

java.lang.Object
  extended by java.lang.Enum<RocketShipProgram.RocketStateMachine>
      extended by com.planet_ink.coffee_mud.Items.Software.RocketShipProgram.RocketStateMachine
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<RocketShipProgram.RocketStateMachine>
Enclosing class:
RocketShipProgram

protected static enum RocketShipProgram.RocketStateMachine
extends java.lang.Enum<RocketShipProgram.RocketStateMachine>


Enum Constant Summary
LANDING
           
LANDING_APPROACH
           
LAUNCHCHECK
           
LAUNCHCRUISE
           
LAUNCHSEARCH
           
ORBITCHECK
           
ORBITCRUISE
           
ORBITSEARCH
           
PRE_LANDING_STOP
           
STOP
           
 
Method Summary
static RocketShipProgram.RocketStateMachine valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RocketShipProgram.RocketStateMachine[] 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

LAUNCHSEARCH

public static final RocketShipProgram.RocketStateMachine LAUNCHSEARCH

LAUNCHCHECK

public static final RocketShipProgram.RocketStateMachine LAUNCHCHECK

LAUNCHCRUISE

public static final RocketShipProgram.RocketStateMachine LAUNCHCRUISE

STOP

public static final RocketShipProgram.RocketStateMachine STOP

PRE_LANDING_STOP

public static final RocketShipProgram.RocketStateMachine PRE_LANDING_STOP

LANDING_APPROACH

public static final RocketShipProgram.RocketStateMachine LANDING_APPROACH

LANDING

public static final RocketShipProgram.RocketStateMachine LANDING

ORBITSEARCH

public static final RocketShipProgram.RocketStateMachine ORBITSEARCH

ORBITCHECK

public static final RocketShipProgram.RocketStateMachine ORBITCHECK

ORBITCRUISE

public static final RocketShipProgram.RocketStateMachine ORBITCRUISE
Method Detail

values

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

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

valueOf

public static RocketShipProgram.RocketStateMachine 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