Skip to content
Snippets Groups Projects
CourseType.java 260 B
Newer Older
package enumeration;

public enum CourseType
{
    REQUIRED("required"),
    ELECTIVE("AWP"),
    COMPULSORY("FWP"),
    PLV("PLV");

    private String courseType;

    private CourseType(String courseType)
    {
        this.courseType = courseType;
    }
}