public class Iterables extends Object
| Modifier and Type | Method and Description |
|---|---|
static <T> Iterable<T> |
distinct(Set<? extends T> first,
Iterable<? extends T> second) |
static <T,R> Iterable<R> |
distinct(Set<? extends T> first,
Iterable<? extends T> second,
Function<? super T,? extends R> mapper) |
static <T,R> Iterable<R> |
distinct(Set<? extends T> first,
Iterable<? extends T> second,
Function<? super T,? extends R> mapper,
Predicate<? super R> filter) |
static <T> Iterable<T> |
iterable(Enumeration<? extends T> enumeration) |
static <T,R> Iterable<R> |
iterable(Enumeration<? extends T> enumeration,
Function<? super T,? extends R> mapper) |
static <T,R> Iterable<R> |
iterable(Enumeration<? extends T> enumeration,
Function<? super T,? extends R> mapper,
Predicate<? super R> filter) |
public static <T> Iterable<T> distinct(Set<? extends T> first, Iterable<? extends T> second)
public static <T,R> Iterable<R> distinct(Set<? extends T> first, Iterable<? extends T> second, Function<? super T,? extends R> mapper)
public static <T,R> Iterable<R> distinct(Set<? extends T> first, Iterable<? extends T> second, Function<? super T,? extends R> mapper, Predicate<? super R> filter)
public static <T> Iterable<T> iterable(Enumeration<? extends T> enumeration)
public static <T,R> Iterable<R> iterable(Enumeration<? extends T> enumeration, Function<? super T,? extends R> mapper)
public static <T,R> Iterable<R> iterable(Enumeration<? extends T> enumeration, Function<? super T,? extends R> mapper, Predicate<? super R> filter)
Copyright © 2021. All rights reserved.