Uses of Interface
fj.function.Try1
Packages that use Try1
Package
Description
Types that set the premise for the existence of Functional Java.
Abstractions for JDBC connections.
Common algebraic data types.
A prelude of commonly used first-class functions
-
Uses of Try1 in fj
Modifier and TypeMethodDescriptionstatic <A,
B, E extends Exception>
F<A, Validation<E, B>> Promotes the Try1 to a Validation that returns an Exception on the failure side and its result on the success side. -
Uses of Try1 in fj.control.db
Methods in fj.control.db with parameters of type Try1Modifier and TypeMethodDescriptionstatic <A> DB
<A> DB.db
(Try1<Connection, A, SQLException> t) Constructs a database action as a function from a database connection to a value. -
Uses of Try1 in fj.data
Modifier and TypeMethodDescriptionstatic <A,
B, Z extends IOException>
F<Try1<A, B, Z>, F<A, Validation<Z, B>>> Conversions.Try_F()
static <A,
B, E extends Exception>
F<Try1<A, B, E>, Function<A, Validation<E, B>>> Java8.TryCatch1_Function()
Modifier and TypeMethodDescriptionstatic <A,
B, Z extends IOException>
F<A, Validation<Z, B>> static <A,
B, E extends Exception>
Function<A, Validation<E, B>> Java8.TryCatch1_Function
(Try1<A, B, E> t) -
Uses of Try1 in fj.function
Methods in fj.function that return Try1