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

fr.lteconsulting.hexa.client.common.Pair Maven / Gradle / Ivy

The newest version!
package fr.lteconsulting.hexa.client.common;

public class Pair
{
	public static  Pair create( T first, U last )
	{
		return new Pair( first, last );
	}

	public T first;
	public U last;

	public Pair( T first, U last )
	{
		this.first = first;
		this.last = last;
	}
	
	@Override
	public String toString()
	{
		return "Pair[" + first + "," + last + "]";
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy