HashNMap stores multiple values by a single key value. Values can be retrieved using a direct query or by creating an enumeration over the stored elements. : Customized Map « Collections Data Structure « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Collections Data Structure » Customized MapScreenshots 
HashNMap stores multiple values by a single key value. Values can be retrieved using a direct query or by creating an enumeration over the stored elements.
   
/* 
 * JCommon : a free general purpose class library for the Java(tm) platform
 
 *
 * (C) Copyright 2000-2005, by Object Refinery Limited and Contributors.
 
 * Project Info:  http://www.jfree.org/jcommon/index.html
 *
 * This library is free software; you can redistribute it and/or modify it 
 * under the terms of the GNU Lesser General Public License as published by 
 * the Free Software Foundation; either version 2.1 of the License, or 
 * (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful, but 
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 
 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 
 * License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, 
 * USA.  
 *
 * [Java is a trademark or registered trademark of Sun Microsystems, Inc. 
 * in the United States and other countries.]
 *
 * -------------
 * HashNMap.java
 * -------------
 * (C)opyright 2002-2005, by Thomas Morgner and Contributors.
 *
 * Original Author:  Thomas Morgner;
 * Contributor(s):   David Gilbert (for Object Refinery Limited);
 *
 * $Id: HashNMap.java,v 1.7 2005/10/18 13:24:19 mungady Exp $
 *
 * Changes
 * -------
 * 20-May-2002 : Initial version
 * 10-Dec-2002 : Minor Javadoc updates (DG);
 * 29-Jul-2004 : Replaced 'enum' variable name (reserved word in JDK 1.5) (DG);
 * 12-Mar-2005 : Some performance improvements, this implementation is no 
 *               longer forced to use ArrayLists, add/put behaviour changed to 
 *               fit the common behaviour of collections.
 *
 */

import java.io.Serializable;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.NoSuchElementException;
import java.util.Set;

/**
 * The HashNMap can be used to store multiple values by a single key value. The
 * values stored can be retrieved using a direct query or by creating an
 * enumeration over the stored elements.
 
 @author Thomas Morgner
 */
public class HashNMap implements Serializable, Cloneable {

  /** Serialization support. */
  private static final long serialVersionUID = -670924844536074826L;

  /**
   * An helper class to implement an empty iterator. This iterator will always
   * return false when <code>hasNext</code> is called.
   */
  private static final class EmptyIterator implements Iterator {

    /**
     * DefaultConstructor.
     */
    private EmptyIterator() {
      super();
    }

    /**
     * Returns <tt>true</tt> if the iteration has more elements. (In other
     * words, returns <tt>true</tt> if <tt>next</tt> would return an element
     * rather than throwing an exception.)
     
     @return <tt>true</tt> if the iterator has more elements.
     */
    public boolean hasNext() {
      return false;
    }

    /**
     * Returns the next element in the iteration.
     
     @return the next element in the iteration.
     @throws NoSuchElementException
     *           iteration has no more elements.
     */
    public Object next() {
      throw new NoSuchElementException("This iterator is empty.");
    }

    /**
     * Removes from the underlying collection the last element returned by the
     * iterator (optional operation). This method can be called only once per
     * call to <tt>next</tt>. The behavior of an iterator is unspecified if
     * the underlying collection is modified while the iteration is in progress
     * in any way other than by calling this method.
     
     @throws UnsupportedOperationException
     *           if the <tt>remove</tt> operation is not supported by this
     *           Iterator.
     @throws IllegalStateException
     *           if the <tt>next</tt> method has not yet been called, or the
     *           <tt>remove</tt> method has already been called after the last
     *           call to the <tt>next</tt> method.
     */
    public void remove() {
      throw new UnsupportedOperationException("This iterator is empty, no remove supported.");
    }
  }

  /**
   * A singleton instance of the empty iterator. This object can be safely
   * shared.
   */
  private static final Iterator EMPTY_ITERATOR = new EmptyIterator();

  /**
   * The underlying storage.
   */
  private HashMap table;

  /**
   * An empty array.
   */
  private static final Object[] EMPTY_ARRAY = new Object[0];

  /**
   * Default constructor.
   */
  public HashNMap() {
    this.table = new HashMap();
  }

  /**
   * Returns a new empty list.
   
   @return A new empty list.
   */
  protected List createList() {
    return new ArrayList();
  }

  /**
   * Inserts a new key/value pair into the map. If such a pair already exists,
   * it gets replaced with the given values.
   
   @param key
   *          the key.
   @param val
   *          the value.
   @return A boolean.
   */
  public boolean put(final Object key, final Object val) {
    final List v = (Listthis.table.get(key);
    if (v == null) {
      final List newList = createList();
      newList.add(val);
      this.table.put(key, newList);
      return true;
    else {
      v.clear();
      return v.add(val);
    }
  }

  /**
   * Adds a new key/value pair into this map. If the key is not yet in the map,
   * it gets added to the map and the call is equal to put(Object,Object).
   
   @param key
   *          the key.
   @param val
   *          the value.
   @return true, if the value has been added, false otherwise
   */
  public boolean add(final Object key, final Object val) {
    final List v = (Listthis.table.get(key);
    if (v == null) {
      put(key, val);
      return true;
    else {
      return v.add(val);
    }
  }

  /**
   * Retrieves the first value registered for an key or null if there was no
   * such key in the list.
   
   @param key
   *          the key.
   @return the value.
   */
  public Object getFirst(final Object key) {
    return get(key, 0);
  }

  /**
   * Retrieves the n-th value registered for an key or null if there was no such
   * key in the list. An index out of bounds exception is thrown if there are
   * less than n elements registered to this key.
   
   @param key
   *          the key.
   @param n
   *          the index.
   @return the object.
   */
  public Object get(final Object key, final int n) {
    final List v = (Listthis.table.get(key);
    if (v == null) {
      return null;
    }
    return v.get(n);
  }

  /**
   * Returns an iterator over all elements registered to the given key.
   
   @param key
   *          the key.
   @return an iterator.
   */
  public Iterator getAll(final Object key) {
    final List v = (Listthis.table.get(key);
    if (v == null) {
      return EMPTY_ITERATOR;
    }
    return v.iterator();
  }

  /**
   * Returns all registered keys as an enumeration.
   
   @return an enumeration of the keys.
   */
  public Iterator keys() {
    return this.table.keySet().iterator();
  }

  /**
   * Returns all registered keys as set.
   
   @return a set of keys.
   */
  public Set keySet() {
    return this.table.keySet();
  }

  /**
   * Removes the key/value pair from the map. If the removed entry was the last
   * entry for this key, the key gets also removed.
   
   @param key
   *          the key.
   @param value
   *          the value.
   @return true, if removing the element was successfull, false otherwise.
   */
  public boolean remove(final Object key, final Object value) {
    final List v = (Listthis.table.get(key);
    if (v == null) {
      return false;
    }

    if (!v.remove(value)) {
      return false;
    }
    if (v.size() == 0) {
      this.table.remove(key);
    }
    return true;
  }

  /**
   * Removes all elements for the given key.
   
   @param key
   *          the key.
   */
  public void removeAll(final Object key) {
    this.table.remove(key);
  }

  /**
   * Clears all keys and values of this map.
   */
  public void clear() {
    this.table.clear();
  }

  /**
   * Tests whether this map contains the given key.
   
   @param key
   *          the key.
   @return true if the key is contained in the map
   */
  public boolean containsKey(final Object key) {
    return this.table.containsKey(key);
  }

  /**
   * Tests whether this map contains the given value.
   
   @param value
   *          the value.
   @return true if the value is registered in the map for an key.
   */
  public boolean containsValue(final Object value) {
    final Iterator e = this.table.values().iterator();
    boolean found = false;
    while (e.hasNext() && !found) {
      final List v = (Liste.next();
      found = v.contains(value);
    }
    return found;
  }

  /**
   * Tests whether this map contains the given value.
   
   @param value
   *          the value.
   @param key
   *          the key under which to find the value
   @return true if the value is registered in the map for an key.
   */
  public boolean containsValue(final Object key, final Object value) {
    final List v = (Listthis.table.get(key);
    if (v == null) {
      return false;
    }
    return v.contains(value);
  }

  /**
   * Tests whether this map contains the given key or value.
   
   @param value
   *          the value.
   @return true if the key or value is contained in the map
   */
  public boolean contains(final Object value) {
    if (containsKey(value)) {
      return true;
    }
    return containsValue(value);
  }

  /**
   * Returns a clone of the specified object, if it can be cloned, otherwise
   * throws a CloneNotSupportedException.
   
   @param object
   *          the object to clone (<code>null</code> not permitted).
   @return A clone of the specified object.
   @throws CloneNotSupportedException
   *           if the object cannot be cloned.
   */
  public static Object clone(final Object objectthrows CloneNotSupportedException {
    if (object == null) {
      throw new IllegalArgumentException("Null 'object' argument.");
    }

    else {
      try {
        final Method method = object.getClass().getMethod("clone"(Class[]) null);
        if (Modifier.isPublic(method.getModifiers())) {
          return method.invoke(object, (Object[]) null);
        }
      catch (Exception e) {

      }
    }
    throw new CloneNotSupportedException("Failed to clone.");
  }

  /**
   * Creates a deep copy of this HashNMap.
   
   @return a clone.
   @throws CloneNotSupportedException
   *           this should never happen.
   */
  public Object clone() throws CloneNotSupportedException {
    final HashNMap map = (HashNMapsuper.clone();
    map.table = new HashMap();
    final Iterator iterator = keys();
    while (iterator.hasNext()) {
      final Object key = iterator.next();
      final List list = (Listmap.table.get(key);
      if (list != null) {
        map.table.put(key,clone(list));
      }
    }
    return map;
  }

  /**
   * Returns the contents for the given key as object array. If there were no
   * objects registered with that key, an empty object array is returned.
   
   @param key
   *          the key.
   @param data
   *          the object array to receive the contents.
   @return the contents.
   */
  public Object[] toArray(final Object key, final Object[] data) {
    if (key == null) {
      throw new NullPointerException("Key must not be null.");
    }
    final List list = (Listthis.table.get(key);
    if (list != null) {
      return list.toArray(data);
    }
    if (data.length > 0) {
      data[0null;
    }
    return data;
  }

  /**
   * Returns the contents for the given key as object array. If there were no
   * objects registered with that key, an empty object array is returned.
   
   @param key
   *          the key.
   @return the contents.
   */
  public Object[] toArray(final Object key) {
    if (key == null) {
      throw new NullPointerException("Key must not be null.");
    }
    final List list = (Listthis.table.get(key);
    if (list != null) {
      return list.toArray();
    }
    return EMPTY_ARRAY;
  }

  /**
   * Returns the number of elements registered with the given key.
   
   @param key
   *          the key.
   @return the number of element for this key, or 0 if there are no elements
   *         registered.
   */
  public int getValueCount(final Object key) {
    if (key == null) {
      throw new NullPointerException("Key must not be null.");
    }
    final List list = (Listthis.table.get(key);
    if (list != null) {
      return list.size();
    }
    return 0;
  }
}

   
    
    
  
Related examples in the same category
1. Ordered Map
2. Case Insensitive Map
3. A Map collection with real-time behavior
4. Cache Map
5. Map implementation Optimized for Strings keys
6. An integer hashmap
7. An IdentityMap that uses reference-equality instead of object-equality
8. Int Object HashMap
9. Concurrent Skip List Map
10. A hash map that uses primitive ints for the key rather than objects.
11. Integer Map
12. Copy On Write Map
13. Expiring Map
14. Array Map
15. Int Object HashMap (from CERN)
16. Int HashMap from jodd.org
17. String Map
18. List Map
19. Map using Locale objects as keys
20. Map with keys iterated in insertion order
21. Most Recently Used Map
22. Multi Map
23. MultiMap is a Java version of the C++ STL class std::multimap
24. Object Int Map
25. Sequenced HashMap
26. Int Int Map
27. Int Object Map
28. Identity HashMap
29. A java.util.Map interface which can only hold a single object
30. A multi valued Map
31. A simple hashmap from keys to integers
32. A memory-efficient hash map.
33. An implementation of the java.util.Map interface which can only hold a single object.
34. Utility methods for operating on memory-efficient maps.
35. CaseBlindHashMap - a HashMap extension, using Strings as key values.
36. A fixed size map implementation.
37. Int HashMap
38. IntMap provides a simple hashmap from keys to integers
39. Complex Key HashMap
40. A Map with multiple values for a key
41. A Map that accepts int or Integer keys only
42. A Map where keys are compared by object identity, rather than equals()
43. Type-safe Map, from char array to String value
44. A hashtable-based Map implementation with soft keys
45. List ordered map
46. Hash map using String values as keys mapped to primitive int values.
47. Lookup table that stores a list of strings
48. Combines multiple values to form a single composite key. MultiKey can often be used as an alternative to nested maps.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.