Skip to content

Instantly share code, notes, and snippets.

@ratanakpek
Created October 3, 2017 15:59
//we can user setter & getter with enum
Fruit.APPLE.setFruit("YES, Love APPLE");
Fruit.PINE_APPLE.setFruit("NO, DON'T LIKE");
Fruit.BANANA.setFruit("NORMAL BANANA");
tv.setText(Fruit.APPLE.getFruit()+"");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment