FileDocCategorySizeDatePackage
HashMap5.javaAPI DocExample1354Sat Sep 12 03:01:00 BST 1998None

HashMap5

public class HashMap5 extends Object
Accessing keys and values.
see
com.objectspace.jgl.HashMap
version
3.0.0
author
ObjectSpace, Inc.

Fields Summary
Constructors Summary
Methods Summary
public static voidmain(java.lang.String[] args)

    HashMap map = new HashMap( true ); // allow duplicates
    map.add( "cat", "Meow" );
    map.add( "ape", "Squeak" );
    map.add( "ape", "Whoop" );
    map.add( "bat", "Squeak" );
    System.out.println( "map = " + map );
    System.out.println();

    System.out.println( "Enumerate the HashMap" );
    Enumeration e = map.elements();
    while ( e.hasMoreElements() )
      System.out.println( e.nextElement() );
    System.out.println();

    e = map.keys();
    System.out.print( "map.keys() = " );
    while ( e.hasMoreElements() )
      System.out.print( e.nextElement() + " " );
    System.out.println();

    e = map.keys( "Squeak" );
    System.out.print( "map.keys( Squeak ) = " );
    while ( e.hasMoreElements() )
      System.out.print( e.nextElement() + " " );
    System.out.println();

    e = map.values( "ape" );
    System.out.print( "map.keys( ape ) = " );
    while ( e.hasMoreElements() )
      System.out.print( e.nextElement() + " " );
    System.out.println();