All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.danilopianini.lang.ExactHashObjectMap Maven / Gradle / Ivy

There is a newer version: 0.6.1
Show newest version
/*******************************************************************************
 * Copyright (C) 2009, 2015, Danilo Pianini and contributors
 * listed in the project's build.gradle or pom.xml file.
 *
 * This file is distributed under the terms of the Apache License, version 2.0
 *******************************************************************************/
package org.danilopianini.lang;

import gnu.trove.impl.hash.THash;
import gnu.trove.map.TIntObjectMap;
import gnu.trove.map.hash.TIntObjectHashMap;

/**
 * A map which stores objects using hash codes for indexing. Note: if two
 * different objects have the same hashCode, this map WILL NOT WORK PROPERLY.
 * You must be sure that for the stored object the generated hash codes are
 * univocal.
 * 
 * @author Danilo Pianini
 * 
 * @param 
 */
public class ExactHashObjectMap extends TIntObjectHashMap {

	/**
	 * Builds a new, emtpy map.
	 */
	public ExactHashObjectMap() {
		super();
	}

	/**
	 * Builds a new map containing all the elements of the passed map.
	 * 
	 * @param map
	 *            the map to copy
	 */
	public ExactHashObjectMap(final TIntObjectMap map) {
		super(map);
	}

	/**
	 * Builds a new map, which will not resize until the number of stored
	 * objects will be less or equal to expectedSize.
	 * 
	 * @param expectedSize
	 *            the expected size
	 */
	public ExactHashObjectMap(final int expectedSize) {
		/*
		 * If the initial capacity is greater than the maximum number of entries
		 * divided by the load factor, no rehash operations will ever occur.
		 */
		super((int) (expectedSize / THash.DEFAULT_LOAD_FACTOR) + 1);
	}

	/**
	 * Returns true if this map contains a mapping for the specified
	 * key. More formally, returns true if and only if this map
	 * contains a mapping for a key k such that key.equals(k).
	 * (There can be at most one such mapping.)
	 * 
	 * @param key
	 *            key whose presence in this map is to be tested
	 * @return true if this map contains a mapping for the specified
	 *         key
	 */
	public boolean containsKey(final Object key) {
		return super.containsKey(key.hashCode());
	}

	/**
	 * Returns the value to which the specified key is mapped, or {@code null}
	 * if this map contains no mapping for the key.
	 * 
	 * 

* More formally, if this map contains a mapping from a key {@code k} to a * value {@code v} such that {@code (key==null ? k==null : * key.equals(k))}, then this method returns {@code v}; otherwise it returns * {@code null}. (There can be at most one such mapping.) * *

* If this map permits null values, then a return value of {@code null} does * not necessarily indicate that the map contains no mapping for the * key; it's also possible that the map explicitly maps the key to * {@code null}. The {@link #containsKey containsKey} operation may be used * to distinguish these two cases. * * @param key * the key whose associated value is to be returned * @return the int value to which the specified key is mapped, or * {@code null} if this map contains no mapping for the key */ public V get(final Object key) { return super.get(key.hashCode()); } /** * Associates the specified value with the specified key in this map * (optional operation). If the map previously contained a mapping for the * key, the old value is replaced by the specified value. (A map m * is said to contain a mapping for a key k if and only if * {@link #containsKey(int) m.containsKey(k)} would return true.) * * @param key * key with which the specified value is to be associated * @param value * an int value value to be associated with the * specified key * @return the previous value associated with key, or * no_entry_value if there was no mapping for key. * (A no_entry_value return can also indicate that the map * previously associated null with key, if the * implementation supports null values.) * @see #getNoEntryKey() */ public V put(final Object key, final V value) { return super.put(key.hashCode(), value); } /** * Removes the mapping for a key from this map if it is present (optional * operation). More formally, if this map contains a mapping from key * k to value v such that key.equals(k), that * mapping is removed. (The map can contain at most one such mapping.) * *

* Returns the value to which this map previously associated the key, or * null if the map contained no mapping for the key. * *

* If this map permits null values, then a return value of null * does not necessarily indicate that the map contained no mapping * for the key; it's also possible that the map explicitly mapped the key to * null. * *

* The map will not contain a mapping for the specified key once the call * returns. * * @param key * key whose mapping is to be removed from the map * @return the previous int value associated with key, or * null if there was no mapping for key. */ public V remove(final Object key) { return super.remove(key.hashCode()); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy