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

io.github.icodegarden.nutrient.lang.result.Result2 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 
 */
public class Result2 extends Result1 {

	private static final long serialVersionUID = -3518082018884860684L;

	final T2 t2;

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

	public T2 getT2() {
		return t2;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy