java - Can I remove entries in LinkedHashMap<> for array of keys and not a single entry for a single key? -
i use linkedhashmap<> in android application , problem want delete several entries @ once.in objective-c there method removeobjectsforkeys accepts array of keys , remove entries corresponded keys in array - there similar in java? or can use remove(object key)and delete single entry single key?
try this
map.keyset().removeall(arrays.aslist(arr))
Comments
Post a Comment