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

mysh.collect.Pair Maven / Gradle / Ivy

The newest version!
package mysh.collect;

import java.io.Serializable;

/**
 * Pair
 *
 * @author mysh
 * @since 2016/1/11
 */
public class Pair implements Serializable {
	private static final long serialVersionUID = 2211820834340034966L;

	private L l;
	private R r;

	private Pair(L l, R r) {
		this.l = l;
		this.r = r;
	}

	public L getL() {
		return l;
	}

	public R getR() {
		return r;
	}

	public static  Pair of(L l, R r) {
		return new Pair<>(l, r);
	}

	@Override
	public String toString() {
		return "Pair{" +
				"l=" + l +
				", r=" + r +
				'}';
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy