Uses of Interface
org.docx4j.com.google.common.base.Function
Packages that use Function
Package
Description
-
Uses of Function in org.docx4j.com.google.common.base
Subinterfaces of Function in org.docx4j.com.google.common.baseClasses in org.docx4j.com.google.common.base that implement FunctionFields in org.docx4j.com.google.common.base declared as FunctionMethods in org.docx4j.com.google.common.base that return FunctionModifier and TypeMethodDescriptionSuppliers.supplierFunction()Returns a function that accepts a supplier and returns the result of invokingSupplier.get()on that supplier.Methods in org.docx4j.com.google.common.base with parameters of type FunctionModifier and TypeMethodDescriptionstatic <F,T> Supplier<T> Returns a new supplier which is the composition of the provided function and supplier.Constructors in org.docx4j.com.google.common.base with parameters of type Function -
Uses of Function in org.docx4j.com.google.common.cache
Subinterfaces of Function in org.docx4j.com.google.common.cacheModifier and TypeInterfaceDescriptioninterfaceLoadingCache<K,V> A semi-persistent mapping from keys to values.Classes in org.docx4j.com.google.common.cache that implement FunctionModifier and TypeClassDescription(package private) static classFields in org.docx4j.com.google.common.cache declared as FunctionMethods in org.docx4j.com.google.common.cache with parameters of type FunctionModifier and TypeMethodDescriptionstatic <K,V> CacheLoader<K, V> Returns a cache loader that usesfunctionto load keys, without supporting either reloading or bulk loading.Constructors in org.docx4j.com.google.common.cache with parameters of type Function -
Uses of Function in org.docx4j.com.google.common.collect
Classes in org.docx4j.com.google.common.collect that implement FunctionMethods in org.docx4j.com.google.common.collect that return FunctionModifier and TypeMethodDescriptionMaps.asEntryToValueFunction(Maps.EntryTransformer<? super K, ? super V1, V2> transformer) Views an entry transformer as a function fromEntryto values.(package private) static <K,V1, V2> Function<V1, V2> Maps.asValueToValueFunction(Maps.EntryTransformer<? super K, V1, V2> transformer, K key) Maps.keyFunction()Maps.valueFunction()Methods in org.docx4j.com.google.common.collect with parameters of type FunctionModifier and TypeMethodDescription(package private) static <K,V1, V2> Maps.EntryTransformer<K, V1, V2> Maps.asEntryTransformer(Function<? super V1, V2> function) Views a function as an entry transformer that ignores the entry key. -
Uses of Function in org.docx4j.com.google.common.util.concurrent
Methods in org.docx4j.com.google.common.util.concurrent with parameters of type FunctionModifier and TypeMethodDescription(package private) static <I,O> ListenableFuture<O> AbstractTransformFuture.create(ListenableFuture<I> input, Function<? super I, ? extends O> function, Executor executor) (package private) @Nullable OAbstractTransformFuture.TransformFuture.doTransform(Function<? super I, ? extends O> function, @Nullable I input) static <I,O> ListenableFuture<O> Futures.transform(ListenableFuture<I> input, Function<? super I, ? extends O> function, Executor executor) Returns a newFuturewhose result is derived from the result of the givenFuture.Constructors in org.docx4j.com.google.common.util.concurrent with parameters of type FunctionModifierConstructorDescription(package private)TransformFuture(ListenableFuture<? extends I> inputFuture, Function<? super I, ? extends O> function)