JavaScript is disabled on your browser.
Contents
Deprecated Classes
You most likely need
SafeSql
to work with JDBC
You most likely need
SafeSql
to work with JDBC
You most likely need
SafeSql
to work with JDBC
Deprecated Methods
Prefer OFFSET-FETCH
clause, which is parameterizable
Use SafeSql.of("{foo? -> OR foo?}", optionalFoo)
instead of
optionally("or {foo}", optionalFoo)
because the former allows
you to reference foo?
multiple times in the right hand side snippet.
Use
biStream(User::id, users)
to create
BiStream<UserId, User>
,
or, use
biStream(users, User::getAccount)
to create
BiStream<User, Account>
.
Then use
BiStream.mapKeys(java.util.function.BiFunction<? super K, ? super V, ? extends K2>)
or
BiStream.mapValues(java.util.function.BiFunction<? super K, ? super V, ? extends V2>)
to apply further mappings.
Use
biStream(User::id, users)
to create
BiStream<UserId, User>
,
or, use
biStream(users, User::getAccount)
to create
BiStream<User, Account>
.
Then use
BiStream.mapKeys(java.util.function.BiFunction<? super K, ? super V, ? extends K2>)
or
BiStream.mapValues(java.util.function.BiFunction<? super K, ? super V, ? extends V2>)
to apply further mappings.