I have this Java Map:
Can you tell me how I can get the 6-th element of the Map?
private static final Map cache = new HashMap<
With guava's Iterables
Iterables.get(map.entrySet(),6);