ParkNPark.common
Enum CommandLineParser.AcceptedParameters

java.lang.Object
  extended by java.lang.Enum<CommandLineParser.AcceptedParameters>
      extended by ParkNPark.common.CommandLineParser.AcceptedParameters
All Implemented Interfaces:
Serializable, Comparable<CommandLineParser.AcceptedParameters>
Enclosing class:
CommandLineParser

public static enum CommandLineParser.AcceptedParameters
extends Enum<CommandLineParser.AcceptedParameters>

Enumeration of the accepted commands that the caller wants


Enum Constant Summary
appendLogs
           
detectionTimeout
           
faultInjection
           
faultInjectionMaxDelay
           
faultInjectionMinDelay
           
getLotsMode
           
interRequestTime
           
jdbcPassword
           
jdbcURL
           
jdbcUsername
           
killOnly
           
neverGiveUp
           
numClients
           
numServers
           
ORBInitialHost
           
ORBInitialPort
           
ORBServerHost
           
ORBServerPort
           
projectRoot
           
recoveryTimeout
           
replySize
           
 
Method Summary
static CommandLineParser.AcceptedParameters valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CommandLineParser.AcceptedParameters[] 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

ORBInitialHost

public static final CommandLineParser.AcceptedParameters ORBInitialHost

ORBInitialPort

public static final CommandLineParser.AcceptedParameters ORBInitialPort

ORBServerPort

public static final CommandLineParser.AcceptedParameters ORBServerPort

ORBServerHost

public static final CommandLineParser.AcceptedParameters ORBServerHost

replySize

public static final CommandLineParser.AcceptedParameters replySize

numClients

public static final CommandLineParser.AcceptedParameters numClients

numServers

public static final CommandLineParser.AcceptedParameters numServers

interRequestTime

public static final CommandLineParser.AcceptedParameters interRequestTime

faultInjection

public static final CommandLineParser.AcceptedParameters faultInjection

faultInjectionMinDelay

public static final CommandLineParser.AcceptedParameters faultInjectionMinDelay

faultInjectionMaxDelay

public static final CommandLineParser.AcceptedParameters faultInjectionMaxDelay

projectRoot

public static final CommandLineParser.AcceptedParameters projectRoot

appendLogs

public static final CommandLineParser.AcceptedParameters appendLogs

neverGiveUp

public static final CommandLineParser.AcceptedParameters neverGiveUp

getLotsMode

public static final CommandLineParser.AcceptedParameters getLotsMode

killOnly

public static final CommandLineParser.AcceptedParameters killOnly

recoveryTimeout

public static final CommandLineParser.AcceptedParameters recoveryTimeout

detectionTimeout

public static final CommandLineParser.AcceptedParameters detectionTimeout

jdbcURL

public static final CommandLineParser.AcceptedParameters jdbcURL

jdbcUsername

public static final CommandLineParser.AcceptedParameters jdbcUsername

jdbcPassword

public static final CommandLineParser.AcceptedParameters jdbcPassword
Method Detail

values

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

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

valueOf

public static CommandLineParser.AcceptedParameters 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