Advertisement
luck-alex13

Untitled

Apr 6th, 2018
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.14 KB | None | 0 0
  1. public enum MySingleton {
  2.     Instance;
  3.  
  4.     public void init() {}
  5.     public void dostuff() {}
  6. }
  7.  
  8. // call methods so
  9. MySingleton.Instance.init();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement