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

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

The newest version!
package com.aggrepoint.utils;

public class FourValues extends ThreeValues {
	private static final long serialVersionUID = 1L;

	private M four;

	public FourValues(U u, V v, K k, M m) {
		super(u, v, k);
		four = m;
	}

	public M getFour() {
		return four;
	}

	public void setFour(M four) {
		this.four = four;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy