Recently I started using Apache Commons MultiKeyMap
for some of my projects and in there I can have multiple values for a value.
MultiKeyMap typePanelUnoMap = new MultiKeyMap();
I want to know whether we can preserve insertion order when using MultiKeyMap
. I know that java.util.LinkedHashMap
can preserve the insertion order.
Map hshmap = new LinkedHashMap()
Can I have the same functionality with MultiKeyMap
?
Thanks,
Keth