com.newisys.ova
Enum OVAConfigSwitch

java.lang.Object
  extended by java.lang.Enum<OVAConfigSwitch>
      extended by com.newisys.ova.OVAConfigSwitch
All Implemented Interfaces:
Serializable, Comparable<OVAConfigSwitch>

public enum OVAConfigSwitch
extends Enum<OVAConfigSwitch>

Configuration options for the OVA Engine.


Enum Constant Summary
ManageAttempts
          TODO: document ManageAttempts
PrintReport
          Enables printing of summary at end of simulation.
Quiet
          Turns off all messages at runtime.
ShowLineInfo
          TODO: document ShowLineInfo
 
Method Summary
 int getValue()
          Returns the integer value for this OVAConfigSwitch.
static OVAConfigSwitch valueOf(String name)
          Returns the enum constant of this type with the specified name.
static OVAConfigSwitch[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ShowLineInfo

public static final OVAConfigSwitch ShowLineInfo
TODO: document ShowLineInfo


Quiet

public static final OVAConfigSwitch Quiet
Turns off all messages at runtime. Default: false.


PrintReport

public static final OVAConfigSwitch PrintReport
Enables printing of summary at end of simulation. Default: false.


ManageAttempts

public static final OVAConfigSwitch ManageAttempts
TODO: document ManageAttempts

Method Detail

values

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

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

valueOf

public static OVAConfigSwitch 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

getValue

public int getValue()
Returns the integer value for this OVAConfigSwitch.

Returns:
the integer value for this enumeration