public interface Proposal {
public static final enum STATUS {
NEW ,
START ,
CONTINUE ,
SENTTOCLIENT
};
}
Java does not allow an enum to be final
inside an interface, but by default every data member inside an interface is public static final
. Can anybody clarify this?
No point in declaring enum final. Final for classes means that they can not be inherited. However, enums can not be inherited by default (that is they are final).
The final thing is valid only for variables. However you should think of the enums more like data types than variables.
Two things:
An enum can't be final, because the compiler will generate subclasses for each enum entry that the programmer has explicitly defined an implementation for.
Moreover, an enum where no instances have their own class body is implicitly final, by JLS section 8.9.
Java does not allow you to create a class that extends an
enum
type. Therefore, enums themselves are always final, so using thefinal
keyword is superfluous.Of course, in a sense,
enum
s are not final because you can define an anonymous subclass for each field inside of the enum descriptor. But it wouldn't make much sense to use thefinal
keyword to prevent those types of descriptions, because people would have to create these subclasses within the same .java file, and anybody with rights to do that could just as easily remove thefinal
keyword. There's no risk of someone extending your enum in some other package.