| Package | Description |
|---|---|
| org.docx4j.com.google.common.base | |
| org.docx4j.com.google.common.cache | |
| org.docx4j.com.google.common.util.concurrent |
| Modifier and Type | Method and Description |
|---|---|
static <T> Function<Supplier<T>,T> |
Suppliers.supplierFunction()
Returns a function that accepts a supplier and returns the result of invoking
Supplier.get() on that supplier. |
| Modifier and Type | Method and 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.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
LoadingCache<K,V>
A semi-persistent mapping from keys to values.
|
| Modifier and Type | Method and Description |
|---|---|
static <K,V> CacheLoader<K,V> |
CacheLoader.from(Function<K,V> function)
Returns a cache loader that uses
function to load keys, without supporting either
reloading or bulk loading. |
| Modifier and Type | Method and Description |
|---|---|
static <I,O> ListenableFuture<O> |
Futures.transform(ListenableFuture<I> input,
Function<? super I,? extends O> function,
Executor executor)
Returns a new
Future whose result is derived from the result of the given Future. |
Copyright © 2007-2020. All Rights Reserved.