This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Map.Entry interface in CNI
- From: Vaivaswatha N <vaivaswatha at yahoo dot co dot in>
- To: java at gcc dot gnu dot org
- Date: Thu, 14 Mar 2013 21:05:05 +0800 (SGT)
- Subject: Map.Entry interface in CNI
Hi,
I'm trying to use the util.concurrent.ConcurrentSkipListMap implementation from my C++ code. I need to use iterators on this data structure.
According to the Java documentation, A set of Map.Entry will be returned when I call the "entrySet()" method. I'm unable to find Map.Entry defined anywhere. How do I get an iterator to ConcurrentSkipListMap such that I can access the key/value pairs from the iterator?
Thanks a lot,
- Vaivaswatha