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

com.softicar.platform.common.container.map.number.DoubleMap 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 doubles.
 * 
 * @param 
 *            the type of the keys
 * @author Oliver Richers
 */
public class DoubleMap extends NumberMap {

	public DoubleMap() {

		this(new TreeMap());
	}

	public DoubleMap(Comparator comparator) {

		this(new TreeMap(comparator));
	}

	public DoubleMap(Map data) {

		super(data, Arithmetics.DOUBLE);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy