hello, i am working with enums a lot and all of them are like
public static enum SomeEnum { … }
it is also possible to leave the static away, but i cant think of a reason why this would make any sense.
can someone give an example where a non-static enum makes sense?
thanks!