Uses of Interface
com.strobel.functions.Supplier
-
Packages that use Supplier Package Description com.strobel.core com.strobel.decompiler.ast com.strobel.functions -
-
Uses of Supplier in com.strobel.core
Fields in com.strobel.core declared as Supplier Modifier and Type Field Description private static Supplier
CollectionUtilities. HASH_MAP_SUPPLIER
private static Supplier
CollectionUtilities. IDENTITY_MAP_SUPPLIER
private static Supplier
CollectionUtilities. LINKED_HASH_MAP_SUPPLIER
private static Supplier
CollectionUtilities. LIST_SUPPLIER
private static Supplier
CollectionUtilities. SET_SUPPLIER
static Supplier<MutableInteger>
MutableInteger. SUPPLIER
Methods in com.strobel.core that return Supplier Modifier and Type Method Description static <K,V>
Supplier<java.util.Map<K,V>>CollectionUtilities. hashMapFactory()
static <K,V>
Supplier<java.util.Map<K,V>>CollectionUtilities. identityMapFactory()
static <K,V>
Supplier<java.util.Map<K,V>>CollectionUtilities. linekdHashMapFactory()
static <T> Supplier<java.util.List<T>>
CollectionUtilities. listFactory()
static <T> Supplier<java.util.Set<T>>
CollectionUtilities. setFactory()
-
Uses of Supplier in com.strobel.decompiler.ast
Constructors in com.strobel.decompiler.ast with parameters of type Supplier Constructor Description DefaultMap(Supplier<V> defaultValueFactory)
-
Uses of Supplier in com.strobel.functions
Methods in com.strobel.functions that return Supplier Modifier and Type Method Description static <T> Supplier<T>
Suppliers. forValue(T value)
Methods in com.strobel.functions with parameters of type Supplier Modifier and Type Method Description static <T,R>
Function<T,R>Functions. ofSupplier(Supplier<R> supplier)
-