Which library is the best with ordered map implementation?
Implementation is required to be
1) generic
2) accessible by integer index
One from JRE can't be accessed by index: http://docs.oracle.com/javase/7/docs/api/java/util/LinkedHashMap.html
One from Commons-Collections 3.2 is not generic: http://commons.apache.org/proper/commons-collections//javadocs/api-release/org/apache/commons/collections/map/LinkedMap.html
One from Commons-Collection 4.0 is not released yet.
And can't find appropriate class in Guava. Is there one?