LetterOfCreditDeliveryMethod.java

package com.tradecloud.domain.letterofcredit;

public enum LetterOfCreditDeliveryMethod {

    COURIER("Courier"),
    AIRMAIL("Air Mail");

    private final String description;

    LetterOfCreditDeliveryMethod(String description) {
        this.description = description;
    }

    @Override
    public String toString() {
        return description;
    }
}