package com.tradecloud.domain.export.utils; /** * Created by ds on 2016/05/16. */ public enum UCRCodeOptions implements Comparable<UCRCodeOptions> { BLANK(""), SHIPMENT_NUMBER("Shipment Number"), EXPORTERS_REFERENCE("Exporter's Reference"), INVOICE("Invoice"); private final String value; UCRCodeOptions(String v) { value = v; } public String getValue() { return value; } }