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

com.aggrepoint.utils.TwoValues Maven / Gradle / Ivy

The newest version!
package com.aggrepoint.utils;

import java.io.Serializable;

public class TwoValues implements Serializable {
	private static final long serialVersionUID = 1L;

	private U one;
	private V two;

	public TwoValues(U u, V v) {
		one = u;
		two = v;
	}

	public U getOne() {
		return one;
	}

	public void setOne(U one) {
		this.one = one;
	}

	public V getTwo() {
		return two;
	}

	public void setTwo(V two) {
		this.two = two;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy