home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JSAMPLES.Z / HashMap2.java < prev    next >
Text File  |  1998-05-08  |  1KB  |  50 lines

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3. import java.util.Enumeration;
  4.  
  5. /**
  6.  * Accessing keys and values.
  7.  *
  8.  * @see com.objectspace.jgl.HashMap
  9.  * @version 3.0.0
  10.  * @author ObjectSpace, Inc.
  11.  */
  12.  
  13. public class HashMap2
  14.   {
  15.   public static void main( String[] args )
  16.     {
  17.     HashMap map = new HashMap();
  18.     map.add( "cat", "Meow" );
  19.     map.add( "ape", "Squeak" );
  20.     map.add( "dog", "Woof" );
  21.     map.add( "bat", "Squeak" );
  22.     System.out.println( "map = " + map );
  23.  
  24.     System.out.print( "Enumerate the HashMap: " );
  25.     Enumeration e = map.elements();
  26.     while ( e.hasMoreElements() )
  27.       System.out.print( e.nextElement() + " ");
  28.     System.out.println();
  29.  
  30.     System.out.print( "map.keys() = " );
  31.     e = map.keys();
  32.     while ( e.hasMoreElements() )
  33.       System.out.print( e.nextElement() + " ");
  34.     System.out.println();
  35.  
  36.     System.out.print( "map.keys( Squeak ) = " );
  37.     e = map.keys( "Squeak" );
  38.     while ( e.hasMoreElements() )
  39.       System.out.print( e.nextElement() + " ");
  40.     System.out.println();
  41.  
  42.     System.out.print( "map.values( bat ) = " );
  43.     e = map.values( "bat" );
  44.     while ( e.hasMoreElements() )
  45.       System.out.print( e.nextElement() + " ");
  46.     System.out.println();
  47.     }
  48.   }
  49.  
  50.