public <R> Result<R,?> map(@NonNull ThrowingFunction<T,Result<R,?>> op)
public <R> Result<R,?> tryMap(@NonNull ThrowingFunction<T,R> op)
public <R> Result<R,?> andThen(@NonNull ThrowingSupplier<Result<R,?>> op)
public <R> Result<R,?> andThenTry(@NonNull ThrowingSupplier<R> op)
public <R> Result<R,?> andThen(@NonNull ThrowingConsumer<T> op)
public Result<?,?> andThenTry(@NonNull ThrowingConsumer<T> op)
public <R> Result<R,?> andThen(@NonNull ThrowingRunnable op)
public <R> Result<R,?> andThenTry(@NonNull ThrowingRunnable op)
public Result<T,?> tryMapErr(@NonNull ThrowingFunction<E,T> op)
public Result<T,?> orElse(@NonNull ThrowingSupplier<Result<T,?>> op)
public Result<T,?> orElseTry(@NonNull ThrowingSupplier<T> op)
public Result<T,?> orElse(@NonNull ThrowingConsumer<E> op)
public Result<T,?> orElseTry(@NonNull ThrowingConsumer<E> op)
public Result<T,?> orElse(@NonNull ThrowingRunnable op)
public Result<T,?> orElseTry(@NonNull ThrowingRunnable op)
public E getError()
public static <T> Result<T,?> ok()
public static <T> Result<T,?> trying(@NonNull ThrowingSupplier<T> op)
public static <T> Result<T,?> trying(@NonNull ThrowingRunnable op)
public boolean isOk()
public static <T> Result<T,?> ok(T value)
Copyright © 2017. All rights reserved.