Skip to content

Instantly share code, notes, and snippets.

@twogood
Created March 3, 2014 11:50
Show Gist options
  • Save twogood/9323464 to your computer and use it in GitHub Desktop.
Save twogood/9323464 to your computer and use it in GitHub Desktop.
What do you think about this singleton pattern?
public enum EnumSingleton
{
_INSTANCE;
public static EnumSingleton of()
{
return _INSTANCE;
}
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment