Skip to content

Instantly share code, notes, and snippets.

@l-gu
Created February 24, 2014 13:05
Show Gist options
  • Save l-gu/9188049 to your computer and use it in GitHub Desktop.
Save l-gu/9188049 to your computer and use it in GitHub Desktop.
Map entries
//--- For each entity
for ( Map.Entry<String, EntityInContext> entry : _entities.entrySet() )
{
//String name = entry.getKey() ;
EntityInContext entity = entry.getValue() ;
allEntities.add(entity);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment