I thought I understood Java generics pretty well, but then I came across the following in java.lang.Enum:
class Enum<E extends Enum<E>>
Could someone explain how to interpret this type parameter? Bonus points for providing other examples of where a similar type parameter could be used.
It means that the type argument for enum has to derive from an enum which itself has the same type argument. How can this happen? By making the type argument the new type itself. So if I’ve got an enum called StatusCode, it would be equivalent to:
Now if you check the constraints, we’ve got
Enum<StatusCode>– soE=StatusCode. Let’s check: doesEextendEnum<StatusCode>? Yes! We’re okay.You may well be asking yourself what the point of this is 🙂 Well, it means that the API for Enum can refer to itself – for instance, being able to say that
Enum<E>implementsComparable<E>. The base class is able to do the comparisons (in the case of enums) but it can make sure that it only compares the right kind of enums with each other. (EDIT: Well, nearly – see the edit at the bottom.)I’ve used something similar in my C# port of ProtocolBuffers. There are ‘messages’ (immutable) and ‘builders’ (mutable, used to build a message) – and they come as pairs of types. The interfaces involved are:
This means that from a message you can get an appropriate builder (e.g. to take a copy of a message and change some bits) and from a builder you can get an appropriate message when you’ve finished building it. It’s a good job users of the API don’t need to actually care about this though – it’s horrendously complicated, and took several iterations to get to where it is.
EDIT: Note that this doesn’t stop you from creating odd types which use a type argument which itself is okay, but which isn’t the same type. The purpose is to give benefits in the right case rather than protect you from the wrong case.
So if
Enumweren’t handled ‘specially’ in Java anyway, you could (as noted in comments) create the following types:Secondwould implementComparable<First>rather thanComparable<Second>… butFirstitself would be fine.