rand.asset_forfeiture
Enum WageWizard.columnHeadings

java.lang.Object
  extended by java.lang.Enum<WageWizard.columnHeadings>
      extended by rand.asset_forfeiture.WageWizard.columnHeadings
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<WageWizard.columnHeadings>
Enclosing class:
WageWizard

public static enum WageWizard.columnHeadings
extends java.lang.Enum<WageWizard.columnHeadings>

This enum describes the column headings for the WageWizard spreadsheet.


Enum Constant Summary
benefits
           
dpw
           
expenses
           
fte
           
hpd
           
nWorkers
           
realCost
           
wage
           
wageBill
          Instead of entering all the expense parameters, you can just enter the total wage bill per worker.
wagePeriod
           
wageType
           
workerType
           
wpy
           
 
Method Summary
 java.lang.String toString()
          Give the enum a custom string converter in order to have more user-friendly column headings.
static WageWizard.columnHeadings valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static WageWizard.columnHeadings[] 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

nWorkers

public static final WageWizard.columnHeadings nWorkers

workerType

public static final WageWizard.columnHeadings workerType

wage

public static final WageWizard.columnHeadings wage

wagePeriod

public static final WageWizard.columnHeadings wagePeriod

wageType

public static final WageWizard.columnHeadings wageType

benefits

public static final WageWizard.columnHeadings benefits

wageBill

public static final WageWizard.columnHeadings wageBill
Instead of entering all the expense parameters, you can just enter the total wage bill per worker. This will be modified to determine the wage bill per FTE if necessary.


hpd

public static final WageWizard.columnHeadings hpd

dpw

public static final WageWizard.columnHeadings dpw

wpy

public static final WageWizard.columnHeadings wpy

fte

public static final WageWizard.columnHeadings fte

expenses

public static final WageWizard.columnHeadings expenses

realCost

public static final WageWizard.columnHeadings realCost
Method Detail

values

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

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

valueOf

public static WageWizard.columnHeadings 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()
Give the enum a custom string converter in order to have more user-friendly column headings.

Overrides:
toString in class java.lang.Enum<WageWizard.columnHeadings>