package org.msh.tb.entities.enums;

/**
 * Indicate the types of rifampicin resistance of a case
 * Created by rmemoria on 2/9/17.
 */
public enum RifResistance implements MessageKey {
    NOTDONE,
    XPERT,
    DST,
    XPERT_DST,
    SUSCEPTIBLE,
    FALSE_POSITIVE;

    public String getMessageKey() {
        return getClass().getSimpleName() + "." + toString();
    }
}
