package eu.dnetlib.goldoa.domain.stats;

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

/**
 * Created by stefania on 1/29/16.
 */
public class Quintuple<K, V, L, F, G> extends Quadruple<K, V, L, F> implements IsSerializable {

    private G fifth;

    public Quintuple() {
    }

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

    public G getFifth() {
        return fifth;
    }

    public void setFifth(G fifth) {
        this.fifth = fifth;
    }
}
