Blame | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.enumuration.fofo;public enum SettlementType {SETTLED("SETTLED"),UNSETTLED("UNSETTLED"),PARTIALLY_SETTLED("PARTIALLY_SETTLED");private final String value;private SettlementType(String value) {this.value = value;}public String getValue() {return value;}}