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

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

The newest version!
package com.aggrepoint.utils;

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

	private K three;

	public ThreeValues(U u, V v, K k) {
		super(u, v);
		three = k;
	}

	public K getThree() {
		return three;
	}

	public void setThree(K three) {
		this.three = three;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy