HomeSort by relevance Sort by last modified time
    Searched refs:Supplier (Results 1 - 3 of 3) sorted by null

  /external/guava/src/com/google/common/base/
Supplier.java 30 public interface Supplier<T> {
Suppliers.java 40 * Returns a new supplier which is the composition of the provided function
41 * and supplier. In other words, the new supplier's value will be computed by
43 * {@code function} to that value. Note that the resulting supplier will not
46 public static <F, T> Supplier<T> compose(
47 Function<? super F, T> function, Supplier<F> first) {
54 implements Supplier<T>, Serializable {
56 final Supplier<? extends F> first;
59 Supplier<? extends F> first) {
70 * Returns a supplier which caches the instance retrieved during the firs
    [all...]
  /external/guava/src/com/google/common/collect/
Multimaps.java 26 import com.google.common.base.Supplier;
93 * @param factory supplier of new, empty collections that will each hold all
98 final Supplier<? extends Collection<V>> factory) {
103 transient Supplier<? extends Collection<V>> factory;
106 Supplier<? extends Collection<V>> factory) {
129 factory = (Supplier<? extends Collection<V>>) stream.readObject();
170 * @param factory supplier of new, empty lists that will each hold all values
175 Map<K, Collection<V>> map, final Supplier<? extends List<V>> factory) {
181 transient Supplier<? extends List<V>> factory;
184 Supplier<? extends List<V>> factory)
    [all...]

Completed in 356 milliseconds