Advertisement
Guest User

Untitled

a guest
Dec 9th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | None | 0 0
  1. HashMap<String, HashMap> selects = new HashMap<String, HashMap>();
  2.  
  3. for(Map.Entry<String, HashMap> entry : selects.entrySet()) {
  4.     String key = entry.getKey();
  5.     HashMap value = entry.getValue();
  6.  
  7.     // do what you have to do here
  8.     // In your case, an other loop.
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement