rand.asset_forfeiture
Enum variables

java.lang.Object
  extended by java.lang.Enum<variables>
      extended by rand.asset_forfeiture.variables
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<variables>

public enum variables
extends java.lang.Enum<variables>

These are all the input variables that can be used in the DisplayPanel and ProfitCalculator.


Enum Constant Summary
diff
           
L1
           
L2
           
L3
           
pi
           
PL1
           
PL2
           
PL3
           
R
           
rho
           
 
Method Summary
static variables fromString(java.lang.String s)
          Converts a stirng of the toString() variety into its corresponding variable.
 java.lang.String getHelp()
          Returns the help string for each variable.
 java.lang.String notation()
          A string conversion method to convert from our internal variable name to the notation used in the derivation.
 java.lang.String toAlternateString()
          A custom string conversion method to create more legible variables names on the output side.
 java.lang.String toString()
          A custom string conversion method to create much more legible variable names on the input side.
static variables valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static variables[] 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, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

L1

public static final variables L1

L3

public static final variables L3

L2

public static final variables L2

PL1

public static final variables PL1

PL3

public static final variables PL3

PL2

public static final variables PL2

R

public static final variables R

rho

public static final variables rho

pi

public static final variables pi

diff

public static final variables diff
Method Detail

values

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

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

valueOf

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

toString

public java.lang.String toString()
A custom string conversion method to create much more legible variable names on the input side. \returns a string describing the input value

Overrides:
toString in class java.lang.Enum<variables>

toAlternateString

public java.lang.String toAlternateString()
A custom string conversion method to create more legible variables names on the output side. \returns a string describing the output value


notation

public java.lang.String notation()
A string conversion method to convert from our internal variable name to the notation used in the derivation. \returns a string with the corresponding notation for this variable


fromString

public static variables fromString(java.lang.String s)
Converts a stirng of the toString() variety into its corresponding variable. \param s the string to be converted \returns the corresponding member of variables; null if s is invalid


getHelp

public java.lang.String getHelp()
Returns the help string for each variable. \returns the appropriate help string