Skip to content

Instantly share code, notes, and snippets.

@arn-ob
Created March 1, 2016 18:00
Show Gist options
  • Save arn-ob/075406d9a38b4624f97a to your computer and use it in GitHub Desktop.
Save arn-ob/075406d9a38b4624f97a to your computer and use it in GitHub Desktop.
Enum Example in Java
class frut {
enum frt{ Small , Medium , Large }
frt size;
}
public class tst {
public static void main(String[] args){
frut sz = new frut();
sz.size = frut.frt.Small;
System.out.println("Size : "+ sz.size);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment