| Author |
convert hashmap <string, anytype > to hashMap<string, object>
|
zuje lal
Greenhorn
Joined: Jan 08, 2009
Posts: 1
|
|
Can somebody help me to convert any type of "values" , might be integer,string .. To object
I want to keep the key as same and want to convert the value as object
thanks
zuje
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19232
|
|
Anything that is not a primitive is already an Object. Therefore, Map<String,Integer> is a Map<? extends String,? extends Object>, and you can use it in the putAll method:
Also, most Map implementation classes have a constructor that takes a Map<? extends K,? extends V> so it's even shorter for only one map:
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
 |
|
|
subject: convert hashmap <string, anytype > to hashMap<string, object>
|
|
|