Uses of Interface
com.adobe.acs.commons.functions.CheckedBiFunction
Packages that use CheckedBiFunction
Package
Description
-
Uses of CheckedBiFunction in com.adobe.acs.commons.fam
Methods in com.adobe.acs.commons.fam with parameters of type CheckedBiFunctionModifier and TypeMethodDescriptionintActionManager.withQueryResults(String queryStatement, String language, CheckedBiConsumer<org.apache.sling.api.resource.ResourceResolver, String> callback, CheckedBiFunction<org.apache.sling.api.resource.ResourceResolver, String, Boolean>... filters) Schedule an activity to occur for every node found by a given query. -
Uses of CheckedBiFunction in com.adobe.acs.commons.fam.actions
Fields in com.adobe.acs.commons.fam.actions declared as CheckedBiFunctionModifier and TypeFieldDescriptionstatic final CheckedBiFunction<org.apache.sling.api.resource.ResourceResolver,String, Boolean> This filter identifies assets where the original rendition is newer than any of the other renditions.static final CheckedBiFunction<org.apache.sling.api.resource.ResourceResolver,String, Boolean> Filters.FILTER_NON_ASSETSDetermine if node is a valid asset, skip any non-assets It's better to filter via query if possible to avoid having to use this return True if assetstatic final CheckedBiFunction<org.apache.sling.api.resource.ResourceResolver,String, Boolean> Filters.FILTER_OUT_SUBASSETSExclude subassets from processingMethods in com.adobe.acs.commons.fam.actions that return CheckedBiFunctionModifier and TypeMethodDescriptionstatic final CheckedBiFunction<org.apache.sling.api.resource.ResourceResolver,String, Boolean> Filters.filterMatching(String glob) Returns true of glob matches provided pathstatic final CheckedBiFunction<org.apache.sling.api.resource.ResourceResolver,String, Boolean> Filters.filterNotMatching(String glob) Returns false if glob matches provided path Useful for things like filterOutSubassetsMethods in com.adobe.acs.commons.fam.actions with parameters of type CheckedBiFunctionModifier and TypeMethodDescriptionstatic final CheckedBiConsumer<org.apache.sling.api.resource.ResourceResolver,String> AssetActions.withAllRenditions(CheckedBiConsumer<org.apache.sling.api.resource.ResourceResolver, String> action, CheckedBiFunction<org.apache.sling.api.resource.ResourceResolver, String, Boolean>... filters) -
Uses of CheckedBiFunction in com.adobe.acs.commons.functions
Methods in com.adobe.acs.commons.functions that return CheckedBiFunctionModifier and TypeMethodDescriptiondefault <V> CheckedBiFunction<T,U, V> CheckedBiFunction.andThen(CheckedFunction<? super R, ? extends V> after) Returns a composed function that first applies this function to its input, and then applies theafterfunction to the result.static <T,U, R> CheckedBiFunction<T, U, R> CheckedBiFunction.from(BiFunction<T, U, R> function)