ppe.gui
Enum PPEManager.Cmd

java.lang.Object
  extended by java.lang.Enum<PPEManager.Cmd>
      extended by ppe.gui.PPEManager.Cmd
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<PPEManager.Cmd>
Enclosing class:
PPEManager

public static enum PPEManager.Cmd
extends java.lang.Enum<PPEManager.Cmd>


Enum Constant Summary
createNetwork
           
editAmiNames
           
editEc2InstanceTypes
           
editEc2Params
           
exit
           
rebootInstances
           
showAbout
           
terminateInstances
           
updateNetworkInfo
           
 
Method Summary
 java.lang.Class getServiceClass()
           
 java.lang.String getTitle()
           
 boolean isGlobalCmd()
           
 boolean isInstanceCmd()
           
 boolean isNetworkCmd()
           
static PPEManager.Cmd valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PPEManager.Cmd[] 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

createNetwork

public static final PPEManager.Cmd createNetwork

updateNetworkInfo

public static final PPEManager.Cmd updateNetworkInfo

exit

public static final PPEManager.Cmd exit

rebootInstances

public static final PPEManager.Cmd rebootInstances

terminateInstances

public static final PPEManager.Cmd terminateInstances

editEc2InstanceTypes

public static final PPEManager.Cmd editEc2InstanceTypes

editAmiNames

public static final PPEManager.Cmd editAmiNames

editEc2Params

public static final PPEManager.Cmd editEc2Params

showAbout

public static final PPEManager.Cmd showAbout
Method Detail

values

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

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

valueOf

public static PPEManager.Cmd 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

getTitle

public java.lang.String getTitle()

isNetworkCmd

public boolean isNetworkCmd()

isInstanceCmd

public boolean isInstanceCmd()

isGlobalCmd

public boolean isGlobalCmd()

getServiceClass

public java.lang.Class getServiceClass()