This is the follow up of my question here: Weird Java generic.
If I have a code like this:
Casts.<X, T> cast(iterable[index]);
Can I add a static import and do:
<X, T> cast(iterable[index]);
Eclipse doesn’t allow this. But after seeing so many bugs with static import in Eclipse, I’m not that certain.
No, you can’t : I just confirmed this via some test code.
Casts.java
Test.java