LetterOfCreditNotification.java

package com.tradecloud.domain.letterofcredit;

public enum LetterOfCreditNotification {
    AIR("AIR - Airmail"),
    BRC("BRC - Collect from Branch"),
    COU("COU - Courier"),
    FCB("FCB - Full Cable"),
    MAL("MAL - Mail"),
    SCA("SCA - Short Cable, Airmail"),
    SCC("SCC - Short Cable, Courier"),
    SCM("SCM - Short Cable, Mail");

    private final String description;

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

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