package gtPlusPlus.api.objects.data;

public class Triplet<K,V,C> {

	private final K key;
	private final V value;
	private final C count;

	public Triplet(final K key, final V value, final C value2){
		this.key = key;
		this.value = value;
		this.count = value2;
	}

	final public K getValue_1(){
		return this.key;
	}

	final public V getValue_2(){
		return this.value;
	}

	final public C getValue_3(){
		return this.count;
	}

}