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

org.apertereports.common.wrappers.Pair Maven / Gradle / Ivy

package org.apertereports.common.wrappers;

/**
 * Represents a pair of objects.
 *
 * @param  First object.
 * @param  Second object.
 */
public class Pair {
    private T1 key;
    private T2 entry;

    public Pair() {
    }

    public Pair(T1 key, T2 entry) {
        this.key = key;
        this.entry = entry;
    }

    public T2 getEntry() {
        return entry;
    }

    public T1 getKey() {
        return key;
    }

    public void setEntry(T2 entry) {
        this.entry = entry;
    }

    public void setKey(T1 key) {
        this.key = key;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy