package eu.dnetlib.goldoa.domain.stats;

import com.google.gwt.user.client.rpc.IsSerializable;

/**
 * Created by antleb on 12/7/15.
 */
public class Quadruple<K, V, L, F> extends Triple<K, V, L> implements IsSerializable {

	private F fourth;

	public Quadruple() {
	}

	public Quadruple(K first, V second, L third, F fourth) {
		super(first, second, third);
		this.fourth = fourth;
	}

	public F getFourth() {
		return fourth;
	}

	public void setFourth(F fourth) {
		this.fourth = fourth;
	}
}
