Guest User

Untitled

a guest
May 22nd, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.12 KB | None | 0 0
  1.  
  2. public enum Type
  3. {
  4.     SLIM(0),
  5.     FAT(1);
  6.    
  7.     public int i;
  8.    
  9.     private Type(int value)
  10.     {
  11.         this.i = value;
  12.     }
  13. }
Add Comment
Please, Sign In to add comment