I would like to do the following (which doesn't work, it is just to explain the concept). Any idea how to do it?
Class type;
if (/* something */)
type = String.class;
else
type = Boolean.class;
return new ArrayList<type>();
ArrayList<type> doesn't work. I tried with type.getClass(), doesn't work either.
this.someField = new ArrayList<type>();. The complete method is a bit too complicated, I just ask about how to do that collection instantiation. – Oltarus Jun 1 '11 at 9:11someFielddeclared? How would you notice a difference? If you can't tell us how you'll use it, then we can't tell you how it should be done. – Joachim Sauer Jun 1 '11 at 9:12private ArrayList<Object> someField;. – Oltarus Jun 1 '11 at 9:14private List<?> field;. And then in the code you can assign more specific instance using the method I provided in my answer. – Tomasz Blachowicz Jun 1 '11 at 9:18