Package com.chutneytesting.task.domain
Class ResultOrError<RESULT,ERROR>
- java.lang.Object
-
- com.chutneytesting.task.domain.ResultOrError<RESULT,ERROR>
-
public class ResultOrError<RESULT,ERROR> extends Object
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ERRORerror()static <RESULT,ERROR>
ResultOrError<RESULT,ERROR>error(ERROR error)booleanisError()booleanisOk()RESULTresult()static <RESULT,ERROR>
ResultOrError<RESULT,ERROR>result(RESULT result)
-
-
-
Method Detail
-
isError
public boolean isError()
-
isOk
public boolean isOk()
-
result
public RESULT result()
-
error
public ERROR error()
-
result
public static <RESULT,ERROR> ResultOrError<RESULT,ERROR> result(RESULT result)
-
error
public static <RESULT,ERROR> ResultOrError<RESULT,ERROR> error(ERROR error)
-
-