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

jeco.core.util.Pair Maven / Gradle / Ivy

The newest version!
package jeco.core.util;

public class Pair {
	public T a;
	public Z b;
	
	public Pair() {
		
	}
	
	public Pair(T a, Z b){
		this.a = a;
		this.b = b;
	}

	public T getA() {
		return a;
	}

	public void setA(T a) {
		this.a = a;
	}

	public Z getB() {
		return b;
	}

	public void setB(Z b) {
		this.b = b;
	}
	
	

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy