I implement a Singleton using the enum approach:
public enum Singleton {
INSTANCE;
public void doStuff(String stuff) {
System.out.println("Doing " + stuff);
}
}
How do I call it right (I don't mean execute, just how to write it)? Is it still a class or now an enumeration? I'm just interested in the theoretical part.
If talking about object orientation and classes, can I say I created a Singleton class of type enumeration?
