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

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

package com.livae.util;

public class Triple {

	public final FIRST first;

	public final SECOND second;

	public final THIRD third;

	public Triple(FIRST first, SECOND second, THIRD third) {
		this.first = first;
		this.second = second;
		this.third = third;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy