private Set<Entry<Personne, List<Precision>>> mapCorrelationEtat;
for (Map.Entry<Personne, List<Precision>> entry : this.mapCorrelationEtat) {
Personne key = entry.getKey();
System.out.println(key.getIdPersonne());
}
in this linkedhashmap
I have some values, I want to remove some values from an another List
keyList: [1,2,5];
How can I do this?