Lists or Iterables can be filtered easily using guavas filter(Iterable<?> unfiltered, Class<T> type). This operation performs two tasks: the list is filtered and transformed into a sequence of the given type T.
Quite often however I end up with Iterables<Something<?>>
and I want to get a subsequence of Iterables<Something<T>> for some specialized T.
It is clear, that Guava can't solve this problem out of the box due to type erasure: Something<T> does not provide any direct information about its T.
Lets say I have something like S<? extends Number>.
If I am able to define some predicate which tells me if S<?> may be casted to S<Double> I may use it as a filer:
<T extends Number> Predicate<S<?>> isOfType(Class<N> type) {...}
with:
Iterable<S<?>> numbers;
Iterable<S<?>> filtered = Iterable.filter(numbers, isOfType(Double.class));
This performs the task of filtering but it misses the transformation step. If I think my Predicate works well I may even think of casting:
Iterable<S<Double>> doubles = (Iterable<S<Double>>) filtered;
But this exposes some ugly cast operation.
As an alternative I may provide a Function<S<?>, S<Double>> to perform the cast.
In constrast to Class.cast() however it should not throw a ClassCastException but simply return null if the element can not be casted (or transformed).
This way the sequence may be converted without any explicit cast:
<T extends Number> Function<S<?>, S<T>> castOrNull(Class<N> type) {...}
Iterable<S<Double>> doubles = Iterable.filter(numbers, castOrNull(Double.class));
But the list is not really filtered: instead it still contains null objects for each element which could not converted or casted to S<Double>.
But this may solved easily by an additional filtering step like:
Iterable<S<Double>> doubles = Iterables.filter(doubles, Predicates.notNull());
The second solution seems much smarter to me. The Function to be defined may either perform a cast (which hides the unchecked operation) or it may really create some new Object S<T> if necessary.
The remaining question is: Is there any smarter way to perform the necessary converting and filtering by a single step? I may simply define some utility function like:
<I,O> Iterables<O> convert(
Iterables<O> input,
Function<? super I, ? extends O> convert,
Predicate<? super O> filter);
<I,O> Iterables<O> convert(
Iterables<O> input,
Function<? super I, ? extends O> convert);
Where the second function is a short cut of the first one with a Predicates.notNull();
But it's worth to have the first function, too, as the predicate is not necessary Predicates.notNull().
Imagine an Iterable<Iterable<? extends Number>>. The converter function Function<Iterable<? extends Number>, Iterable<Double>> may simply return a filtered sequence which may be empty instead of returning null. The additional filter may finally drop empty sequences using Iterables.isEmpty().
So even if this post contains answers to most of its questions, I decided to post it. May be it is helpful or raises some more interesting discussions about...
Dieter.
Iterable.filter(...)returns an iterable with extended functionality so you can chain filters./* S extends Collection */ Iterable<S<Double>> doubles = Iterable.filter(numbers, castOrNull(Double.class)).filter(Predicates.notNull()).filter(Predicates.notEmpty());– user270349 Sep 5 '11 at 8:01