Uses of Interface
org.docx4j.com.google.common.base.Function
| Package | Description |
|---|---|
| org.docx4j.com.google.common.base | |
| org.docx4j.com.google.common.cache | |
| org.docx4j.com.google.common.util.concurrent |
-
Uses of Function in org.docx4j.com.google.common.base
Methods in org.docx4j.com.google.common.base that return Function Modifier and Type Method Description static <T> Function<Supplier<T>,T>Suppliers. 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 Function Modifier and Type Method Description static <F, T> Supplier<T>Suppliers. compose(Function<? super F,T> function, Supplier<F> supplier)Returns a new supplier which is the composition of the provided function and supplier. -
Uses of Function in org.docx4j.com.google.common.cache
Subinterfaces of Function in org.docx4j.com.google.common.cache Modifier and Type Interface Description interfaceLoadingCache<K,V>A semi-persistent mapping from keys to values.Methods in org.docx4j.com.google.common.cache with parameters of type Function Modifier and Type Method Description static <K, V> CacheLoader<K,V>CacheLoader. from(Function<K,V> function)Returns a cache loader that usesfunctionto load keys, without supporting either reloading or bulk loading. -
Uses of Function in org.docx4j.com.google.common.util.concurrent
Methods in org.docx4j.com.google.common.util.concurrent with parameters of type Function Modifier and Type Method Description static <I, O> ListenableFuture<O>Futures. transform(ListenableFuture<I> input, Function<? super I,? extends O> function, java.util.concurrent.Executor executor)Returns a newFuturewhose result is derived from the result of the givenFuture.