I want to create a method that compares a number but can have an input that is any of the subclasses of Number.
I have looked at doing this in the following manner…
public static <T extends Number> void evaluate(T inputNumber) {
if (inputNumber >= x) {
...
}
}
I need to get the actual primative before I can perform the comparison, the Number class has methods to retrieve this for each primative but I want a clean way of selecting the correct one.
Is this possible?
Cheers
Unfortunately there is no way to get the primitive type from the wrapper type without resorting to if/else blocks.
The problem is that it just wouldn’t be possible to implement such a method in a generic way. Here are some seemingly possible approaches which one could expect to find in the Number class:
This would be nice, wouldn’t it? But it’s impossible. There is no possible X that could be an abstraction over
int,float,doubleetc.This won’t help either, because there is no way to instantiate primitive classes.
So the only thing you can do that is common to all types is to use the
longValue()ordoubleValue()methods, but either way you are losing information if you’re dealing with the wrong type.So no: the java number hierarchy is just not suited to solve such problems in a generic way.