I am not very skilled in Java so I consider my question as basic. I am writing an interface for something like ArrayResult. There will be methods add and get.
Problem is that ArrayResult can obtain values of Integer or Double. So I need to define methods in interface more generally. I figured out that it is possible to have something like this for get method:
public <N extends Number> N get(Integer index);
Is that correct? I believe this means that get method can return anything what extends Number Object. What sytax to use for add method?
public void add(Number value);
This is not what I want since add(Integer value) doesnt override the interface method.