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

io.github.icodegarden.nutrient.lang.result.Result3 Maven / Gradle / Ivy

There is a newer version: 3.0.2
Show newest version
package io.github.icodegarden.nutrient.lang.result;

import io.github.icodegarden.nutrient.lang.annotation.Nullable;

/**
 * 
 * @author Fangfang.Xu
 *
 * @param 
 * @param 
 * @param 
 */
public class Result3 extends Result2 {

	private static final long serialVersionUID = -4430274211524723033L;

	final T3 t3;

	Result3(boolean success, @Nullable T1 t1, @Nullable T2 t2, @Nullable T3 t3) {
		super(success, t1, t2);
		this.t3 = t3;
	}

	public T3 getT3() {
		return t3;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy