/**
 * Enumeration class TaxCategory - write a description of the enum class here
 * 
 * @author (your name here)
 * @version (version number or date here)
 */
public enum TaxCategory
{
    NO_TAX(1.0), LOW_TAX(1.12), HIGH_TAX(1.25), EXTREME_TAX(2.0);
    
    private final double taxFactor;
    
    TaxCategory(double f) {
        taxFactor = f;
    }
    
    
    public double getTaxFactor() {    

        return taxFactor;
    }
}