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

gov.nasa.pds.harvest.dao.Tuple Maven / Gradle / Ivy

package gov.nasa.pds.harvest.dao;

/**
 * This class is used to store key, value pairs.
 *  
 * @author karpenko
 */
public class Tuple
{
    public String item1;
    public String item2;

    
    /**
     * Constructor
     * @param item1 value 1
     * @param item2 value 2
     */
    public Tuple(String item1, String item2)
    {
        this.item1 = item1;
        this.item2 = item2;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy