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

io.github.icodegarden.nutrient.lang.result.Result1 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 
 */
public class Result1 extends Result {
	private static final long serialVersionUID = 8564367822935418344L;

	final T1 t1;

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

	public T1 getT1() {
		return t1;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy