Guest User

Untitled

a guest
Mar 24th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. pblic class Test
  2. {
  3. public static final Test test1=new Test("a");
  4. public static final Test test2=new Test("b");
  5. public static final Test test3=new Test("c");
  6.  
  7. //instance
  8. public static String instance;
  9.  
  10. public Test(String init)
  11. {
  12. instance=init;
  13. }
  14.  
  15. .
  16. .
  17. .
  18.  
  19. public enum myEnum
  20. {
  21. APPLE{{this.enumtest=Test.test1}};
  22.  
  23. Test enumtest;
  24. .
  25. .
  26. .
Add Comment
Please, Sign In to add comment