package com.tradecloud.domain.model.requestforquote; public enum AverageUsed { BEST_6_MONTH("Best 6 months"), TWO_MONTH_AVG_SALES("2 Month Ave Sales"),FOUR_MONTH_AVG_SALES("4 Month Ave Sales") ,SIX_MONTH_AVG_SALES("6 Month Ave Sales"); private String description; AverageUsed(String description) { this.description=description; } public String getDescription() { return description; } }