org.danilopianini.lang.ObjectIntHashMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javalib Show documentation
Show all versions of javalib Show documentation
Handful shortcuts for Java programming
/*
* Copyright (C) 2010-2014, Danilo Pianini and contributors
* listed in the project's pom.xml file.
*
* This file is part of Alchemist, and is distributed under the terms of
* the GNU General Public License, with a linking exception, as described
* in the file LICENSE in the Alchemist distribution's top directory.
*/
package org.danilopianini.lang;
import gnu.trove.map.hash.TObjectIntHashMap;
/**
* A {@link TObjectIntHashMap} whose no_entry_value field is Integer.MIN_VALUE.
*
* @author Danilo Pianini
*
* @param
*/
public class ObjectIntHashMap extends TObjectIntHashMap {
/**
*
*/
public ObjectIntHashMap() {
super();
no_entry_value = Integer.MIN_VALUE;
}
}