Deprecated API
Contents
-
Deprecated ClassesClassDescriptionsince 2.4, no need in Java7 with closeWithResources and multi-catch
-
Deprecated Fields
-
Deprecated MethodsMethodDescriptionsince 4.6 This is being replaced with
Checked.now(Supplier)to make it clear that the supplier is evaluated immediately. If the evaluation needs to be delayed, useChecked.delay(Supplier).since 2.4 use BiFunction insteadsince 2.4, no need in Java7 with closeWithResources and multi-catchsince 2.4, no need in Java7 with closeWithResources and multi-catchextend or implementIterable.forEach(Consumer)insteadsince 3.0 seeEither.ap(Either)useEither.forEach(Consumer)insteadsince 4.3, useEither.getOr(Supplier)insteadsince 3.0since 3.0 see apIn favor ofrightOrfunction provided to make migration easier prefer to use #map where possiblesince 3.0Maybe.getOrElse(Supplier)is being replaced withMaybe.getOr(Supplier). In Java 8 type inference cannot disambiguate between an overloaded method taking a generic A and the same method taking a Supplier<A>.