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

com.softicar.platform.common.container.map.number.FloatMap Maven / Gradle / Ivy

Go to download

The SoftiCAR Platform is a lightweight, Java-based library to create interactive business web applications.

There is a newer version: 50.0.0
Show newest version
package com.softicar.platform.common.container.map.number;

import com.softicar.platform.common.math.arithmetic.Arithmetics;
import java.util.Comparator;
import java.util.Map;
import java.util.TreeMap;

/**
 * A {@link NumberMap} for floats.
 * 
 * @param 
 *            the type of the keys
 * @author Oliver Richers
 */
public class FloatMap extends NumberMap {

	public FloatMap() {

		this(new TreeMap());
	}

	public FloatMap(Comparator comparator) {

		this(new TreeMap(comparator));
	}

	public FloatMap(Map data) {

		super(data, Arithmetics.FLOAT);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy