4
votes
1answer
59 views

Inner static enum as generic type?

I am learning and experimenting with Java generics and come up with following piece of code which does not compile as expected. Result cannot be resolved. I stands for input, O for output. public ...
2
votes
2answers
162 views

Extended enum class

I had enum class, say enum class Enum{ var1, var2; } Now I want to add some member which depends on parameter i.e var3(int). OK, It's not for enum, so I want to change it by regular class, but ...
0
votes
2answers
66 views

Is it legal to reference an enum instance as a field of another instance of that type?

enum Day{SAT,SUN,MON,TUE,WED,THURS,FRI} class Plan{ Day d; public plan(Day d) { this.d=d; } Day getDay() { return d; } } class tester{ public static ...
10
votes
1answer
1k views

Class-scoped enum

I have a c++ class with an enum inside, and I wanted to mimick that with boost::python, so that I can write MyClass.value in python. boost::python::class_ does not have an enum_ method, and I was ...
0
votes
3answers
205 views

Are enum values shared among all instances of a class?

So, say I have the following enum declaration: public class WatchService implements Runnable { private State state; private enum State { FINDING_MANIFEST, FINDING_FILES, ...
12
votes
6answers
3k views

When to use enums, and when to replace them with a class with static members?

It recently occured to me that the following (sample) enumeration... enum Color { Red, Green, Yellow, Blue } ... could be replaced with a seemingly more type-safe class: class ...
13
votes
7answers
1k views

Should static variables be replaced with enums?

So I was looking at some code that was checked in and I got all puzzled over: // Amount of days before cancellation can't be done enum Cancellation { Limit = 2 }; Asking the guy who checked it in ...