Because of type erasure you cannot use the standard instanceof operator. The canonical approach is to pass the class itself or an instance of it somewhere.
Then you can use reflection to check the instance type:
private Class<V> clazz; // somehow this gets set
public boolean containsValue(Object value){
if(clazz.isInstance(value)){
// safe:
V temp = (V) value;
}
You can also check the inheritance tree using Class.isAssignableFrom:
if(clazz.isAssignableFrom(value.getClass())){
// safe:
V temp = (V) value;
}
Note this guarantees that this is a type-safe cast but does not require the types to be the same, e.g. V could be Number, but value could be of type Integer.
As far as getting clazz, you can enforce it in your constructor:
public class MyMap<K,V>{
private final Class<V> clazz;
public MyMap(Class<V> clazz){
this.clazz = clazz;
}
...
And your initializer for the class might look something like:
MyMap<Integer,String> foo = new MyMap<Integer,String>(String.class);
I'm generally in favor of passing the type in the constructor for this kind of thing and marking the field as final since the semantics and restrictions would then prevent you from changing that field, which is reasonable since the instance generally relies on compile-time guarantees that assume the type parameters are unchanged.
containsValue()method, which returns true when there exists a valuevin the Map wherevalue.equals(v)(or if they are both null), regardless of the class ofvalue– newacct Aug 11 '11 at 4:10