From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29745 invoked by alias); 14 Mar 2013 13:05:15 -0000 Received: (qmail 29737 invoked by uid 22791); 14 Mar 2013 13:05:15 -0000 X-SWARE-Spam-Status: No, hits=3.0 required=5.0 tests=AWL,BAYES_40,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,KHOP_SPAMHAUS_DROP,RCVD_IN_DNSWL_NONE,RCVD_IN_HOSTKARMA_YE X-Spam-Check-By: sourceware.org Received: from nm15-vm3.bullet.mail.sg3.yahoo.com (HELO nm15-vm3.bullet.mail.sg3.yahoo.com) (106.10.149.50) by sourceware.org (qpsmtpd/0.43rc1) with SMTP; Thu, 14 Mar 2013 13:05:09 +0000 Received: from [106.10.166.118] by nm15.bullet.mail.sg3.yahoo.com with NNFMP; 14 Mar 2013 13:05:05 -0000 Received: from [106.10.150.26] by tm7.bullet.mail.sg3.yahoo.com with NNFMP; 14 Mar 2013 13:05:05 -0000 Received: from [127.0.0.1] by omp1027.mail.sg3.yahoo.com with NNFMP; 14 Mar 2013 13:05:05 -0000 Received: (qmail 75912 invoked by uid 60001); 14 Mar 2013 13:05:05 -0000 Received: from [14.139.128.11] by web190701.mail.sg3.yahoo.com via HTTP; Thu, 14 Mar 2013 21:05:05 SGT Message-ID: <1363266305.69315.YahooMailClassic@web190701.mail.sg3.yahoo.com> Date: Thu, 14 Mar 2013 13:05:00 -0000 From: Vaivaswatha N Subject: Map.Entry interface in CNI To: java@gcc.gnu.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Mailing-List: contact java-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: java-owner@gcc.gnu.org X-SW-Source: 2013-03/txt/msg00002.txt.bz2 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 wh= en I call the "entrySet()" method. I'm unable to find Map.Entry defined any= where. How do I get an iterator to ConcurrentSkipListMap such that I can ac= cess the key/value pairs from the iterator? Thanks a lot, - Vaivaswatha