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

com.github.panhongan.util.Pair Maven / Gradle / Ivy

There is a newer version: 0.1.8
Show newest version
package com.github.panhongan.util;

public class Pair {

	public First first;
	
	public Second second;
	
	public Pair(First first, Second second) {
		this.first = first;
		this.second = second;
	}
	
	@Override
	public String toString() {
		return "Pair(" + StringUtil.toString(first) + "," + StringUtil.toString(second) + ")";
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy