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

org.etlunit.feature.database.util.DimensionalMap Maven / Gradle / Ivy

There is a newer version: 1.6.9
Show newest version
package org.etlunit.feature.database.util;

import java.util.Map;
import java.util.Set;

public interface DimensionalMap {
	void put(T t, K k, L l);

	L get(T t, K k);
	boolean containsKey(T t, K k);
	boolean containsKey(T t);

	Set keySet();

	int size();
	int size(T t);

	Map get(T t);

	L remove(T t, K k);
	Map remove(T t);

	void clear();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy