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

org.danilopianini.lang.ObjectIntHashMap 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.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;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy