eu.xtreemos.xosd.client.data
Enum EnumCommand.ConsoleCommands

java.lang.Object
  extended by java.lang.Enum<EnumCommand.ConsoleCommands>
      extended by eu.xtreemos.xosd.client.data.EnumCommand.ConsoleCommands
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<EnumCommand.ConsoleCommands>
Enclosing class:
EnumCommand

public static enum EnumCommand.ConsoleCommands
extends java.lang.Enum<EnumCommand.ConsoleCommands>


Enum Constant Summary
addPolicy
           
addRuleToPolicy
           
checkpoint
           
ctl
           
displaycertificate
           
exit
           
getCredentials
           
getxoscertificate
           
help
           
kill
           
listCredentials
           
listD
           
listPolicies
           
listPolicy
           
mig
           
monctr
           
ps
           
registerXOSD
           
reloadVOPS
           
removePolicy
           
removeRuleFromPolicy
           
restart
           
rr
           
rs
           
sendfile
           
sr
           
stat
           
sub
           
trace
           
unknowncommand
           
verifyPolicyResNoCert
           
wait
           
writebackVOPS
           
 
Method Summary
static EnumCommand.ConsoleCommands valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EnumCommand.ConsoleCommands[] 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

help

public static final EnumCommand.ConsoleCommands help

exit

public static final EnumCommand.ConsoleCommands exit

sub

public static final EnumCommand.ConsoleCommands sub

ps

public static final EnumCommand.ConsoleCommands ps

kill

public static final EnumCommand.ConsoleCommands kill

wait

public static final EnumCommand.ConsoleCommands wait

ctl

public static final EnumCommand.ConsoleCommands ctl

trace

public static final EnumCommand.ConsoleCommands trace

mig

public static final EnumCommand.ConsoleCommands mig

checkpoint

public static final EnumCommand.ConsoleCommands checkpoint

restart

public static final EnumCommand.ConsoleCommands restart

monctr

public static final EnumCommand.ConsoleCommands monctr

rs

public static final EnumCommand.ConsoleCommands rs

sr

public static final EnumCommand.ConsoleCommands sr

rr

public static final EnumCommand.ConsoleCommands rr

stat

public static final EnumCommand.ConsoleCommands stat

listD

public static final EnumCommand.ConsoleCommands listD

unknowncommand

public static final EnumCommand.ConsoleCommands unknowncommand

getxoscertificate

public static final EnumCommand.ConsoleCommands getxoscertificate

displaycertificate

public static final EnumCommand.ConsoleCommands displaycertificate

sendfile

public static final EnumCommand.ConsoleCommands sendfile

listPolicies

public static final EnumCommand.ConsoleCommands listPolicies

listPolicy

public static final EnumCommand.ConsoleCommands listPolicy

addRuleToPolicy

public static final EnumCommand.ConsoleCommands addRuleToPolicy

removeRuleFromPolicy

public static final EnumCommand.ConsoleCommands removeRuleFromPolicy

verifyPolicyResNoCert

public static final EnumCommand.ConsoleCommands verifyPolicyResNoCert

addPolicy

public static final EnumCommand.ConsoleCommands addPolicy

removePolicy

public static final EnumCommand.ConsoleCommands removePolicy

reloadVOPS

public static final EnumCommand.ConsoleCommands reloadVOPS

registerXOSD

public static final EnumCommand.ConsoleCommands registerXOSD

writebackVOPS

public static final EnumCommand.ConsoleCommands writebackVOPS

getCredentials

public static final EnumCommand.ConsoleCommands getCredentials

listCredentials

public static final EnumCommand.ConsoleCommands listCredentials
Method Detail

values

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

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

valueOf

public static EnumCommand.ConsoleCommands 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