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

com.livae.util.Tuple Maven / Gradle / Ivy

package com.livae.util;

public class Tuple {

	public final FIRST first;

	public final SECOND second;

	public Tuple(FIRST first, SECOND second) {
		this.first = first;
		this.second = second;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy