All Methods Static Methods Concrete Methods
| Modifier and Type |
Method and Description |
static <T> Collector<T,?,it.unibz.inf.ontop.com.google.common.collect.ImmutableMap<Boolean,it.unibz.inf.ontop.com.google.common.collect.ImmutableList<T>>> |
partitioningBy(Predicate<? super T> predicate) |
static <T,A,D> Collector<T,?,it.unibz.inf.ontop.com.google.common.collect.ImmutableMap<Boolean,D>> |
partitioningBy(Predicate<? super T> predicate,
Collector<T,A,D> innerCollector) |
static <T extends Map.Entry<K,U>,K,U> Collector<T,?,it.unibz.inf.ontop.com.google.common.collect.ImmutableBiMap<K,U>> |
toBiMap() |
static <T,K,U> Collector<T,?,it.unibz.inf.ontop.com.google.common.collect.ImmutableBiMap<K,U>> |
toBiMap(Function<? super T,? extends K> keyMapper,
Function<? super T,? extends U> valueMapper) |
static <T,K,U> Collector<T,?,it.unibz.inf.ontop.com.google.common.collect.ImmutableBiMap<K,U>> |
toBiMap(Function<? super T,? extends K> keyMapper,
Function<? super T,? extends U> valueMapper,
BinaryOperator<U> mergeFunction) |
static <E> it.unibz.inf.ontop.utils.ImmutableCollectors.ImmutableListCollector<E> |
toList() |
static <T extends Map.Entry<K,U>,K,U> Collector<T,?,it.unibz.inf.ontop.com.google.common.collect.ImmutableMap<K,U>> |
toMap() |
static <T,K,U> Collector<T,?,it.unibz.inf.ontop.com.google.common.collect.ImmutableMap<K,U>> |
toMap(Function<? super T,? extends K> keyMapper,
Function<? super T,? extends U> valueMapper) |
static <T,K,U> Collector<T,?,it.unibz.inf.ontop.com.google.common.collect.ImmutableMap<K,U>> |
toMap(Function<? super T,? extends K> keyMapper,
Function<? super T,? extends U> valueMapper,
BinaryOperator<U> mergeFunction) |
static <T extends Map.Entry<K,U>,K,U> Collector<T,?,it.unibz.inf.ontop.com.google.common.collect.ImmutableMultimap<K,U>> |
toMultimap() |
static <T,K,U> Collector<T,?,it.unibz.inf.ontop.com.google.common.collect.ImmutableMultimap<K,U>> |
toMultimap(Function<? super T,? extends K> keyMapper,
Function<? super T,? extends U> valueMapper) |
static <E> it.unibz.inf.ontop.utils.ImmutableCollectors.ImmutableMultisetCollector<E> |
toMultiset() |
static <E> it.unibz.inf.ontop.utils.ImmutableCollectors.ImmutableSetCollector<E> |
toSet() |
static <T extends it.unibz.inf.ontop.com.google.common.collect.Table.Cell<R,C,U>,R,C,U> Collector<T,?,it.unibz.inf.ontop.com.google.common.collect.ImmutableTable<R,C,U>> |
toTable() |