public enum Sex { MALE("M", "Male"), FIMALE("F", "Fimale"), UNISEX("U", "Unisex"); private final String sex; private final String name; // in meters Sex(String sex, String name) { this.sex = sex; this.name = name; } public String getSex() { return sex; } public String getName() { return this.name; } }
Enum
Posted on
by Kim
Subscribe to:
Post Comments (Atom)
0 Responses to "Enum":
Post a Comment