Hi
Is there is any LinkedHashMap in j2m ?or how can we achieve it?
Thanks
Juniad
Hi
Is there is any LinkedHashMap in j2m ?or how can we achieve it?
Thanks
Juniad
i also used hashtable but i want the functionalitylike Linkedhashmap
Thanks
junaid
If you want to be able to access the elements in insertion order, then you need to maintain a Vector of the keys in parallel to the Hashtable. Or implement your own collection class.
Graham.