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

io.github.icodegarden.nutrient.lang.result.Result4 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 
 * @param 
 */
public class Result4 extends Result3 {

	private static final long serialVersionUID = -4898704078143033129L;

	final T4 t4;

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

	public T4 getT4() {
		return t4;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy