I'd like to call a method defined like
<T> void foo(Class<? extends Collection<T>>)
but there is no way the compiler let me pass
foo(ArrayList<Integer>.class);
What is the syntax to get the type class of a generic type?
I am implementing the common case where I have a
Map<Key, Collection<Value>>
and want to insert a value in the collection. If the collection does not exist it should create a new one and insert the value in it. So far I have the following code, but with type safety warnings:
public static <K, V, C extends Collection<V>> boolean addToMappedCollectionNotNull(Map<K, C> aMap, K key, V element, Class<? extends Collection> type) {
C collection = aMap.get(key);
if (collection == null) {
try {
collection = (C)type.newInstance();
} catch (IllegalAccessException e) {
throw new RuntimeException(e);
} catch (InstantiationException e) {
throw new RuntimeException(e);
}
aMap.put(key, collection);
}
return collection.add(element);
}