Why Enum Singleton are better in Java
Enum Singletons are most simplest way to write thread-safe Singleton in Java 5 world. Enum handles both Serialization and thread-safety by own, instead of coding double checked locking you can have thread-safe singleton in one line....