Uses of Class
jsonvalues.TryPatch
-
-
Uses of TryPatch in jsonvalues
Methods in jsonvalues that return TryPatch Modifier and Type Method Description TryPatch<T>
TryPatch. flatMap(Function<T,TryPatch<T>> fn)
if this TryPatch failed, it returns this instance, whereas if it didn't fail, it returns the TryPatch result of applying the given function to the result of this TryPatch.TryPatch<T>
TryPatch. map(UnaryOperator<T> fn)
if this TryPatch failed, it returns this instance, whereas if it didn't fail, it returns the result of this TryPatch mapped with the given function and wrapped in a TryPatch.TryPatch<T>
Json. patch(JsArray ops)
Implementation of the Json Patch specification.Method parameters in jsonvalues with type arguments of type TryPatch Modifier and Type Method Description TryPatch<T>
TryPatch. flatMap(Function<T,TryPatch<T>> fn)
if this TryPatch failed, it returns this instance, whereas if it didn't fail, it returns the TryPatch result of applying the given function to the result of this TryPatch.
-