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

com.github.lgooddatepicker.zinternaltools.Pair Maven / Gradle / Ivy

package com.github.lgooddatepicker.zinternaltools;

/**
 * Pair, This class allows storing and editing of pairs of data. Since this class uses generics, the
 * data may be any java class type.
 */
public class Pair {

    public A first;
    public B second;

    public Pair(A first, B second) {
        this.first = first;
        this.second = second;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy