java Programming Glossary: drinktypeinterface
Using nested enum types in Java http://stackoverflow.com/questions/7296785/using-nested-enum-types-in-java method declarations someMethod Drink type someOtherMethod DrinkTypeInterface type Then I could say appropriately someMethod Drink.COFFEE.. this.groupName groupName public enum Coffee implements DrinkTypeInterface COLUMBIAN Columbian Blend ETHIOPIAN Ethiopian Blend private.. return this.groupName And the interface public interface DrinkTypeInterface public String getLabel I think I'm just trying to wrap my head..
|