loop through keys only in hashmap java

66

loop through keys only in hashmap java -

Map<String, Object> map = ...;

for (String key : map.keySet()) {
    // ...
}

Comments

Submit
0 Comments