public abstract static class Fn.Factory extends Object
| Modifier and Type | Method and Description |
|---|---|
static <T> IntFunction<ArrayDeque<T>> |
ofArrayDeque()
Of array deque.
|
static <K,V> IntFunction<BiMap<K,V>> |
ofBiMap()
Of bi map.
|
static IntFunction<boolean[]> |
ofBooleanArray()
Of boolean array.
|
static IntFunction<byte[]> |
ofByteArray()
Of byte array.
|
static IntFunction<char[]> |
ofCharArray()
Of char array.
|
static <K,V> IntFunction<ConcurrentHashMap<K,V>> |
ofConcurrentHashMap()
Of concurrent hash map.
|
static <T> IntFunction<ConcurrentLinkedQueue<T>> |
ofConcurrentLinkedQueue()
Of concurrent linked queue.
|
static <K,V> IntFunction<ConcurrentMap<K,V>> |
ofConcurrentMap()
Of concurrent map.
|
static <T> IntFunction<Deque<T>> |
ofDeque() |
static IntFunction<double[]> |
ofDoubleArray()
Of double array.
|
static IntFunction<float[]> |
ofFloatArray()
Of float array.
|
static <K,V> IntFunction<IdentityHashMap<K,V>> |
ofIdentityHashMap()
Of identity hash map.
|
static IntFunction<ImmutableList<?>> |
ofImmutableList()
Deprecated.
|
static IntFunction<ImmutableMap<?,?>> |
ofImmutableMap()
Deprecated.
|
static IntFunction<ImmutableSet<?>> |
ofImmutableSet()
Deprecated.
|
static IntFunction<int[]> |
ofIntArray()
Of int array.
|
static <T> IntFunction<LinkedBlockingQueue<T>> |
ofLinkedBlockingQueue()
Of linked blocking queue.
|
static <K,V> IntFunction<Map<K,V>> |
ofLinkedHashMap()
Of linked hash map.
|
static <T> IntFunction<Set<T>> |
ofLinkedHashSet()
Of linked hash set.
|
static <T> IntFunction<LinkedList<T>> |
ofLinkedList()
Of linked list.
|
static <T> IntFunction<List<T>> |
ofList() |
static <K,E> IntFunction<ListMultimap<K,E>> |
ofListMultimap()
Of list multimap.
|
static IntFunction<long[]> |
ofLongArray()
Of long array.
|
static <K,V> IntFunction<Map<K,V>> |
ofMap() |
static <T> IntFunction<Multiset<T>> |
ofMultiset() |
static <K,V> IntFunction<NavigableMap<K,V>> |
ofNavigableMap()
Of navigable map.
|
static <T> IntFunction<NavigableSet<T>> |
ofNavigableSet()
Of navigable set.
|
static IntFunction<Object[]> |
ofObjectArray()
Of object array.
|
static <T> IntFunction<PriorityQueue<T>> |
ofPriorityQueue()
Of priority queue.
|
static <T> IntFunction<Queue<T>> |
ofQueue() |
static <T> IntFunction<Set<T>> |
ofSet() |
static <K,E> IntFunction<SetMultimap<K,E>> |
ofSetMultimap()
Of set multimap.
|
static IntFunction<short[]> |
ofShortArray()
Of short array.
|
static <K,V> IntFunction<SortedMap<K,V>> |
ofSortedMap()
Of sorted map.
|
static <T> IntFunction<SortedSet<T>> |
ofSortedSet()
Of sorted set.
|
static IntFunction<String[]> |
ofStringArray()
Of string array.
|
static <K,V> IntFunction<TreeMap<K,V>> |
ofTreeMap()
Of tree map.
|
static <T> IntFunction<TreeSet<T>> |
ofTreeSet()
Of tree set.
|
static <T,C extends Collection<T>> |
single(IntFunction<? extends C> supplier)
Deprecated.
|
public static IntFunction<boolean[]> ofBooleanArray()
public static IntFunction<char[]> ofCharArray()
public static IntFunction<byte[]> ofByteArray()
public static IntFunction<short[]> ofShortArray()
public static IntFunction<int[]> ofIntArray()
public static IntFunction<long[]> ofLongArray()
public static IntFunction<float[]> ofFloatArray()
public static IntFunction<double[]> ofDoubleArray()
public static IntFunction<String[]> ofStringArray()
public static IntFunction<Object[]> ofObjectArray()
public static <T> IntFunction<List<T>> ofList()
T - public static <T> IntFunction<LinkedList<T>> ofLinkedList()
T - public static <T> IntFunction<Set<T>> ofSet()
T - public static <T> IntFunction<Set<T>> ofLinkedHashSet()
T - public static <T> IntFunction<SortedSet<T>> ofSortedSet()
T - public static <T> IntFunction<NavigableSet<T>> ofNavigableSet()
T - public static <T> IntFunction<TreeSet<T>> ofTreeSet()
T - public static <T> IntFunction<Queue<T>> ofQueue()
T - public static <T> IntFunction<Deque<T>> ofDeque()
T - public static <T> IntFunction<ArrayDeque<T>> ofArrayDeque()
T - public static <T> IntFunction<LinkedBlockingQueue<T>> ofLinkedBlockingQueue()
T - public static <T> IntFunction<ConcurrentLinkedQueue<T>> ofConcurrentLinkedQueue()
T - public static <T> IntFunction<PriorityQueue<T>> ofPriorityQueue()
T - public static <K,V> IntFunction<Map<K,V>> ofMap()
K - the key typeV - the value typepublic static <K,V> IntFunction<Map<K,V>> ofLinkedHashMap()
K - the key typeV - the value typepublic static <K,V> IntFunction<IdentityHashMap<K,V>> ofIdentityHashMap()
K - the key typeV - the value typepublic static <K,V> IntFunction<SortedMap<K,V>> ofSortedMap()
K - the key typeV - the value typepublic static <K,V> IntFunction<NavigableMap<K,V>> ofNavigableMap()
K - the key typeV - the value typepublic static <K,V> IntFunction<TreeMap<K,V>> ofTreeMap()
K - the key typeV - the value typepublic static <K,V> IntFunction<ConcurrentMap<K,V>> ofConcurrentMap()
K - the key typeV - the value typepublic static <K,V> IntFunction<ConcurrentHashMap<K,V>> ofConcurrentHashMap()
K - the key typeV - the value typepublic static <K,V> IntFunction<BiMap<K,V>> ofBiMap()
K - the key typeV - the value typepublic static <T> IntFunction<Multiset<T>> ofMultiset()
T - public static <K,E> IntFunction<ListMultimap<K,E>> ofListMultimap()
K - the key typeE - public static <K,E> IntFunction<SetMultimap<K,E>> ofSetMultimap()
K - the key typeE - @Deprecated public static IntFunction<ImmutableList<?>> ofImmutableList()
UnsupportedOperationException - the unsupported operation exception@Deprecated public static IntFunction<ImmutableSet<?>> ofImmutableSet()
UnsupportedOperationException - the unsupported operation exception@Deprecated public static IntFunction<ImmutableMap<?,?>> ofImmutableMap()
UnsupportedOperationException - the unsupported operation exception@Deprecated public static <T,C extends Collection<T>> IntFunction<? extends C> single(IntFunction<? extends C> supplier)
T - C - supplier - Copyright © 2021. All rights reserved.