public class ChickenPartType {

    public String toString() {
    }

    public static ChickenPartType WING = new ChickenPartType("wing");
    public static ChickenPartType DRUMSTICK = new ChickenPartType("drumstick");
    public static ChickenPartType THIGH = new ChickenPartType("thigh");
    public static ChickenPartType BREAST = new ChickenPartType("breast");

}
