/*
 * Copyright (c) 2018 Goldman Sachs.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * and Eclipse Distribution License v. 1.0 which accompany this distribution.
 * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
 * and the Eclipse Distribution License is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 */

package org.eclipse.collections.impl.utility;

import java.math.BigDecimal;
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.Comparator;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.RandomAccess;
import java.util.SortedSet;
import java.util.function.BiConsumer;
import java.util.function.Supplier;
import java.util.stream.Collector;
import java.util.stream.Stream;

import org.eclipse.collections.api.InternalIterable;
import org.eclipse.collections.api.RichIterable;
import org.eclipse.collections.api.block.function.Function;
import org.eclipse.collections.api.block.function.Function0;
import org.eclipse.collections.api.block.function.Function2;
import org.eclipse.collections.api.block.function.Function3;
import org.eclipse.collections.api.block.function.primitive.BooleanFunction;
import org.eclipse.collections.api.block.function.primitive.ByteFunction;
import org.eclipse.collections.api.block.function.primitive.CharFunction;
import org.eclipse.collections.api.block.function.primitive.DoubleFunction;
import org.eclipse.collections.api.block.function.primitive.DoubleObjectToDoubleFunction;
import org.eclipse.collections.api.block.function.primitive.FloatFunction;
import org.eclipse.collections.api.block.function.primitive.FloatObjectToFloatFunction;
import org.eclipse.collections.api.block.function.primitive.IntFunction;
import org.eclipse.collections.api.block.function.primitive.IntObjectToIntFunction;
import org.eclipse.collections.api.block.function.primitive.LongFunction;
import org.eclipse.collections.api.block.function.primitive.LongObjectToLongFunction;
import org.eclipse.collections.api.block.function.primitive.ShortFunction;
import org.eclipse.collections.api.block.predicate.Predicate;
import org.eclipse.collections.api.block.predicate.Predicate2;
import org.eclipse.collections.api.block.procedure.Procedure;
import org.eclipse.collections.api.block.procedure.Procedure2;
import org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure;
import org.eclipse.collections.api.collection.MutableCollection;
import org.eclipse.collections.api.collection.primitive.MutableBooleanCollection;
import org.eclipse.collections.api.collection.primitive.MutableByteCollection;
import org.eclipse.collections.api.collection.primitive.MutableCharCollection;
import org.eclipse.collections.api.collection.primitive.MutableDoubleCollection;
import org.eclipse.collections.api.collection.primitive.MutableFloatCollection;
import org.eclipse.collections.api.collection.primitive.MutableIntCollection;
import org.eclipse.collections.api.collection.primitive.MutableLongCollection;
import org.eclipse.collections.api.collection.primitive.MutableShortCollection;
import org.eclipse.collections.api.factory.Lists;
import org.eclipse.collections.api.list.MutableList;
import org.eclipse.collections.api.map.MutableMap;
import org.eclipse.collections.api.map.MutableMapIterable;
import org.eclipse.collections.api.map.primitive.ObjectDoubleMap;
import org.eclipse.collections.api.map.primitive.ObjectLongMap;
import org.eclipse.collections.api.multimap.MutableMultimap;
import org.eclipse.collections.api.multimap.bag.BagMultimap;
import org.eclipse.collections.api.multimap.list.ListMultimap;
import org.eclipse.collections.api.multimap.set.SetMultimap;
import org.eclipse.collections.api.partition.PartitionIterable;
import org.eclipse.collections.api.tuple.Pair;
import org.eclipse.collections.api.tuple.Twin;
import org.eclipse.collections.impl.block.factory.Comparators;
import org.eclipse.collections.impl.block.factory.Functions;
import org.eclipse.collections.impl.block.factory.Predicates;
import org.eclipse.collections.impl.block.factory.Procedures2;
import org.eclipse.collections.impl.block.procedure.MapCollectProcedure;
import org.eclipse.collections.impl.block.procedure.MaxComparatorProcedure;
import org.eclipse.collections.impl.block.procedure.MinComparatorProcedure;
import org.eclipse.collections.impl.block.procedure.MultimapKeyValuePutAllProcedure;
import org.eclipse.collections.impl.block.procedure.MultimapKeyValuePutProcedure;
import org.eclipse.collections.impl.list.mutable.FastList;
import org.eclipse.collections.impl.map.mutable.UnifiedMap;
import org.eclipse.collections.impl.multimap.bag.HashBagMultimap;
import org.eclipse.collections.impl.multimap.list.FastListMultimap;
import org.eclipse.collections.impl.multimap.set.UnifiedSetMultimap;
import org.eclipse.collections.impl.utility.internal.DefaultSpeciesNewStrategy;
import org.eclipse.collections.impl.utility.internal.IterableIterate;
import org.eclipse.collections.impl.utility.internal.RandomAccessListIterate;

The Iterate utility class acts as a router to other utility classes to provide optimized iteration pattern implementations based on the type of iterable. The lowest common denominator used will normally be IterableIterate. Iterate can be used when a JDK interface is the only type available to the developer, as it can determine the best way to iterate based on instanceof checks.
Since:1.0
/** * The Iterate utility class acts as a router to other utility classes to provide optimized iteration pattern * implementations based on the type of iterable. The lowest common denominator used will normally be IterableIterate. * Iterate can be used when a JDK interface is the only type available to the developer, as it can * determine the best way to iterate based on instanceof checks. * * @since 1.0 */
public final class Iterate { private Iterate() { throw new AssertionError("Suppress default constructor for noninstantiability"); }
The procedure is evaluated for each element of the iterable.

Example using a Java 8 lambda expression:

Iterate.forEach(people, person -> LOGGER.info(person.getName());

Example using an anonymous inner class:

Iterate.forEach(people, new Procedure<Person>()
{
    public void value(Person person)
    {
        LOGGER.info(person.getName());
    }
});
/** * The procedure is evaluated for each element of the iterable. * <p> * Example using a Java 8 lambda expression: * <pre> * Iterate.<b>forEach</b>(people, person -&gt; LOGGER.info(person.getName()); * </pre> * <p> * Example using an anonymous inner class: * <pre> * Iterate.<b>forEach</b>(people, new Procedure&lt;Person&gt;() * { * public void value(Person person) * { * LOGGER.info(person.getName()); * } * }); * </pre> */
public static <T> void forEach(Iterable<T> iterable, Procedure<? super T> procedure) { if (iterable instanceof InternalIterable) { ((InternalIterable<T>) iterable).forEach(procedure); } else if (iterable instanceof ArrayList) { ArrayListIterate.forEach((ArrayList<T>) iterable, procedure); } else if (iterable instanceof List) { ListIterate.forEach((List<T>) iterable, procedure); } else if (iterable != null) { iterable.forEach(procedure); } else { throw new IllegalArgumentException("Cannot perform a forEach on null"); } }
The procedure2 is evaluated for each element of the iterable with the specified parameter passed as the second argument.

Example using a Java 8 lambda expression:

Iterate.forEachWith(people, (Person person, Person other) ->
 {
     if (other.equals(person))
     {
         LOGGER.info(person.getName());
     }
 }, fred);
e.g.
Iterate.forEachWith(people, new Procedure2<Person, Person>()
{
    public void value(Person person, Person other)
    {
        if (person.isRelatedTo(other))
        {
             LOGGER.info(person.getName());
        }
    }
}, fred);
/** * The procedure2 is evaluated for each element of the iterable with the specified parameter passed * as the second argument. * <p> * Example using a Java 8 lambda expression: * <pre> * Iterate.<b>forEachWith</b>(people, (Person person, Person other) -&gt; * { * if (other.equals(person)) * { * LOGGER.info(person.getName()); * } * }, fred); * </pre> * * <pre>e.g. * Iterate.<b>forEachWith</b>(people, new Procedure2&lt;Person, Person&gt;() * { * public void value(Person person, Person other) * { * if (person.isRelatedTo(other)) * { * LOGGER.info(person.getName()); * } * } * }, fred); * </pre> */
public static <T, P> void forEachWith( Iterable<T> iterable, Procedure2<? super T, ? super P> procedure, P parameter) { if (iterable instanceof InternalIterable) { ((InternalIterable<T>) iterable).forEachWith(procedure, parameter); } else if (iterable instanceof ArrayList) { ArrayListIterate.forEachWith((ArrayList<T>) iterable, procedure, parameter); } else if (iterable instanceof List) { ListIterate.forEachWith((List<T>) iterable, procedure, parameter); } else if (iterable != null) { IterableIterate.forEachWith(iterable, procedure, parameter); } else { throw new IllegalArgumentException("Cannot perform a forEachWith on null"); } }
Iterates over a collection passing each element and the current relative int index to the specified instance of ObjectIntProcedure.

Example using a Java 8 lambda expression:

Iterate.forEachWithIndex(people, (Person person, int index) -> LOGGER.info("Index: " + index + " person: " + person.getName()));

Example using anonymous inner class:

Iterate.forEachWithIndex(people, new ObjectIntProcedure<Person>()
{
    public void value(Person person, int index)
    {
        LOGGER.info("Index: " + index + " person: " + person.getName());
    }
});
/** * Iterates over a collection passing each element and the current relative int index to the specified instance of * ObjectIntProcedure. * <p> * Example using a Java 8 lambda expression: * <pre> * Iterate.<b>forEachWithIndex</b>(people, (Person person, int index) -&gt; LOGGER.info("Index: " + index + " person: " + person.getName())); * </pre> * <p> * Example using anonymous inner class: * <pre> * Iterate.<b>forEachWithIndex</b>(people, new ObjectIntProcedure&lt;Person&gt;() * { * public void value(Person person, int index) * { * LOGGER.info("Index: " + index + " person: " + person.getName()); * } * }); * </pre> */
public static <T> void forEachWithIndex(Iterable<T> iterable, ObjectIntProcedure<? super T> objectIntProcedure) { if (iterable instanceof InternalIterable) { ((InternalIterable<T>) iterable).forEachWithIndex(objectIntProcedure); } else if (iterable instanceof ArrayList) { ArrayListIterate.forEachWithIndex((ArrayList<T>) iterable, objectIntProcedure); } else if (iterable instanceof List) { ListIterate.forEachWithIndex((List<T>) iterable, objectIntProcedure); } else if (iterable != null) { IterableIterate.forEachWithIndex(iterable, objectIntProcedure); } else { throw new IllegalArgumentException("Cannot perform a forEachWithIndex on null"); } }
Returns a new collection with only the elements that evaluated to true for the specified predicate.

Example using a Java 8 lambda expression:

Collection<Person> selected =
    Iterate.select(people, person -> person.getAddress().getCity().equals("Metuchen"));

Example using an anonymous inner class:

e.g.
Collection<Person> selected =
    Iterate.select(people, new Predicate<Person>()
    {
        public boolean accept(Person person)
        {
            return person.getAddress().getCity().equals("Metuchen");
        }
    });
/** * Returns a new collection with only the elements that evaluated to true for the specified predicate. * <p> * Example using a Java 8 lambda expression: * <pre> * Collection&lt;Person&gt; selected = * Iterate.<b>select</b>(people, person -&gt; person.getAddress().getCity().equals("Metuchen")); * </pre> * <p> * Example using an anonymous inner class: * <pre>e.g. * Collection&lt;Person&gt; selected = * Iterate.<b>select</b>(people, new Predicate&lt;Person&gt;() * { * public boolean accept(Person person) * { * return person.getAddress().getCity().equals("Metuchen"); * } * }); * </pre> */
public static <T> Collection<T> select(Iterable<T> iterable, Predicate<? super T> predicate) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).select(predicate); } if (iterable instanceof ArrayList) { return ArrayListIterate.select((ArrayList<T>) iterable, predicate); } if (iterable instanceof List) { return ListIterate.select((List<T>) iterable, predicate); } if (iterable instanceof Collection) { return IterableIterate.select( iterable, predicate, DefaultSpeciesNewStrategy.INSTANCE.speciesNew((Collection<T>) iterable)); } if (iterable != null) { return IterableIterate.select(iterable, predicate); } throw new IllegalArgumentException("Cannot perform a select on null"); }
Returns a new collection with only elements that evaluated to true for the specified predicate and parameter.

Example using a Java 8 lambda expression:

Collection<Person> selected =
    Iterate.selectWith(people, (Person person, Integer age) -> person.getAge() >= age, Integer.valueOf(18));

Example using an anonymous inner class:

Collection<Person> selected =
     Iterate.selectWith(people, new Predicate2<Person, Integer>()
    {
        public boolean accept(Person person, Integer age)
        {
            return person.getAge() >= age;
        }
    }, Integer.valueOf(18));
/** * Returns a new collection with only elements that evaluated to true for the specified predicate and parameter. * <p> * Example using a Java 8 lambda expression: * <pre> * Collection&lt;Person&gt; selected = * Iterate.<b>selectWith</b>(people, (Person person, Integer age) -&gt; person.getAge() &gt;= age, Integer.valueOf(18)); * </pre> * <p> * Example using an anonymous inner class: * <pre> * Collection&lt;Person&gt; selected = * Iterate.<b>selectWith</b>(people, new Predicate2&lt;Person, Integer&gt;() * { * public boolean accept(Person person, Integer age) * { * return person.getAge() &gt;= age; * } * }, Integer.valueOf(18)); * </pre> */
public static <T, IV> Collection<T> selectWith( Iterable<T> iterable, Predicate2<? super T, ? super IV> predicate, IV parameter) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).selectWith(predicate, parameter); } if (iterable instanceof ArrayList) { return ArrayListIterate.selectWith((ArrayList<T>) iterable, predicate, parameter); } if (iterable instanceof List) { return ListIterate.selectWith((List<T>) iterable, predicate, parameter); } if (iterable instanceof Collection) { return IterableIterate.selectWith( iterable, predicate, parameter, DefaultSpeciesNewStrategy.INSTANCE.speciesNew((Collection<T>) iterable)); } if (iterable != null) { return IterableIterate.selectWith(iterable, predicate, parameter, FastList.newList()); } throw new IllegalArgumentException("Cannot perform a selectWith on null"); }
Filters a collection into two separate collections based on a predicate returned via a Twin.

Example using a Java 8 lambda expression:

Twin<MutableList<Person>>selectedRejected =
     Iterate.selectAndRejectWith(people, (Person person, String lastName) -> lastName.equals(person.getLastName()), "Mason");

Example using an anonymous inner class:

Twin<MutableList<Person>>selectedRejected =
     Iterate.selectAndRejectWith(people, new Predicate2<String, String>()
     {
         public boolean accept(Person person, String lastName)
         {
             return lastName.equals(person.getLastName());
         }
     }, "Mason");
/** * Filters a collection into two separate collections based on a predicate returned via a Twin. * <p> * Example using a Java 8 lambda expression: * <pre> * Twin&lt;MutableList&lt;Person&gt;&gt;selectedRejected = * Iterate.<b>selectAndRejectWith</b>(people, (Person person, String lastName) -&gt; lastName.equals(person.getLastName()), "Mason"); * </pre> * <p> * Example using an anonymous inner class: * <pre> * Twin&lt;MutableList&lt;Person&gt;&gt;selectedRejected = * Iterate.<b>selectAndRejectWith</b>(people, new Predicate2&lt;String, String&gt;() * { * public boolean accept(Person person, String lastName) * { * return lastName.equals(person.getLastName()); * } * }, "Mason"); * </pre> */
public static <T, IV> Twin<MutableList<T>> selectAndRejectWith( Iterable<T> iterable, Predicate2<? super T, ? super IV> predicate, IV injectedValue) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).selectAndRejectWith(predicate, injectedValue); } if (iterable instanceof ArrayList) { return ArrayListIterate.selectAndRejectWith((ArrayList<T>) iterable, predicate, injectedValue); } if (iterable instanceof List) { return ListIterate.selectAndRejectWith((List<T>) iterable, predicate, injectedValue); } if (iterable != null) { return IterableIterate.selectAndRejectWith(iterable, predicate, injectedValue); } throw new IllegalArgumentException("Cannot perform a selectAndRejectWith on null"); }
Filters a collection into a PartitionIterable based on a predicate.

Example using a Java 8 lambda expression:

PartitionIterable<Person> newYorkersAndNonNewYorkers =
     Iterate.partition(people, person -> person.getAddress().getState().getName().equals("New York"));

Example using an anonymous inner class:

PartitionIterable<Person> newYorkersAndNonNewYorkers =
     Iterate.partition(people, new Predicate<Person>()
     {
         public boolean accept(Person person)
         {
             return person.getAddress().getState().getName().equals("New York");
         }
     });
/** * Filters a collection into a PartitionIterable based on a predicate. * <p> * Example using a Java 8 lambda expression: * <pre> * PartitionIterable&lt;Person&gt; newYorkersAndNonNewYorkers = * Iterate.<b>partition</b>(people, person -&gt; person.getAddress().getState().getName().equals("New York")); * </pre> * <p> * Example using an anonymous inner class: * <pre> * PartitionIterable&lt;Person&gt; newYorkersAndNonNewYorkers = * Iterate.<b>partition</b>(people, new Predicate&lt;Person&gt;() * { * public boolean accept(Person person) * { * return person.getAddress().getState().getName().equals("New York"); * } * }); * </pre> */
public static <T> PartitionIterable<T> partition(Iterable<T> iterable, Predicate<? super T> predicate) { if (iterable instanceof RichIterable<?>) { return ((RichIterable<T>) iterable).partition(predicate); } if (iterable instanceof ArrayList) { return ArrayListIterate.partition((ArrayList<T>) iterable, predicate); } if (iterable instanceof List) { return ListIterate.partition((List<T>) iterable, predicate); } if (iterable != null) { return IterableIterate.partition(iterable, predicate); } throw new IllegalArgumentException("Cannot perform a partition on null"); }
Filters a collection into a PartitionIterable based on a predicate.

Example using a Java 8 lambda expression:

PartitionIterable<Person> newYorkersAndNonNewYorkers =
    Iterate.partitionWith(people, (Person person, String state) -> person.getAddress().getState().getName().equals(state), "New York");

Example using an anonymous inner class:

PartitionIterable<Person> newYorkersAndNonNewYorkers =
     Iterate.partitionWith(people, new Predicate<Person, String>()
     {
         public boolean accept(Person person, String state)
         {
             return person.getAddress().getState().getName().equals(state);
         }
     }, "New York");
Since:5.0.
/** * Filters a collection into a PartitionIterable based on a predicate. * <p> * Example using a Java 8 lambda expression: * <pre> * PartitionIterable&lt;Person&gt; newYorkersAndNonNewYorkers = * Iterate.<b>partitionWith</b>(people, (Person person, String state) -&gt; person.getAddress().getState().getName().equals(state), "New York"); * </pre> * <p> * Example using an anonymous inner class: * <pre> * PartitionIterable&lt;Person&gt; newYorkersAndNonNewYorkers = * Iterate.<b>partitionWith</b>(people, new Predicate&lt;Person, String&gt;() * { * public boolean accept(Person person, String state) * { * return person.getAddress().getState().getName().equals(state); * } * }, "New York"); * </pre> * * @since 5.0. */
public static <T, P> PartitionIterable<T> partitionWith(Iterable<T> iterable, Predicate2<? super T, ? super P> predicate, P parameter) { if (iterable instanceof RichIterable<?>) { return ((RichIterable<T>) iterable).partitionWith(predicate, parameter); } if (iterable instanceof ArrayList) { return ArrayListIterate.partitionWith((ArrayList<T>) iterable, predicate, parameter); } if (iterable instanceof List) { return ListIterate.partitionWith((List<T>) iterable, predicate, parameter); } if (iterable != null) { return IterableIterate.partitionWith(iterable, predicate, parameter); } throw new IllegalArgumentException("Cannot perform a partition on null"); }
Returns a new collection with only the elements that are instances of the Class clazz.
/** * Returns a new collection with only the elements that are instances of the Class {@code clazz}. */
public static <T> Collection<T> selectInstancesOf(Iterable<?> iterable, Class<T> clazz) { if (iterable instanceof MutableCollection) { return ((MutableCollection<?>) iterable).selectInstancesOf(clazz); } if (iterable instanceof ArrayList) { return ArrayListIterate.selectInstancesOf((ArrayList<?>) iterable, clazz); } if (iterable instanceof List) { return ListIterate.selectInstancesOf((List<?>) iterable, clazz); } if (iterable instanceof Collection) { return IterableIterate.selectInstancesOf( iterable, clazz, DefaultSpeciesNewStrategy.INSTANCE.speciesNew((Collection<?>) iterable)); } if (iterable != null) { return IterableIterate.selectInstancesOf(iterable, clazz); } throw new IllegalArgumentException("Cannot perform a selectInstancesOf on null"); }
Returns the total number of elements that evaluate to true for the specified predicate.

Example using a Java 8 lambda expression:

int count = Iterate.count(people, person -> person.getAddress().getState().getName().equals("New York"));

Example using anonymous inner class

int count = Iterate.count(people, new Predicate<Person>()
{
    public boolean accept(Person person)
    {
        return person.getAddress().getState().getName().equals("New York");
    }
});
/** * Returns the total number of elements that evaluate to true for the specified predicate. * <p> * Example using a Java 8 lambda expression: * <pre> * int count = Iterate.<b>count</b>(people, person -&gt; person.getAddress().getState().getName().equals("New York")); * </pre> * <p> * Example using anonymous inner class * <pre> * int count = Iterate.<b>count</b>(people, new Predicate&lt;Person&gt;() * { * public boolean accept(Person person) * { * return person.getAddress().getState().getName().equals("New York"); * } * }); * </pre> */
public static <T> int count(Iterable<T> iterable, Predicate<? super T> predicate) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).count(predicate); } if (iterable instanceof ArrayList) { return ArrayListIterate.count((ArrayList<T>) iterable, predicate); } if (iterable instanceof List) { return ListIterate.count((List<T>) iterable, predicate); } if (iterable != null) { return IterableIterate.count(iterable, predicate); } throw new IllegalArgumentException("Cannot get a count from null"); }
Returns the total number of elements that evaluate to true for the specified predicate2 and parameter.
e.g.
return Iterate.countWith(lastNames, Predicates2.equal(), "Smith");
/** * Returns the total number of elements that evaluate to true for the specified predicate2 and parameter. * * <pre>e.g. * return Iterate.<b>countWith</b>(lastNames, Predicates2.equal(), "Smith"); * </pre> */
public static <T, IV> int countWith( Iterable<T> iterable, Predicate2<? super T, ? super IV> predicate, IV injectedValue) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).countWith(predicate, injectedValue); } if (iterable instanceof ArrayList) { return ArrayListIterate.countWith((ArrayList<T>) iterable, predicate, injectedValue); } if (iterable instanceof List) { return ListIterate.countWith((List<T>) iterable, predicate, injectedValue); } if (iterable != null) { return IterableIterate.countWith(iterable, predicate, injectedValue); } throw new IllegalArgumentException("Cannot get a count from null"); }
See Also:
  • collectIf.collectIf(Predicate, Function)
/** * @see RichIterable#collectIf(Predicate, Function) */
public static <T, V> Collection<V> collectIf( Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T, ? extends V> function) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).collectIf(predicate, function); } if (iterable instanceof ArrayList) { return ArrayListIterate.collectIf((ArrayList<T>) iterable, predicate, function); } if (iterable instanceof List) { return ListIterate.collectIf((List<T>) iterable, predicate, function); } if (iterable instanceof Collection) { return IterableIterate.collectIf( iterable, predicate, function, DefaultSpeciesNewStrategy.INSTANCE.speciesNew((Collection<T>) iterable)); } if (iterable != null) { return IterableIterate.collectIf(iterable, predicate, function); } throw new IllegalArgumentException("Cannot perform a collectIf on null"); }
See Also:
  • collectIf.collectIf(Predicate, Function, Collection)
/** * @see RichIterable#collectIf(Predicate, Function, Collection) */
public static <T, V, R extends Collection<V>> R collectIf( Iterable<T> iterable, Predicate<? super T> predicate, Function<? super T, ? extends V> function, R target) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).collectIf(predicate, function, target); } if (iterable instanceof ArrayList) { return ArrayListIterate.collectIf((ArrayList<T>) iterable, predicate, function, target); } if (iterable instanceof List) { return ListIterate.collectIf((List<T>) iterable, predicate, function, target); } if (iterable != null) { return IterableIterate.collectIf(iterable, predicate, function, target); } throw new IllegalArgumentException("Cannot perform a collectIf on null"); }
Same as the select method with two parameters but uses the specified target collection

Example using Java 8 lambda:

MutableList<Person> selected =
     Iterate.select(people, person -> person.person.getLastName().equals("Smith"), FastList.newList());

Example using anonymous inner class:

MutableList<Person> selected =
     Iterate.select(people, new Predicate<Person>()
     {
         public boolean accept(Person person)
         {
        return person.person.getLastName().equals("Smith");
    }
}, FastList.newList());

Example using Predicates factory:

MutableList<Person> selected = Iterate.select(collection, Predicates.attributeEqual("lastName", "Smith"), FastList.newList());
/** * Same as the select method with two parameters but uses the specified target collection * <p> * Example using Java 8 lambda: * <pre> * MutableList&lt;Person&gt; selected = * Iterate.<b>select</b>(people, person -&gt; person.person.getLastName().equals("Smith"), FastList.newList()); * </pre> * <p> * Example using anonymous inner class: * <pre> * MutableList&lt;Person&gt; selected = * Iterate.<b>select</b>(people, new Predicate&lt;Person&gt;() * { * public boolean accept(Person person) * { * return person.person.getLastName().equals("Smith"); * } * }, FastList.newList()); * </pre> * <p> * Example using Predicates factory: * <pre> * MutableList&lt;Person&gt; selected = Iterate.<b>select</b>(collection, Predicates.attributeEqual("lastName", "Smith"), FastList.newList()); * </pre> */
public static <T, R extends Collection<T>> R select( Iterable<T> iterable, Predicate<? super T> predicate, R targetCollection) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).select(predicate, targetCollection); } if (iterable instanceof ArrayList) { return ArrayListIterate.select((ArrayList<T>) iterable, predicate, targetCollection); } if (iterable instanceof List) { return ListIterate.select((List<T>) iterable, predicate, targetCollection); } if (iterable != null) { return IterableIterate.select(iterable, predicate, targetCollection); } throw new IllegalArgumentException("Cannot perform a select on null"); }
Same as the selectWith method with two parameters but uses the specified target collection.
/** * Same as the selectWith method with two parameters but uses the specified target collection. */
public static <T, P, R extends Collection<T>> R selectWith( Iterable<T> iterable, Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).selectWith(predicate, parameter, targetCollection); } if (iterable instanceof ArrayList) { return ArrayListIterate.selectWith((ArrayList<T>) iterable, predicate, parameter, targetCollection); } if (iterable instanceof List) { return ListIterate.selectWith((List<T>) iterable, predicate, parameter, targetCollection); } if (iterable != null) { return IterableIterate.selectWith(iterable, predicate, parameter, targetCollection); } throw new IllegalArgumentException("Cannot perform a selectWith on null"); }
Returns the first count elements of the iterable or all the elements in the iterable if count is greater than the length of the iterable.
Params:
  • iterable – the collection to take from.
  • count – the number of items to take.
Throws:
Returns:a new list with the items take from the given collection.
/** * Returns the first {@code count} elements of the iterable * or all the elements in the iterable if {@code count} is greater than the length of * the iterable. * * @param iterable the collection to take from. * @param count the number of items to take. * @return a new list with the items take from the given collection. * @throws IllegalArgumentException if {@code count} is less than zero */
public static <T> Collection<T> take(Iterable<T> iterable, int count) { if (iterable instanceof ArrayList) { return ArrayListIterate.take((ArrayList<T>) iterable, count); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.take((List<T>) iterable, count); } if (iterable instanceof Collection) { return IterableIterate.take( iterable, count, DefaultSpeciesNewStrategy.INSTANCE.speciesNew((Collection<T>) iterable, count)); } if (iterable != null) { return IterableIterate.take(iterable, count); } throw new IllegalArgumentException("Cannot perform a take on null"); }
Returns a collection without the first count elements of the iterable or an empty iterable if the count is greater than the length of the iterable.
Params:
  • iterable – the collection to drop from.
  • count – the number of items to drop.
Throws:
Returns:a new list with the items dropped from the given collection.
/** * Returns a collection without the first {@code count} elements of the iterable * or an empty iterable if the {@code count} is greater than the length of the iterable. * * @param iterable the collection to drop from. * @param count the number of items to drop. * @return a new list with the items dropped from the given collection. * @throws IllegalArgumentException if {@code count} is less than zero */
public static <T> Collection<T> drop(Iterable<T> iterable, int count) { if (iterable instanceof ArrayList) { return ArrayListIterate.drop((ArrayList<T>) iterable, count); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.drop((List<T>) iterable, count); } if (iterable instanceof Collection) { return IterableIterate.drop( iterable, count, DefaultSpeciesNewStrategy.INSTANCE.speciesNew((Collection<T>) iterable, count)); } if (iterable != null) { return IterableIterate.drop(iterable, count); } throw new IllegalArgumentException("Cannot perform a drop on null"); }
Returns all elements of the iterable that evaluate to false for the specified predicate.

Example using Java 8 lambda:

Collection<Person> rejected =
     Iterate.reject(people, person -> person.person.getLastName().equals("Smith"));

Example using anonymous inner class:

Collection<Person> rejected =
     Iterate.reject(people,
         new Predicate<Person>()
         {
             public boolean accept(Person person)
             {
                 return person.person.getLastName().equals("Smith");
             }
         });

Example using Predicates factory:

Collection<Person> rejected =
     Iterate.reject(people, Predicates.attributeEqual("lastName", "Smith"));
/** * Returns all elements of the iterable that evaluate to false for the specified predicate. * <p> * Example using Java 8 lambda: * <pre> * Collection&lt;Person&gt; rejected = * Iterate.<b>reject</b>(people, person -&gt; person.person.getLastName().equals("Smith")); * </pre> * <p> * Example using anonymous inner class: * <pre> * Collection&lt;Person&gt; rejected = * Iterate.<b>reject</b>(people, * new Predicate&lt;Person&gt;() * { * public boolean accept(Person person) * { * return person.person.getLastName().equals("Smith"); * } * }); * </pre> * <p> * Example using Predicates factory: * <pre> * Collection&lt;Person&gt; rejected = * Iterate.<b>reject</b>(people, Predicates.attributeEqual("lastName", "Smith")); * </pre> */
public static <T> Collection<T> reject(Iterable<T> iterable, Predicate<? super T> predicate) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).reject(predicate); } if (iterable instanceof ArrayList) { return ArrayListIterate.reject((ArrayList<T>) iterable, predicate); } if (iterable instanceof List) { return ListIterate.reject((List<T>) iterable, predicate); } if (iterable instanceof Collection) { return IterableIterate.reject( iterable, predicate, DefaultSpeciesNewStrategy.INSTANCE.speciesNew((Collection<T>) iterable)); } if (iterable != null) { return IterableIterate.reject(iterable, predicate); } throw new IllegalArgumentException("Cannot perform a reject on null"); }
SortThis is a mutating method. The List passed in is also returned.
/** * SortThis is a mutating method. The List passed in is also returned. */
public static <T extends Comparable<? super T>, L extends List<T>> L sortThis(L list) { if (list instanceof MutableList<?>) { ((MutableList<T>) list).sortThis(); } else if (list instanceof ArrayList) { ArrayListIterate.sortThis((ArrayList<T>) list); } else { if (list.size() > 1) { Collections.sort(list); } } return list; }
SortThis is a mutating method. The List passed in is also returned.
/** * SortThis is a mutating method. The List passed in is also returned. */
public static <T, L extends List<T>> L sortThis(L list, Comparator<? super T> comparator) { if (list instanceof MutableList) { ((MutableList<T>) list).sortThis(comparator); } else if (list instanceof ArrayList) { ArrayListIterate.sortThis((ArrayList<T>) list, comparator); } else { if (list.size() > 1) { Collections.sort(list, comparator); } } return list; }
SortThis is a mutating method. The List passed in is also returned.
/** * SortThis is a mutating method. The List passed in is also returned. */
public static <T, L extends List<T>> L sortThis(L list, Predicate2<? super T, ? super T> predicate) { return Iterate.sortThis(list, (Comparator<T>) (o1, o2) -> { if (predicate.accept(o1, o2)) { return -1; } if (predicate.accept(o2, o1)) { return 1; } return 0; }); }
Sort the list by comparing an attribute defined by the function. SortThisBy is a mutating method. The List passed in is also returned.
/** * Sort the list by comparing an attribute defined by the function. * SortThisBy is a mutating method. The List passed in is also returned. */
public static <T, V extends Comparable<? super V>, L extends List<T>> L sortThisBy(L list, Function<? super T, ? extends V> function) { return Iterate.sortThis(list, Comparators.byFunction(function)); }
Removes all elements from the iterable that evaluate to true for the specified predicate.
/** * Removes all elements from the iterable that evaluate to true for the specified predicate. */
public static <T> boolean removeIf(Iterable<T> iterable, Predicate<? super T> predicate) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).removeIf(predicate); } if (iterable instanceof ArrayList) { return ArrayListIterate.removeIf((ArrayList<T>) iterable, predicate); } if (iterable instanceof List) { return ListIterate.removeIf((List<T>) iterable, predicate); } if (iterable != null) { return IterableIterate.removeIf(iterable, predicate); } throw new IllegalArgumentException("Cannot perform a remove on null"); }
Removes all elements of the iterable that evaluate to true for the specified predicate2 and parameter.
/** * Removes all elements of the iterable that evaluate to true for the specified predicate2 and parameter. */
public static <T, P> boolean removeIfWith( Iterable<T> iterable, Predicate2<? super T, ? super P> predicate, P parameter) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).removeIfWith(predicate, parameter); } if (iterable instanceof ArrayList) { return ArrayListIterate.removeIfWith((ArrayList<T>) iterable, predicate, parameter); } if (iterable instanceof List) { return ListIterate.removeIfWith((List<T>) iterable, predicate, parameter); } if (iterable != null) { return IterableIterate.removeIfWith(iterable, predicate, parameter); } throw new IllegalArgumentException("Cannot perform a remove on null"); }
Similar to reject(Iterable<Object>, Predicate<? super Object>), except with an evaluation parameter for the second generic argument in Predicate2.

Example using a Java 8 lambda expression:

Collection<Person> rejected =
    Iterate.rejectWith(people, (Person person, Integer age) -> person.getAge() >= age, Integer.valueOf(18));

Example using an anonymous inner class:

Collection<Person> rejected =
     Iterate.rejectWith(people, new Predicate2<Person, Integer>()
    {
        public boolean accept(Person person, Integer age)
        {
            return person.getAge() >= age;
        }
    }, Integer.valueOf(18));
/** * Similar to {@link #reject(Iterable, Predicate)}, except with an evaluation parameter for the second generic argument in {@link Predicate2}. * <p> * Example using a Java 8 lambda expression: * <pre> * Collection&lt;Person&gt; rejected = * Iterate.<b>rejectWith</b>(people, (Person person, Integer age) -&gt; person.getAge() &gt;= age, Integer.valueOf(18)); * </pre> * <p> * Example using an anonymous inner class: * <pre> * Collection&lt;Person&gt; rejected = * Iterate.<b>rejectWith</b>(people, new Predicate2&lt;Person, Integer&gt;() * { * public boolean accept(Person person, Integer age) * { * return person.getAge() &gt;= age; * } * }, Integer.valueOf(18)); * </pre> */
public static <T, P> Collection<T> rejectWith( Iterable<T> iterable, Predicate2<? super T, ? super P> predicate, P parameter) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).rejectWith(predicate, parameter); } if (iterable instanceof ArrayList) { return ArrayListIterate.rejectWith((ArrayList<T>) iterable, predicate, parameter); } if (iterable instanceof List) { return ListIterate.rejectWith((List<T>) iterable, predicate, parameter); } if (iterable instanceof Collection) { return IterableIterate.rejectWith( iterable, predicate, parameter, DefaultSpeciesNewStrategy.INSTANCE.speciesNew((Collection<T>) iterable)); } if (iterable != null) { return IterableIterate.rejectWith(iterable, predicate, parameter, FastList.newList()); } throw new IllegalArgumentException("Cannot perform a rejectWith on null"); }
Same as the reject method with one parameter but uses the specified target collection for the results.

Example using Java 8 lambda:

MutableList<Person> rejected =
     Iterate.reject(people, person -> person.person.getLastName().equals("Smith"), FastList.newList());

Example using anonymous inner class:

MutableList<Person> rejected =
     Iterate.reject(
         people,
         new Predicate<Person>()
         {
             public boolean accept(Person person)
             {
                 return person.person.getLastName().equals("Smith");
             }
         },
         FastList.newList());

Example using Predicates factory:

MutableList<Person> rejected =
     Iterate.reject(people, Predicates.attributeEqual("lastName", "Smith"), FastList.newList());
/** * Same as the reject method with one parameter but uses the specified target collection for the results. * <p> * Example using Java 8 lambda: * <pre> * MutableList&lt;Person&gt; rejected = * Iterate.<b>reject</b>(people, person -&gt; person.person.getLastName().equals("Smith"), FastList.newList()); * </pre> * <p> * Example using anonymous inner class: * <pre> * MutableList&lt;Person&gt; rejected = * Iterate.<b>reject</b>( * people, * new Predicate&lt;Person&gt;() * { * public boolean accept(Person person) * { * return person.person.getLastName().equals("Smith"); * } * }, * FastList.newList()); * </pre> * <p> * Example using Predicates factory: * <pre> * MutableList&lt;Person&gt; rejected = * Iterate.<b>reject</b>(people, Predicates.attributeEqual("lastName", "Smith"), FastList.newList()); * </pre> */
public static <T, R extends Collection<T>> R reject( Iterable<T> iterable, Predicate<? super T> predicate, R targetCollection) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).reject(predicate, targetCollection); } if (iterable instanceof ArrayList) { return ArrayListIterate.reject((ArrayList<T>) iterable, predicate, targetCollection); } if (iterable instanceof List) { return ListIterate.reject((List<T>) iterable, predicate, targetCollection); } if (iterable != null) { return IterableIterate.reject(iterable, predicate, targetCollection); } throw new IllegalArgumentException("Cannot perform a reject on null"); }
Same as the reject method with two parameters but uses the specified target collection.
/** * Same as the reject method with two parameters but uses the specified target collection. */
public static <T, P, R extends Collection<T>> R rejectWith( Iterable<T> iterable, Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).rejectWith(predicate, parameter, targetCollection); } if (iterable instanceof ArrayList) { return ArrayListIterate.rejectWith( (ArrayList<T>) iterable, predicate, parameter, targetCollection); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.rejectWith((List<T>) iterable, predicate, parameter, targetCollection); } if (iterable != null) { return IterableIterate.rejectWith(iterable, predicate, parameter, targetCollection); } throw new IllegalArgumentException("Cannot perform a rejectWith on null"); }
Add all elements from the source Iterable to the target collection, return the target collection.
/** * Add all elements from the source Iterable to the target collection, return the target collection. */
public static <T, R extends Collection<T>> R addAllTo(Iterable<? extends T> iterable, R targetCollection) { Iterate.addAllIterable(iterable, targetCollection); return targetCollection; }
Add all elements from the source Iterable to the target collection, returns true if any element was added.
/** * Add all elements from the source Iterable to the target collection, returns true if any element was added. */
public static <T> boolean addAllIterable(Iterable<? extends T> iterable, Collection<T> targetCollection) { if (iterable == null) { throw new NullPointerException(); } if (iterable instanceof Collection<?>) { return targetCollection.addAll((Collection<T>) iterable); } int oldSize = targetCollection.size(); Iterate.forEachWith(iterable, Procedures2.addToCollection(), targetCollection); return targetCollection.size() != oldSize; }
Remove all elements present in Iterable from the target collection, return the target collection.
/** * Remove all elements present in Iterable from the target collection, return the target collection. */
public static <T, R extends Collection<T>> R removeAllFrom(Iterable<? extends T> iterable, R targetCollection) { Iterate.removeAllIterable(iterable, targetCollection); return targetCollection; }
Remove all elements present in Iterable from the target collection, returns true if any element was removed.
/** * Remove all elements present in Iterable from the target collection, returns true if any element was removed. */
public static <T> boolean removeAllIterable(Iterable<? extends T> iterable, Collection<T> targetCollection) { if (iterable == null) { throw new NullPointerException(); } if (iterable instanceof Collection<?>) { return targetCollection.removeAll((Collection<T>) iterable); } int oldSize = targetCollection.size(); Iterate.forEachWith(iterable, Procedures2.removeFromCollection(), targetCollection); return targetCollection.size() != oldSize; }
Returns a new collection with the results of applying the specified function for each element of the iterable.

Example using a Java 8 lambda expression:

Collection<String> names =
     Iterate.collect(people, person -> person.getFirstName() + " " + person.getLastName());

Example using an anonymous inner class:

Collection<String> names =
     Iterate.collect(
         people,
         new Function<Person, String>()
         {
             public String valueOf(Person person)
             {
                 return person.getFirstName() + " " + person.getLastName();
             }
         });
/** * Returns a new collection with the results of applying the specified function for each element of the iterable. * <p> * Example using a Java 8 lambda expression: * <pre> * Collection&lt;String&gt; names = * Iterate.<b>collect</b>(people, person -&gt; person.getFirstName() + " " + person.getLastName()); * </pre> * <p> * Example using an anonymous inner class: * <pre> * Collection&lt;String&gt; names = * Iterate.<b>collect</b>( * people, * new Function&lt;Person, String&gt;() * { * public String valueOf(Person person) * { * return person.getFirstName() + " " + person.getLastName(); * } * }); * </pre> */
public static <T, V> Collection<V> collect( Iterable<T> iterable, Function<? super T, ? extends V> function) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).collect(function); } if (iterable instanceof ArrayList) { return ArrayListIterate.collect((ArrayList<T>) iterable, function); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.collect((List<T>) iterable, function); } if (iterable instanceof Collection) { return IterableIterate.collect( iterable, function, DefaultSpeciesNewStrategy.INSTANCE.speciesNew( (Collection<T>) iterable, ((Collection<T>) iterable).size())); } if (iterable != null) { return IterableIterate.collect(iterable, function); } throw new IllegalArgumentException("Cannot perform a collect on null"); }
Same as the collect(Iterable<Object>, Function<? super Object,? extends Object>) method with two parameters, except that the results are gathered into the specified targetCollection

Example using a Java 8 lambda expression:

MutableList<String> names =
     Iterate.collect(people, person -> person.getFirstName() + " " + person.getLastName(), FastList.newList());

Example using an anonymous inner class:

MutableList<String> names =
     Iterate.collect(
         people,
         new Function<Person, String>()
         {
             public String valueOf(Person person)
             {
                 return person.getFirstName() + " " + person.getLastName();
             }
         },
         FastList.newList());
/** * Same as the {@link #collect(Iterable, Function)} method with two parameters, except that the results are gathered into the specified * targetCollection * <p> * Example using a Java 8 lambda expression: * <pre> * MutableList&lt;String&gt; names = * Iterate.<b>collect</b>(people, person -&gt; person.getFirstName() + " " + person.getLastName(), FastList.newList()); * </pre> * <p> * Example using an anonymous inner class: * <pre> * MutableList&lt;String&gt; names = * Iterate.<b>collect</b>( * people, * new Function&lt;Person, String&gt;() * { * public String valueOf(Person person) * { * return person.getFirstName() + " " + person.getLastName(); * } * }, * FastList.newList()); * </pre> */
public static <T, A, R extends Collection<A>> R collect( Iterable<T> iterable, Function<? super T, ? extends A> function, R targetCollection) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).collect(function, targetCollection); } if (iterable instanceof ArrayList) { return ArrayListIterate.collect((ArrayList<T>) iterable, function, targetCollection); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.collect((List<T>) iterable, function, targetCollection); } if (iterable != null) { return IterableIterate.collect(iterable, function, targetCollection); } throw new IllegalArgumentException("Cannot perform a collect on null"); }
Returns a new primitive boolean collection with the results of applying the specified booleanFunction for each element of the iterable.

Example using Java 8 lambda:

MutableBooleanCollection voters =
     Iterable.collectBoolean(people, person -> person.canVote());

Example using anonymous inner class:

MutableBooleanCollection voters =
     Iterate.collectBoolean(
         people,
         new BooleanFunction<Person>()
         {
             public boolean booleanValueOf(Person person)
             {
                 return person.canVote();
             }
         });
/** * Returns a new primitive {@code boolean} collection with the results of applying the specified booleanFunction for each element of the iterable. * <p> * Example using Java 8 lambda: * <pre> * MutableBooleanCollection voters = * Iterable.<b>collectBoolean</b>(people, person -&gt; person.canVote()); * </pre> * <p> * Example using anonymous inner class: * <pre> * MutableBooleanCollection voters = * Iterate.<b>collectBoolean</b>( * people, * new BooleanFunction&lt;Person&gt;() * { * public boolean booleanValueOf(Person person) * { * return person.canVote(); * } * }); * </pre> */
public static <T> MutableBooleanCollection collectBoolean( Iterable<T> iterable, BooleanFunction<? super T> booleanFunction) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).collectBoolean(booleanFunction); } if (iterable instanceof ArrayList) { return ArrayListIterate.collectBoolean((ArrayList<T>) iterable, booleanFunction); } if (iterable instanceof List) { return ListIterate.collectBoolean((List<T>) iterable, booleanFunction); } if (iterable != null) { return IterableIterate.collectBoolean(iterable, booleanFunction); } throw new IllegalArgumentException("Cannot perform a collectBoolean on null"); }
Same as collectBoolean(Iterable<Object>, BooleanFunction<? super Object>), except that the results are gathered into the specified target collection.

Example using Java 8 lambda:

BooleanArrayList voters =
     Iterable.collectBoolean(people, person -> person.canVote(), new BooleanArrayList());

Example using an anonymous inner class:

BooleanArrayList voters =
     Iterate.collectBoolean(
         people,
         new BooleanFunction<Person>()
         {
             public boolean booleanValueOf(Person person)
             {
                 return person.canVote();
             }
         },
         new BooleanArrayList());
/** * Same as {@link #collectBoolean(Iterable, BooleanFunction)}, except that the results are gathered into the specified {@code target} * collection. * <p> * Example using Java 8 lambda: * <pre> * BooleanArrayList voters = * Iterable.<b>collectBoolean</b>(people, person -&gt; person.canVote(), new BooleanArrayList()); * </pre> * <p> * Example using an anonymous inner class: * <pre> * BooleanArrayList voters = * Iterate.<b>collectBoolean</b>( * people, * new BooleanFunction&lt;Person&gt;() * { * public boolean booleanValueOf(Person person) * { * return person.canVote(); * } * }, * new BooleanArrayList()); * </pre> */
public static <T, R extends MutableBooleanCollection> R collectBoolean( Iterable<T> iterable, BooleanFunction<? super T> booleanFunction, R target) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).collectBoolean(booleanFunction, target); } if (iterable instanceof ArrayList) { return ArrayListIterate.collectBoolean((ArrayList<T>) iterable, booleanFunction, target); } if (iterable instanceof List) { return ListIterate.collectBoolean((List<T>) iterable, booleanFunction, target); } if (iterable != null) { return IterableIterate.collectBoolean(iterable, booleanFunction, target); } throw new IllegalArgumentException("Cannot perform a collectBoolean on null"); }
Returns a new byte collection with the results of applying the specified byteFunction for each element of the iterable.

Example using Java 8 lambda:

MutableByteCollection bytes =
     Iterate.collectByte(people, person -> person.getCode());

Example using anonymous inner class:

MutableByteCollection bytes =
     Iterate.collectByte(
         people,
         new ByteFunction<Person>()
         {
             public byte byteValueOf(Person person)
             {
                 return person.getCode();
             }
         });
/** * Returns a new {@code byte} collection with the results of applying the specified byteFunction for each element of the iterable. * <p> * Example using Java 8 lambda: * <pre> * MutableByteCollection bytes = * Iterate.<b>collectByte</b>(people, person -&gt; person.getCode()); * </pre> * <p> * Example using anonymous inner class: * <pre> * MutableByteCollection bytes = * Iterate.<b>collectByte</b>( * people, * new ByteFunction&lt;Person&gt;() * { * public byte byteValueOf(Person person) * { * return person.getCode(); * } * }); * </pre> */
public static <T> MutableByteCollection collectByte( Iterable<T> iterable, ByteFunction<? super T> byteFunction) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).collectByte(byteFunction); } if (iterable instanceof ArrayList) { return ArrayListIterate.collectByte((ArrayList<T>) iterable, byteFunction); } if (iterable instanceof List) { return ListIterate.collectByte((List<T>) iterable, byteFunction); } if (iterable != null) { return IterableIterate.collectByte(iterable, byteFunction); } throw new IllegalArgumentException("Cannot perform a collectByte on null"); }
Same as collectByte(Iterable<Object>, ByteFunction<? super Object>), except that the results are gathered into the specified target collection.

Example using a Java 8 lambda expression:

ByteArrayList bytes =
     Iterate.collectByte(people, person -> person.getCode(), new ByteArrayList());

Example using an anonymous inner class:

ByteArrayList bytes =
     Iterate.collectByte(
         people,
         new ByteFunction<Person>()
         {
             public byte byteValueOf(Person person)
             {
                 return person.getCode();
             }
         },
         new ByteArrayList());
/** * Same as {@link #collectByte(Iterable, ByteFunction)}, except that the results are gathered into the specified {@code target} * collection. * <p> * Example using a Java 8 lambda expression: * <pre> * ByteArrayList bytes = * Iterate.<b>collectByte</b>(people, person -&gt; person.getCode(), new ByteArrayList()); * </pre> * <p> * Example using an anonymous inner class: * <pre> * ByteArrayList bytes = * Iterate.<b>collectByte</b>( * people, * new ByteFunction&lt;Person&gt;() * { * public byte byteValueOf(Person person) * { * return person.getCode(); * } * }, * new ByteArrayList()); * </pre> */
public static <T, R extends MutableByteCollection> R collectByte( Iterable<T> iterable, ByteFunction<? super T> byteFunction, R target) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).collectByte(byteFunction, target); } if (iterable instanceof ArrayList) { return ArrayListIterate.collectByte((ArrayList<T>) iterable, byteFunction, target); } if (iterable instanceof List) { return ListIterate.collectByte((List<T>) iterable, byteFunction, target); } if (iterable != null) { return IterableIterate.collectByte(iterable, byteFunction, target); } throw new IllegalArgumentException("Cannot perform a collectByte on null"); }
Returns a new char collection with the results of applying the specified charFunction for each element of the iterable.

Example using Java 8 lambda:

MutableCharCollection chars =
     Iterate.collectChar(people, person -> person.getMiddleInitial());

Example using anonymous inner class:

MutableCharCollection chars =
     Iterate.collectChar(
         people,
         new CharFunction<Person>()
         {
             public char charValueOf(Person person)
             {
                 return person.getMiddleInitial();
             }
         });
/** * Returns a new {@code char} collection with the results of applying the specified charFunction for each element of the iterable. * <p> * Example using Java 8 lambda: * <pre> * MutableCharCollection chars = * Iterate.<b>collectChar</b>(people, person -&gt; person.getMiddleInitial()); * </pre> * <p> * Example using anonymous inner class: * <pre> * MutableCharCollection chars = * Iterate.<b>collectChar</b>( * people, * new CharFunction&lt;Person&gt;() * { * public char charValueOf(Person person) * { * return person.getMiddleInitial(); * } * }); * </pre> */
public static <T> MutableCharCollection collectChar( Iterable<T> iterable, CharFunction<? super T> charFunction) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).collectChar(charFunction); } if (iterable instanceof ArrayList) { return ArrayListIterate.collectChar((ArrayList<T>) iterable, charFunction); } if (iterable instanceof List) { return ListIterate.collectChar((List<T>) iterable, charFunction); } if (iterable != null) { return IterableIterate.collectChar(iterable, charFunction); } throw new IllegalArgumentException("Cannot perform a collectChar on null"); }
Same as collectChar(Iterable<Object>, CharFunction<? super Object>), except that the results are gathered into the specified target collection.
CharArrayList chars =
     Iterate.collectChar(people, person -> person.getMiddleInitial());

Example using anonymous inner class:

CharArrayList chars =
     Iterate.collectChar(
         people,
         new CharFunction<Person>()
         {
             public char charValueOf(Person person)
             {
                 return person.getMiddleInitial();
             }
         },
         new CharArrayList());
/** * Same as {@link #collectChar(Iterable, CharFunction)}, except that the results are gathered into the specified {@code target} * collection. * * <pre> * CharArrayList chars = * Iterate.<b>collectChar</b>(people, person -&gt; person.getMiddleInitial()); * </pre> * <p> * Example using anonymous inner class: * <pre> * CharArrayList chars = * Iterate.<b>collectChar</b>( * people, * new CharFunction&lt;Person&gt;() * { * public char charValueOf(Person person) * { * return person.getMiddleInitial(); * } * }, * new CharArrayList()); * </pre> */
public static <T, R extends MutableCharCollection> R collectChar( Iterable<T> iterable, CharFunction<? super T> charFunction, R target) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).collectChar(charFunction, target); } if (iterable instanceof ArrayList) { return ArrayListIterate.collectChar((ArrayList<T>) iterable, charFunction, target); } if (iterable instanceof List) { return ListIterate.collectChar((List<T>) iterable, charFunction, target); } if (iterable != null) { return IterableIterate.collectChar(iterable, charFunction, target); } throw new IllegalArgumentException("Cannot perform a collectChar on null"); }
Returns a new double collection with the results of applying the specified doubleFunction for each element of the iterable.

Example using a Java 8 lambda expression:

MutableDoubleCollection doubles =
     Iterate.collectDouble(people, person -> person.getMilesFromNorthPole());
Example using an anonymous inner class:
MutableDoubleCollection doubles =
     Iterate.collectDouble(people,
         new DoubleFunction<Person>()
         {
             public double doubleValueOf(Person person)
             {
                 return person.getMilesFromNorthPole();
             }
         });
/** * Returns a new {@code double} collection with the results of applying the specified doubleFunction for each element of the iterable. * <p> * Example using a Java 8 lambda expression: * <pre> * MutableDoubleCollection doubles = * Iterate.<b>collectDouble</b>(people, person -&gt; person.getMilesFromNorthPole()); * </pre> * Example using an anonymous inner class: * <pre> * MutableDoubleCollection doubles = * Iterate.<b>collectDouble</b>(people, * new DoubleFunction&lt;Person&gt;() * { * public double doubleValueOf(Person person) * { * return person.getMilesFromNorthPole(); * } * }); * </pre> */
public static <T> MutableDoubleCollection collectDouble( Iterable<T> iterable, DoubleFunction<? super T> doubleFunction) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).collectDouble(doubleFunction); } if (iterable instanceof ArrayList) { return ArrayListIterate.collectDouble((ArrayList<T>) iterable, doubleFunction); } if (iterable instanceof List) { return ListIterate.collectDouble((List<T>) iterable, doubleFunction); } if (iterable != null) { return IterableIterate.collectDouble(iterable, doubleFunction); } throw new IllegalArgumentException("Cannot perform a collectDouble on null"); }
Same as collectDouble(Iterable<Object>, DoubleFunction<? super Object>), except that the results are gathered into the specified target collection.

Example using a Java 8 lambda expression:

DoubleArrayList doubles =
     Iterate.collectDouble(people, person -> person.getMilesFromNorthPole());

Example using an anonymous inner class:

DoubleArrayList doubles =
     Iterate.collectDouble(people,
         new DoubleFunction<Person>()
         {
             public double doubleValueOf(Person person)
             {
                 return person.getMilesFromNorthPole();
             }
         }, new DoubleArrayList());
/** * Same as {@link #collectDouble(Iterable, DoubleFunction)}, except that the results are gathered into the specified {@code target} * collection. * <p> * Example using a Java 8 lambda expression: * <pre> * DoubleArrayList doubles = * Iterate.<b>collectDouble</b>(people, person -&gt; person.getMilesFromNorthPole()); * </pre> * <p> * Example using an anonymous inner class: * <pre> * DoubleArrayList doubles = * Iterate.<b>collectDouble</b>(people, * new DoubleFunction&lt;Person&gt;() * { * public double doubleValueOf(Person person) * { * return person.getMilesFromNorthPole(); * } * }, new DoubleArrayList()); * </pre> */
public static <T, R extends MutableDoubleCollection> R collectDouble( Iterable<T> iterable, DoubleFunction<? super T> doubleFunction, R target) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).collectDouble(doubleFunction, target); } if (iterable instanceof ArrayList) { return ArrayListIterate.collectDouble((ArrayList<T>) iterable, doubleFunction, target); } if (iterable instanceof List) { return ListIterate.collectDouble((List<T>) iterable, doubleFunction, target); } if (iterable != null) { return IterableIterate.collectDouble(iterable, doubleFunction, target); } throw new IllegalArgumentException("Cannot perform a collectDouble on null"); }
Returns a new float collection with the results of applying the specified floatFunction for each element of the iterable.

Example using a Java 8 lambda expression:

MutableFloatCollection floats =
     Iterate.collectFloat(people, person -> person.getHeightInInches());

Example using an anonymous inner class:

MutableFloatCollection floats =
     Iterate.collectFloat(people,
         new FloatFunction<Person>()
         {
             public float floatValueOf(Person person)
             {
                 return person.getHeightInInches();
             }
         });
/** * Returns a new {@code float} collection with the results of applying the specified floatFunction for each element of the iterable. * <p> * Example using a Java 8 lambda expression: * <pre> * MutableFloatCollection floats = * Iterate.<b>collectFloat</b>(people, person -&gt; person.getHeightInInches()); * </pre> * <p> * Example using an anonymous inner class: * <pre> * MutableFloatCollection floats = * Iterate.<b>collectFloat</b>(people, * new FloatFunction&lt;Person&gt;() * { * public float floatValueOf(Person person) * { * return person.getHeightInInches(); * } * }); * </pre> */
public static <T> MutableFloatCollection collectFloat( Iterable<T> iterable, FloatFunction<? super T> floatFunction) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).collectFloat(floatFunction); } if (iterable instanceof ArrayList) { return ArrayListIterate.collectFloat((ArrayList<T>) iterable, floatFunction); } if (iterable instanceof List) { return ListIterate.collectFloat((List<T>) iterable, floatFunction); } if (iterable != null) { return IterableIterate.collectFloat(iterable, floatFunction); } throw new IllegalArgumentException("Cannot perform a collectFloat on null"); }
Same as collectFloat(Iterable<Object>, FloatFunction<? super Object>), except that the results are gathered into the specified target collection.

Example using a Java 8 lambda expression:

FloatArrayList floats =
     Iterate.collectFloat(people, person -> person.getHeightInInches(), new FloatArrayList());

Example using an anonymous inner class:

FloatArrayList floats =
     Iterate.collectFloat(people,
         new FloatFunction<Person>()
         {
             public float floatValueOf(Person person)
             {
                 return person.getHeightInInches();
             }
         }, new FloatArrayList());
/** * Same as {@link #collectFloat(Iterable, FloatFunction)}, except that the results are gathered into the specified {@code target} * collection. * <p> * Example using a Java 8 lambda expression: * <pre> * FloatArrayList floats = * Iterate.<b>collectFloat</b>(people, person -&gt; person.getHeightInInches(), new FloatArrayList()); * </pre> * <p> * Example using an anonymous inner class: * <pre> * FloatArrayList floats = * Iterate.<b>collectFloat</b>(people, * new FloatFunction&lt;Person&gt;() * { * public float floatValueOf(Person person) * { * return person.getHeightInInches(); * } * }, new FloatArrayList()); * </pre> */
public static <T, R extends MutableFloatCollection> R collectFloat( Iterable<T> iterable, FloatFunction<? super T> floatFunction, R target) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).collectFloat(floatFunction, target); } if (iterable instanceof ArrayList) { return ArrayListIterate.collectFloat((ArrayList<T>) iterable, floatFunction, target); } if (iterable instanceof List) { return ListIterate.collectFloat((List<T>) iterable, floatFunction, target); } if (iterable != null) { return IterableIterate.collectFloat(iterable, floatFunction, target); } throw new IllegalArgumentException("Cannot perform a collectFloat on null"); }
Returns a new int collection with the results of applying the specified intFunction for each element of the iterable.

Example using a Java 8 lambda expression:

MutableIntCollection ages =
     Iterate.collectInt(people, person -> person.getAge());

Example using an anonymous inner class:

MutableIntCollection ages =
     Iterate.collectInt(people,
         new IntFunction<Person>()
         {
             public int intValueOf(Person person)
             {
                 return person.getAge();
             }
         });
/** * Returns a new {@code int} collection with the results of applying the specified intFunction for each element of the iterable. * <p> * Example using a Java 8 lambda expression: * <pre> * MutableIntCollection ages = * Iterate.<b>collectInt</b>(people, person -&gt; person.getAge()); * </pre> * <p> * Example using an anonymous inner class: * <pre> * MutableIntCollection ages = * Iterate.<b>collectInt</b>(people, * new IntFunction&lt;Person&gt;() * { * public int intValueOf(Person person) * { * return person.getAge(); * } * }); * </pre> */
public static <T> MutableIntCollection collectInt( Iterable<T> iterable, IntFunction<? super T> intFunction) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).collectInt(intFunction); } if (iterable instanceof ArrayList) { return ArrayListIterate.collectInt((ArrayList<T>) iterable, intFunction); } if (iterable instanceof List) { return ListIterate.collectInt((List<T>) iterable, intFunction); } if (iterable != null) { return IterableIterate.collectInt(iterable, intFunction); } throw new IllegalArgumentException("Cannot perform a collectInt on null"); }
Same as collectInt(Iterable<Object>, IntFunction<? super Object>), except that the results are gathered into the specified target collection.

Example using a Java 8 lambda expression:

IntArrayList ages =
     Iterate.collectInt(people, person -> person.getAge(), new IntArrayList());

Example using an anonymous inner class:

IntArrayList ages =
     Iterate.collectInt(people,
         new IntFunction<Person>()
         {
             public int intValueOf(Person person)
             {
                 return person.getAge();
             }
         }, new IntArrayList());
/** * Same as {@link #collectInt(Iterable, IntFunction)}, except that the results are gathered into the specified {@code target} * collection. * <p> * Example using a Java 8 lambda expression: * <pre> * IntArrayList ages = * Iterate.<b>collectInt</b>(people, person -&gt; person.getAge(), new IntArrayList()); * </pre> * <p> * Example using an anonymous inner class: * <pre> * IntArrayList ages = * Iterate.<b>collectInt</b>(people, * new IntFunction&lt;Person&gt;() * { * public int intValueOf(Person person) * { * return person.getAge(); * } * }, new IntArrayList()); * </pre> */
public static <T, R extends MutableIntCollection> R collectInt( Iterable<T> iterable, IntFunction<? super T> intFunction, R target) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).collectInt(intFunction, target); } if (iterable instanceof ArrayList) { return ArrayListIterate.collectInt((ArrayList<T>) iterable, intFunction, target); } if (iterable instanceof List) { return ListIterate.collectInt((List<T>) iterable, intFunction, target); } if (iterable != null) { return IterableIterate.collectInt(iterable, intFunction, target); } throw new IllegalArgumentException("Cannot perform a collectInt on null"); }
Returns a new long collection with the results of applying the specified longFunction for each element of the iterable.

Example using a Java 8 lambda expression:

MutableLongCollection longs =
     Iterate.collectLong(people, person -> person.getGuid());

Example using an anonymous inner class:

MutableLongCollection longs =
     Iterate.collectLong(people,
         new LongFunction<Person>()
         {
             public long longValueOf(Person person)
             {
                 return person.getGuid();
             }
         });
/** * Returns a new {@code long} collection with the results of applying the specified longFunction for each element of the iterable. * <p> * Example using a Java 8 lambda expression: * <pre> * MutableLongCollection longs = * Iterate.<b>collectLong</b>(people, person -&gt; person.getGuid()); * </pre> * <p> * Example using an anonymous inner class: * <pre> * MutableLongCollection longs = * Iterate.<b>collectLong</b>(people, * new LongFunction&lt;Person&gt;() * { * public long longValueOf(Person person) * { * return person.getGuid(); * } * }); * </pre> */
public static <T> MutableLongCollection collectLong( Iterable<T> iterable, LongFunction<? super T> longFunction) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).collectLong(longFunction); } if (iterable instanceof ArrayList) { return ArrayListIterate.collectLong((ArrayList<T>) iterable, longFunction); } if (iterable instanceof List) { return ListIterate.collectLong((List<T>) iterable, longFunction); } if (iterable != null) { return IterableIterate.collectLong(iterable, longFunction); } throw new IllegalArgumentException("Cannot perform a collectLong on null"); }
Same as collectLong(Iterable<Object>, LongFunction<? super Object>), except that the results are gathered into the specified target collection.

Example using a Java 8 lambda expression:

LongArrayList longs =
     Iterate.collectLong(people, person -> person.getGuid(), new LongArrayList());

Example using an anonymous inner class:

LongArrayList longs =
     Iterate.collectLong(people,
             new LongFunction<Person>()
             {
                 public long longValueOf(Person person)
                 {
                     return person.getGuid();
                 }
             }, new LongArrayList());
/** * Same as {@link #collectLong(Iterable, LongFunction)}, except that the results are gathered into the specified {@code target} * collection. * <p> * Example using a Java 8 lambda expression: * <pre> * LongArrayList longs = * Iterate.<b>collectLong</b>(people, person -&gt; person.getGuid(), new LongArrayList()); * </pre> * <p> * Example using an anonymous inner class: * <pre> * LongArrayList longs = * Iterate.<b>collectLong</b>(people, * new LongFunction&lt;Person&gt;() * { * public long longValueOf(Person person) * { * return person.getGuid(); * } * }, new LongArrayList()); * </pre> */
public static <T, R extends MutableLongCollection> R collectLong( Iterable<T> iterable, LongFunction<? super T> longFunction, R target) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).collectLong(longFunction, target); } if (iterable instanceof ArrayList) { return ArrayListIterate.collectLong((ArrayList<T>) iterable, longFunction, target); } if (iterable instanceof List) { return ListIterate.collectLong((List<T>) iterable, longFunction, target); } if (iterable != null) { return IterableIterate.collectLong(iterable, longFunction, target); } throw new IllegalArgumentException("Cannot perform a collectLong on null"); }
Returns a new short collection with the results of applying the specified shortFunction for each element of the iterable.

Example using a Java 8 lambda expression:

MutableShortCollection shorts =
     Iterate.collectShort(people, person -> person.getNumberOfJunkMailItemsReceivedPerMonth());

Example using an anonymous inner class:

MutableShortCollection shorts =
     Iterate.collectShort(people,
         new ShortFunction<Person>()
         {
             public short shortValueOf(Person person)
             {
                 return person.getNumberOfJunkMailItemsReceivedPerMonth();
             }
         });
/** * Returns a new {@code short} collection with the results of applying the specified shortFunction for each element of the iterable. * <p> * Example using a Java 8 lambda expression: * <pre> * MutableShortCollection shorts = * Iterate.<b>collectShort</b>(people, person -&gt; person.getNumberOfJunkMailItemsReceivedPerMonth()); * </pre> * <p> * Example using an anonymous inner class: * <pre> * MutableShortCollection shorts = * Iterate.<b>collectShort</b>(people, * new ShortFunction&lt;Person&gt;() * { * public short shortValueOf(Person person) * { * return person.getNumberOfJunkMailItemsReceivedPerMonth(); * } * }); * </pre> */
public static <T> MutableShortCollection collectShort( Iterable<T> iterable, ShortFunction<? super T> shortFunction) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).collectShort(shortFunction); } if (iterable instanceof ArrayList) { return ArrayListIterate.collectShort((ArrayList<T>) iterable, shortFunction); } if (iterable instanceof List) { return ListIterate.collectShort((List<T>) iterable, shortFunction); } if (iterable != null) { return IterableIterate.collectShort(iterable, shortFunction); } throw new IllegalArgumentException("Cannot perform a collectShort on null"); }
Same as collectShort(Iterable<Object>, ShortFunction<? super Object>), except that the results are gathered into the specified target collection.

Example using a Java 8 lambda expression:

ShortArrayList shorts =
     Iterate.collectShort(people, person -> person.getNumberOfJunkMailItemsReceivedPerMonth(), new ShortArrayList());

Example using an anonymous inner class:

ShortArrayList shorts =
     Iterate.collectShort(people,
         new ShortFunction<Person>()
         {
             public short shortValueOf(Person person)
             {
                 return person.getNumberOfJunkMailItemsReceivedPerMonth();
             }
         }, new ShortArrayList());
/** * Same as {@link #collectShort(Iterable, ShortFunction)}, except that the results are gathered into the specified {@code target} * collection. * <p> * Example using a Java 8 lambda expression: * <pre> * ShortArrayList shorts = * Iterate.<b>collectShort</b>(people, person -&gt; person.getNumberOfJunkMailItemsReceivedPerMonth(), new ShortArrayList()); * </pre> * <p> * Example using an anonymous inner class: * <pre> * ShortArrayList shorts = * Iterate.<b>collectShort</b>(people, * new ShortFunction&lt;Person&gt;() * { * public short shortValueOf(Person person) * { * return person.getNumberOfJunkMailItemsReceivedPerMonth(); * } * }, new ShortArrayList()); * </pre> */
public static <T, R extends MutableShortCollection> R collectShort( Iterable<T> iterable, ShortFunction<? super T> shortFunction, R target) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).collectShort(shortFunction, target); } if (iterable instanceof ArrayList) { return ArrayListIterate.collectShort((ArrayList<T>) iterable, shortFunction, target); } if (iterable instanceof List) { return ListIterate.collectShort((List<T>) iterable, shortFunction, target); } if (iterable != null) { return IterableIterate.collectShort(iterable, shortFunction, target); } throw new IllegalArgumentException("Cannot perform a collectShort on null"); }
See Also:
  • flatCollect.flatCollect(Function)
/** * @see RichIterable#flatCollect(Function) */
public static <T, V> Collection<V> flatCollect( Iterable<T> iterable, Function<? super T, ? extends Iterable<V>> function) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).flatCollect(function); } if (iterable instanceof ArrayList) { return ArrayListIterate.flatCollect((ArrayList<T>) iterable, function); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.flatCollect((List<T>) iterable, function); } if (iterable instanceof Collection) { return IterableIterate.flatCollect( iterable, function, DefaultSpeciesNewStrategy.INSTANCE.speciesNew( (Collection<T>) iterable, ((Collection<T>) iterable).size())); } if (iterable != null) { return IterableIterate.flatCollect(iterable, function); } throw new IllegalArgumentException("Cannot perform a flatCollect on null"); }
See Also:
  • flatCollect.flatCollect(Function, Collection)
/** * @see RichIterable#flatCollect(Function, Collection) */
public static <T, A, R extends Collection<A>> R flatCollect( Iterable<T> iterable, Function<? super T, ? extends Iterable<A>> function, R targetCollection) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).flatCollect(function, targetCollection); } if (iterable instanceof ArrayList) { return ArrayListIterate.flatCollect((ArrayList<T>) iterable, function, targetCollection); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.flatCollect((List<T>) iterable, function, targetCollection); } if (iterable != null) { return IterableIterate.flatCollect(iterable, function, targetCollection); } throw new IllegalArgumentException("Cannot perform a flatCollect on null"); }
Same as collect with a Function2 and specified parameter which is passed to the function.
/** * Same as collect with a Function2 and specified parameter which is passed to the function. */
public static <T, P, A> Collection<A> collectWith( Iterable<T> iterable, Function2<? super T, ? super P, ? extends A> function, P parameter) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).collectWith(function, parameter); } if (iterable instanceof ArrayList) { return ArrayListIterate.collectWith((ArrayList<T>) iterable, function, parameter); } if (iterable instanceof List<?>) { return ListIterate.collectWith((List<T>) iterable, function, parameter); } if (iterable instanceof Collection) { return IterableIterate.collectWith( iterable, function, parameter, DefaultSpeciesNewStrategy.INSTANCE.speciesNew( (Collection<T>) iterable, ((Collection<T>) iterable).size())); } if (iterable != null) { return IterableIterate.collectWith(iterable, function, parameter); } throw new IllegalArgumentException("Cannot perform a collectWith on null"); }
Same as collectWith but with a targetCollection parameter to gather the results.
/** * Same as collectWith but with a targetCollection parameter to gather the results. */
public static <T, P, A, R extends Collection<A>> R collectWith( Iterable<T> iterable, Function2<? super T, ? super P, ? extends A> function, P parameter, R targetCollection) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).collectWith(function, parameter, targetCollection); } if (iterable instanceof ArrayList) { return ArrayListIterate.collectWith((ArrayList<T>) iterable, function, parameter, targetCollection); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.collectWith((List<T>) iterable, function, parameter, targetCollection); } if (iterable != null) { return IterableIterate.collectWith(iterable, function, parameter, targetCollection); } throw new IllegalArgumentException("Cannot perform a collectWith on null"); }
Flattens a collection of collections into one "flat" collection.
Params:
  • iterable – A list of lists, e.g. { { 1, 2, 3 }, { 4, 5 }, { 6 } }
Returns:A flattened list, e.g. { 1, 2, 3, 4, 5, 6 }
/** * Flattens a collection of collections into one "flat" collection. * * @param iterable A list of lists, e.g. { { 1, 2, 3 }, { 4, 5 }, { 6 } } * @return A flattened list, e.g. { 1, 2, 3, 4, 5, 6 } */
public static <T> Collection<T> flatten(Iterable<? extends Iterable<T>> iterable) { return Iterate.flatCollect(iterable, Functions.<Iterable<T>>identity()); }
Same as flatten(Iterable<? extends Iterable<Object>>) except that the results are gathered into the specified targetCollection.
/** * Same as {@link #flatten(Iterable)} except that the results are gathered into the specified targetCollection. */
public static <T, R extends Collection<T>> R flatten(Iterable<? extends Iterable<T>> iterable, R targetCollection) { return Iterate.flatCollect(iterable, Functions.<Iterable<T>>identity(), targetCollection); }
Returns the first element of a collection. In the case of a List it is the element at the first index. In the case of any other Collection, it is the first element that would be returned during an iteration. If the Collection is empty, the result is null.

WARNING!!! The order of Sets are not guaranteed (except for TreeSets and other Ordered Set implementations), so if you use this method, the first element could be any element from the Set.

Throws:
/** * Returns the first element of a collection. In the case of a List it is the element at the first index. In the * case of any other Collection, it is the first element that would be returned during an iteration. If the * Collection is empty, the result is {@code null}. * <p> * WARNING!!! The order of Sets are not guaranteed (except for TreeSets and other Ordered Set implementations), so * if you use this method, the first element could be any element from the Set. * * @throws IllegalArgumentException if the Collection is null */
public static <T> T getFirst(Iterable<T> iterable) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).getFirst(); } if (iterable instanceof List) { return ListIterate.getFirst((List<T>) iterable); } if (iterable instanceof SortedSet && !((SortedSet<T>) iterable).isEmpty()) { return ((SortedSet<T>) iterable).first(); } if (iterable instanceof Collection) { return Iterate.isEmpty(iterable) ? null : iterable.iterator().next(); } if (iterable != null) { return IterableIterate.getFirst(iterable); } throw new IllegalArgumentException("Cannot get first from null"); }
A null-safe check on a collection to see if it isEmpty. A null collection results in a true.
/** * A null-safe check on a collection to see if it isEmpty. A null collection results in a true. */
public static boolean isEmpty(Iterable<?> iterable) { if (iterable == null) { return true; } if (iterable instanceof RichIterable) { return ((RichIterable<?>) iterable).isEmpty(); } if (iterable instanceof Collection) { return ((Collection<?>) iterable).isEmpty(); } return IterableIterate.isEmpty(iterable); }
A null-safe check on a collection to see if it is notEmpty. A null collection results in a false.
/** * A null-safe check on a collection to see if it is notEmpty. A null collection results in a false. */
public static boolean notEmpty(Iterable<?> iterable) { return !Iterate.isEmpty(iterable); }
Returns the last element of a collection. In the case of a List it is the element at the last index. In the case of any other Collection, it is the last element that would be returned during an iteration. If the Collection is empty, the result is null.

WARNING!!! The order of Sets are not guaranteed (except for TreeSets and other Ordered Set implementations), so if you use this method, the last element could be any element from the Set.

Throws:
/** * Returns the last element of a collection. In the case of a List it is the element at the last index. In the * case of any other Collection, it is the last element that would be returned during an iteration. If the * Collection is empty, the result is {@code null}. * <p> * WARNING!!! The order of Sets are not guaranteed (except for TreeSets and other Ordered Set implementations), so * if you use this method, the last element could be any element from the Set. * * @throws IllegalArgumentException if the Collection is null */
public static <T> T getLast(Iterable<T> iterable) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).getLast(); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.getLast((List<T>) iterable); } if (iterable instanceof SortedSet && !((SortedSet<T>) iterable).isEmpty()) { return ((SortedSet<T>) iterable).last(); } if (iterable instanceof LinkedList && !((LinkedList<T>) iterable).isEmpty()) { return ((LinkedList<T>) iterable).getLast(); } if (iterable != null) { return IterableIterate.getLast(iterable); } throw new IllegalArgumentException("Cannot get last from null"); }
Returns the first element of the iterable that evaluates to true for the specified predicate, or null if no element evaluates to true.

Example using a Java 8 lambda expression:

Person person = Iterate.detect(people, person -> person.getFirstName().equals("John") && person.getLastName().equals("Smith"));

Example using an anonymous inner class:

Person person = Iterate.detect(people, new Predicate<Person>()
{
    public boolean accept(Person person)
    {
        return person.getFirstName().equals("John") && person.getLastName().equals("Smith");
    }
});
/** * Returns the first element of the iterable that evaluates to true for the specified predicate, or null if * no element evaluates to true. * <p> * Example using a Java 8 lambda expression: * <pre> * Person person = Iterate.<b>detect</b>(people, person -&gt; person.getFirstName().equals("John") &amp;&amp; person.getLastName().equals("Smith")); * </pre> * <p> * Example using an anonymous inner class: * <pre> * Person person = Iterate.<b>detect</b>(people, new Predicate&lt;Person&gt;() * { * public boolean accept(Person person) * { * return person.getFirstName().equals("John") &amp;&amp; person.getLastName().equals("Smith"); * } * }); * </pre> */
public static <T> T detect(Iterable<T> iterable, Predicate<? super T> predicate) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).detect(predicate); } if (iterable instanceof ArrayList) { return ArrayListIterate.detect((ArrayList<T>) iterable, predicate); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.detect((List<T>) iterable, predicate); } if (iterable != null) { return IterableIterate.detect(iterable, predicate); } throw new IllegalArgumentException("Cannot perform detect on null"); }
Returns the first element of the iterable that evaluates to true for the specified predicate2 and parameter, or null if no element evaluates to true.

Example using a Java 8 lambda expression:

Person person = Iterate.detectWith(people, (person, fullName) -> person.getFullName().equals(fullName), "John Smith");

Example using an anonymous inner class:

Person person = Iterate.detectWith(people, new Predicate2<Person, String>()
{
    public boolean accept(Person person, String fullName)
    {
        return person.getFullName().equals(fullName);
    }
}, "John Smith");
/** * Returns the first element of the iterable that evaluates to true for the specified predicate2 and parameter, * or null if no element evaluates to true. * <p> * Example using a Java 8 lambda expression: * <pre> * Person person = Iterate.<b>detectWith</b>(people, (person, fullName) -&gt; person.getFullName().equals(fullName), "John Smith"); * </pre> * <p> * Example using an anonymous inner class: * <pre> * Person person = Iterate.<b>detectWith</b>(people, new Predicate2&lt;Person, String&gt;() * { * public boolean accept(Person person, String fullName) * { * return person.getFullName().equals(fullName); * } * }, "John Smith"); * </pre> */
public static <T, P> T detectWith( Iterable<T> iterable, Predicate2<? super T, ? super P> predicate, P parameter) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).detectWith(predicate, parameter); } if (iterable instanceof ArrayList) { return ArrayListIterate.detectWith((ArrayList<T>) iterable, predicate, parameter); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.detectWith((List<T>) iterable, predicate, parameter); } if (iterable != null) { return IterableIterate.detectWith(iterable, predicate, parameter); } throw new IllegalArgumentException("Cannot perform detectWith on null"); }
Returns the first element of the iterable that evaluates to true for the specified predicate as an Optional.

Example using a Java 8 lambda expression:

Optional<Person> person =
     Iterate.detectOptional(people,
         person -> person.getFirstName().equals("John") && person.getLastName().equals("Smith"));

Throws:
  • NullPointerException – if the element selected is null
Since:8.0
/** * Returns the first element of the iterable that evaluates to true for the specified predicate as an Optional. * <p> * Example using a Java 8 lambda expression: * <pre> * Optional&lt;Person&gt; person = * Iterate.<b>detectOptional</b>(people, * person -&gt; person.getFirstName().equals("John") &amp;&amp; person.getLastName().equals("Smith")); * </pre> * <p> * * @throws NullPointerException if the element selected is null * @since 8.0 */
public static <T> Optional<T> detectOptional(Iterable<T> iterable, Predicate<? super T> predicate) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).detectOptional(predicate); } if (iterable instanceof ArrayList) { return ArrayListIterate.detectOptional((ArrayList<T>) iterable, predicate); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.detectOptional((List<T>) iterable, predicate); } if (iterable != null) { return IterableIterate.detectOptional(iterable, predicate); } throw new IllegalArgumentException("Cannot perform detectOptional on null"); }
Returns the first element of the iterable that evaluates to true for the specified predicate2 and parameter as an Optional.

Example using a Java 8 lambda expression:

Optional<Person> person =
     Iterate.detectWithOptional(people,
         (person, fullName) -> person.getFullName().equals(fullName), "John Smith");

Throws:
  • NullPointerException – if the element selected is null
Since:8.0
/** * Returns the first element of the iterable that evaluates to true for the specified predicate2 and parameter as * an Optional. * <p> * Example using a Java 8 lambda expression: * <pre> * Optional&lt;Person&gt; person = * Iterate.<b>detectWithOptional</b>(people, * (person, fullName) -&gt; person.getFullName().equals(fullName), "John Smith"); * </pre> * <p> * * @throws NullPointerException if the element selected is null * @since 8.0 */
public static <T, P> Optional<T> detectWithOptional( Iterable<T> iterable, Predicate2<? super T, ? super P> predicate, P parameter) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).detectWithOptional(predicate, parameter); } if (iterable instanceof ArrayList) { return ArrayListIterate.detectWithOptional((ArrayList<T>) iterable, predicate, parameter); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.detectWithOptional((List<T>) iterable, predicate, parameter); } if (iterable != null) { return IterableIterate.detectWithOptional(iterable, predicate, parameter); } throw new IllegalArgumentException("Cannot perform detectWith on null"); }
Returns the first element of the iterable that evaluates to true for the specified predicate, or returns the result ifNone if no element evaluates to true.
/** * Returns the first element of the iterable that evaluates to true for the specified predicate, or returns the * result ifNone if no element evaluates to true. */
public static <T> T detectIfNone(Iterable<T> iterable, Predicate<? super T> predicate, T ifNone) { T result = Iterate.detect(iterable, predicate); return result == null ? ifNone : result; }
Returns the first element of the iterable that evaluates to true for the specified predicate2 and parameter, or returns the result ifNone if no element evaluates to true.
/** * Returns the first element of the iterable that evaluates to true for the specified predicate2 and parameter, * or returns the result ifNone if no element evaluates to true. */
public static <T, P> T detectWithIfNone( Iterable<T> iterable, Predicate2<? super T, ? super P> predicate, P parameter, T ifNone) { T result = Iterate.detectWith(iterable, predicate, parameter); return result == null ? ifNone : result; }
Searches for the first occurrence where the predicate evaluates to true, returns -1 if the predicate does not evaluate to true.
/** * Searches for the first occurrence where the predicate evaluates to true, returns -1 if the predicate does not evaluate to true. */
public static <T> int detectIndex(Iterable<T> iterable, Predicate<? super T> predicate) { if (iterable instanceof ArrayList<?>) { return ArrayListIterate.detectIndex((ArrayList<T>) iterable, predicate); } if (iterable instanceof List<?>) { return ListIterate.detectIndex((List<T>) iterable, predicate); } if (iterable != null) { return IterableIterate.detectIndex(iterable, predicate); } throw new IllegalArgumentException("Cannot perform detectIndex on null"); }
Searches for the first occurrence where the predicate2 and parameter evaluates to true, returns -1 if the predicate2 and parameter do not evaluate to true.
/** * Searches for the first occurrence where the predicate2 and parameter evaluates to true, returns -1 if the predicate2 and parameter do not evaluate to true. */
public static <T, P> int detectIndexWith( Iterable<T> iterable, Predicate2<? super T, ? super P> predicate, P parameter) { if (iterable instanceof ArrayList<?>) { return ArrayListIterate.detectIndexWith((ArrayList<T>) iterable, predicate, parameter); } if (iterable instanceof List<?>) { return ListIterate.detectIndexWith((List<T>) iterable, predicate, parameter); } if (iterable != null) { return IterableIterate.detectIndexWith(iterable, predicate, parameter); } throw new IllegalArgumentException("Cannot perform detectIndexWith on null"); }
This method produces the equivalent result as Stream.collect(Collector).
Since:8.0
/** * This method produces the equivalent result as {@link Stream#collect(Collector)}. * * @since 8.0 */
public static <T, A, R> R reduceInPlace(Iterable<T> iterable, Collector<? super T, A, R> collector) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).reduceInPlace(collector); } A mutableResult = collector.supplier().get(); BiConsumer<A, ? super T> accumulator = collector.accumulator(); Iterate.forEach(iterable, each -> accumulator.accept(mutableResult, each)); return collector.finisher().apply(mutableResult); }
This method produces the equivalent result as Stream.collect(Supplier, BiConsumer, BiConsumer). The combiner used in collect is unnecessary in the serial case, so is not included in the API.
Since:8.0
/** * This method produces the equivalent result as {@link Stream#collect(Supplier, BiConsumer, BiConsumer)}. * The combiner used in collect is unnecessary in the serial case, so is not included in the API. * * @since 8.0 */
public static <T, R> R reduceInPlace(Iterable<T> iterable, Supplier<R> supplier, BiConsumer<R, ? super T> accumulator) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).reduceInPlace(supplier, accumulator); } R result = supplier.get(); Iterate.forEach(iterable, each -> accumulator.accept(result, each)); return result; }
See Also:
  • injectInto.injectInto(Object, Function2)
/** * @see RichIterable#injectInto(Object, Function2) */
public static <T, IV> IV injectInto( IV injectValue, Iterable<T> iterable, Function2<? super IV, ? super T, ? extends IV> function) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).injectInto(injectValue, function); } if (iterable instanceof ArrayList) { return ArrayListIterate.injectInto(injectValue, (ArrayList<T>) iterable, function); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.injectInto(injectValue, (List<T>) iterable, function); } if (iterable != null) { return IterableIterate.injectInto(injectValue, iterable, function); } throw new IllegalArgumentException("Cannot perform an injectInto on null"); }
See Also:
  • injectInto.injectInto(int, IntObjectToIntFunction)
/** * @see RichIterable#injectInto(int, IntObjectToIntFunction) */
public static <T> int injectInto( int injectValue, Iterable<T> iterable, IntObjectToIntFunction<? super T> function) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).injectInto(injectValue, function); } if (iterable instanceof ArrayList) { return ArrayListIterate.injectInto(injectValue, (ArrayList<T>) iterable, function); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.injectInto(injectValue, (List<T>) iterable, function); } if (iterable != null) { return IterableIterate.injectInto(injectValue, iterable, function); } throw new IllegalArgumentException("Cannot perform an injectInto on null"); }
See Also:
  • injectInto.injectInto(long, LongObjectToLongFunction)
/** * @see RichIterable#injectInto(long, LongObjectToLongFunction) */
public static <T> long injectInto( long injectValue, Iterable<T> iterable, LongObjectToLongFunction<? super T> function) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).injectInto(injectValue, function); } if (iterable instanceof ArrayList) { return ArrayListIterate.injectInto(injectValue, (ArrayList<T>) iterable, function); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.injectInto(injectValue, (List<T>) iterable, function); } if (iterable != null) { return IterableIterate.injectInto(injectValue, iterable, function); } throw new IllegalArgumentException("Cannot perform an injectInto on null"); }
See Also:
  • injectInto.injectInto(double, DoubleObjectToDoubleFunction)
/** * @see RichIterable#injectInto(double, DoubleObjectToDoubleFunction) */
public static <T> double injectInto( double injectValue, Iterable<T> iterable, DoubleObjectToDoubleFunction<? super T> function) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).injectInto(injectValue, function); } if (iterable instanceof ArrayList) { return ArrayListIterate.injectInto(injectValue, (ArrayList<T>) iterable, function); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.injectInto(injectValue, (List<T>) iterable, function); } if (iterable != null) { return IterableIterate.injectInto(injectValue, iterable, function); } throw new IllegalArgumentException("Cannot perform an injectInto on null"); }
See Also:
  • injectInto.injectInto(float, FloatObjectToFloatFunction)
/** * @see RichIterable#injectInto(float, FloatObjectToFloatFunction) */
public static <T> float injectInto( float injectValue, Iterable<T> iterable, FloatObjectToFloatFunction<? super T> function) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).injectInto(injectValue, function); } if (iterable instanceof ArrayList) { return ArrayListIterate.injectInto(injectValue, (ArrayList<T>) iterable, function); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.injectInto(injectValue, (List<T>) iterable, function); } if (iterable != null) { return IterableIterate.injectInto(injectValue, iterable, function); } throw new IllegalArgumentException("Cannot perform an injectInto on null"); }
See Also:
  • sumOfInt.sumOfInt(IntFunction)
/** * @see RichIterable#sumOfInt(IntFunction) */
public static <T> long sumOfInt(Iterable<T> iterable, IntFunction<? super T> function) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).sumOfInt(function); } if (iterable instanceof List) { return ListIterate.sumOfInt((List<T>) iterable, function); } if (iterable != null) { return IterableIterate.sumOfInt(iterable, function); } throw new IllegalArgumentException("Cannot perform an sumOfInt on null"); }
See Also:
  • sumOfLong.sumOfLong(LongFunction)
/** * @see RichIterable#sumOfLong(LongFunction) */
public static <T> long sumOfLong(Iterable<T> iterable, LongFunction<? super T> function) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).sumOfLong(function); } if (iterable instanceof List) { return ListIterate.sumOfLong((List<T>) iterable, function); } if (iterable != null) { return IterableIterate.sumOfLong(iterable, function); } throw new IllegalArgumentException("Cannot perform an sumOfLong on null"); }
See Also:
  • sumOfFloat.sumOfFloat(FloatFunction)
/** * @see RichIterable#sumOfFloat(FloatFunction) */
public static <T> double sumOfFloat(Iterable<T> iterable, FloatFunction<? super T> function) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).sumOfFloat(function); } if (iterable instanceof List) { return ListIterate.sumOfFloat((List<T>) iterable, function); } if (iterable != null) { return IterableIterate.sumOfFloat(iterable, function); } throw new IllegalArgumentException("Cannot perform an sumOfFloat on null"); }
See Also:
  • sumOfDouble.sumOfDouble(DoubleFunction)
/** * @see RichIterable#sumOfDouble(DoubleFunction) */
public static <T> double sumOfDouble(Iterable<T> iterable, DoubleFunction<? super T> function) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).sumOfDouble(function); } if (iterable instanceof List) { return ListIterate.sumOfDouble((List<T>) iterable, function); } if (iterable != null) { return IterableIterate.sumOfDouble(iterable, function); } throw new IllegalArgumentException("Cannot perform an sumOfDouble on null"); }
Returns the BigDecimal sum of the result of applying the function to each element of the iterable.
Since:6.0
/** * Returns the BigDecimal sum of the result of applying the function to each element of the iterable. * * @since 6.0 */
public static <T> BigDecimal sumOfBigDecimal(Iterable<T> iterable, Function<? super T, BigDecimal> function) { if (iterable instanceof List) { return ListIterate.sumOfBigDecimal((List<T>) iterable, function); } if (iterable != null) { return IterableIterate.sumOfBigDecimal(iterable, function); } throw new IllegalArgumentException("Cannot perform an sumOfBigDecimal on null"); }
Returns the BigInteger sum of the result of applying the function to each element of the iterable.
Since:6.0
/** * Returns the BigInteger sum of the result of applying the function to each element of the iterable. * * @since 6.0 */
public static <T> BigInteger sumOfBigInteger(Iterable<T> iterable, Function<? super T, BigInteger> function) { if (iterable instanceof List) { return ListIterate.sumOfBigInteger((List<T>) iterable, function); } if (iterable != null) { return IterableIterate.sumOfBigInteger(iterable, function); } throw new IllegalArgumentException("Cannot perform an sumOfBigDecimal on null"); }
Groups and sums the values of the iterable using the two specified functions.
Since:6.0
/** * Groups and sums the values of the iterable using the two specified functions. * * @since 6.0 */
public static <V, T> MutableMap<V, BigDecimal> sumByBigDecimal(Iterable<T> iterable, Function<T, V> groupBy, Function<? super T, BigDecimal> function) { if (iterable instanceof List) { return ListIterate.sumByBigDecimal((List<T>) iterable, groupBy, function); } if (iterable != null) { return IterableIterate.sumByBigDecimal(iterable, groupBy, function); } throw new IllegalArgumentException("Cannot perform an sumByBigDecimal on null"); }
Groups and sums the values of the iterable using the two specified functions.
Since:6.0
/** * Groups and sums the values of the iterable using the two specified functions. * * @since 6.0 */
public static <V, T> MutableMap<V, BigInteger> sumByBigInteger(Iterable<T> iterable, Function<T, V> groupBy, Function<? super T, BigInteger> function) { if (iterable instanceof List) { return ListIterate.sumByBigInteger((List<T>) iterable, groupBy, function); } if (iterable != null) { return IterableIterate.sumByBigInteger(iterable, groupBy, function); } throw new IllegalArgumentException("Cannot perform an sumByBigInteger on null"); }
See Also:
  • sumByInt.sumByInt(Function, IntFunction)
/** * @see RichIterable#sumByInt(Function, IntFunction) */
public static <T, V> ObjectLongMap<V> sumByInt(Iterable<T> iterable, Function<T, V> groupBy, IntFunction<? super T> function) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).sumByInt(groupBy, function); } if (iterable instanceof List) { return ListIterate.sumByInt((List<T>) iterable, groupBy, function); } if (iterable != null) { return IterableIterate.sumByInt(iterable, groupBy, function); } throw new IllegalArgumentException("Cannot perform an sumByInt on null"); }
See Also:
  • sumByLong.sumByLong(Function, LongFunction)
/** * @see RichIterable#sumByLong(Function, LongFunction) */
public static <T, V> ObjectLongMap<V> sumByLong(Iterable<T> iterable, Function<T, V> groupBy, LongFunction<? super T> function) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).sumByLong(groupBy, function); } if (iterable instanceof List) { return ListIterate.sumByLong((List<T>) iterable, groupBy, function); } if (iterable != null) { return IterableIterate.sumByLong(iterable, groupBy, function); } throw new IllegalArgumentException("Cannot perform an sumByLong on null"); }
See Also:
  • sumOfFloat.sumOfFloat(FloatFunction)
/** * @see RichIterable#sumOfFloat(FloatFunction) */
public static <T, V> ObjectDoubleMap<V> sumByFloat(Iterable<T> iterable, Function<T, V> groupBy, FloatFunction<? super T> function) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).sumByFloat(groupBy, function); } if (iterable instanceof List) { return ListIterate.sumByFloat((List<T>) iterable, groupBy, function); } if (iterable != null) { return IterableIterate.sumByFloat(iterable, groupBy, function); } throw new IllegalArgumentException("Cannot perform an injectInto on null"); }
See Also:
  • sumOfDouble.sumOfDouble(DoubleFunction)
/** * @see RichIterable#sumOfDouble(DoubleFunction) */
public static <T, V> ObjectDoubleMap<V> sumByDouble(Iterable<T> iterable, Function<T, V> groupBy, DoubleFunction<? super T> function) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).sumByDouble(groupBy, function); } if (iterable instanceof List) { return ListIterate.sumByDouble((List<T>) iterable, groupBy, function); } if (iterable != null) { return IterableIterate.sumByDouble(iterable, groupBy, function); } throw new IllegalArgumentException("Cannot perform an injectInto on null"); }
Similar to injectInto(Object, Iterable<Object>, Function2<? super Object,? super Object,? extends Object>), except with a parameter is used as third generic argument in function3.
/** * Similar to {@link #injectInto(Object, Iterable, Function2)}, except with a parameter is used as third generic argument in function3. */
public static <T, IV, P> IV injectIntoWith( IV injectValue, Iterable<T> iterable, Function3<? super IV, ? super T, ? super P, ? extends IV> function, P parameter) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).injectIntoWith(injectValue, function, parameter); } if (iterable instanceof ArrayList) { return ArrayListIterate.injectIntoWith(injectValue, (ArrayList<T>) iterable, function, parameter); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.injectIntoWith(injectValue, (List<T>) iterable, function, parameter); } if (iterable != null) { return IterableIterate.injectIntoWith(injectValue, iterable, function, parameter); } throw new IllegalArgumentException("Cannot perform an injectIntoWith on null"); }
Returns true if the predicate evaluates to true for any element of the iterable. Returns false if the iterable is empty or if no elements return true for the predicate.
/** * Returns true if the predicate evaluates to true for any element of the iterable. * Returns false if the iterable is empty or if no elements return true for the predicate. */
public static <T> boolean anySatisfy(Iterable<T> iterable, Predicate<? super T> predicate) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).anySatisfy(predicate); } if (iterable instanceof ArrayList) { return ArrayListIterate.anySatisfy((ArrayList<T>) iterable, predicate); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.anySatisfy((List<T>) iterable, predicate); } if (iterable != null) { return IterableIterate.anySatisfy(iterable, predicate); } throw new IllegalArgumentException("Cannot perform an anySatisfy on null"); }
Returns true if the predicate2 and parameter evaluates to true for any element of the iterable. Returns false if the iterable is empty or if no elements return true for the predicate2.
/** * Returns true if the predicate2 and parameter evaluates to true for any element of the iterable. * Returns false if the iterable is empty or if no elements return true for the predicate2. */
public static <T, P> boolean anySatisfyWith( Iterable<T> iterable, Predicate2<? super T, ? super P> predicate, P parameter) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).anySatisfyWith(predicate, parameter); } if (iterable instanceof ArrayList) { return ArrayListIterate.anySatisfyWith((ArrayList<T>) iterable, predicate, parameter); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.anySatisfyWith((List<T>) iterable, predicate, parameter); } if (iterable != null) { return IterableIterate.anySatisfyWith(iterable, predicate, parameter); } throw new IllegalArgumentException("Cannot perform an anySatisfyWith on null"); }
Returns true if the predicate evaluates to true for every element of the iterable, or returns false. Returns true if the iterable is empty.
/** * Returns true if the predicate evaluates to true for every element of the iterable, or returns false. * Returns true if the iterable is empty. */
public static <T> boolean allSatisfy(Iterable<T> iterable, Predicate<? super T> predicate) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).allSatisfy(predicate); } if (iterable instanceof ArrayList) { return ArrayListIterate.allSatisfy((ArrayList<T>) iterable, predicate); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.allSatisfy((List<T>) iterable, predicate); } if (iterable != null) { return IterableIterate.allSatisfy(iterable, predicate); } throw new IllegalArgumentException("Cannot perform an allSatisfy on null"); }
Returns true if the predicate evaluates to true for every element of the iterable, or returns false.
/** * Returns true if the predicate evaluates to true for every element of the iterable, or returns false. */
public static <T, P> boolean allSatisfyWith( Iterable<T> iterable, Predicate2<? super T, ? super P> predicate, P parameter) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).allSatisfyWith(predicate, parameter); } if (iterable instanceof ArrayList) { return ArrayListIterate.allSatisfyWith((ArrayList<T>) iterable, predicate, parameter); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.allSatisfyWith((List<T>) iterable, predicate, parameter); } if (iterable != null) { return IterableIterate.allSatisfyWith(iterable, predicate, parameter); } throw new IllegalArgumentException("Cannot perform an allSatisfyWith on null"); }
Returns true if the predicate evaluates to false for every element of the iterable, or returns false. Returns true if the iterable is empty.
/** * Returns true if the predicate evaluates to false for every element of the iterable, or returns false. * Returns true if the iterable is empty. */
public static <T> boolean noneSatisfy(Iterable<T> iterable, Predicate<? super T> predicate) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).noneSatisfy(predicate); } if (iterable instanceof ArrayList) { return ArrayListIterate.noneSatisfy((ArrayList<T>) iterable, predicate); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.noneSatisfy((List<T>) iterable, predicate); } if (iterable != null) { return IterableIterate.noneSatisfy(iterable, predicate); } throw new IllegalArgumentException("Cannot perform an allSatisfy on null"); }
Returns true if the predicate evaluates to false for every element of the iterable, or returns false. Returns true if the iterable is empty.
/** * Returns true if the predicate evaluates to false for every element of the iterable, or returns false. * Returns true if the iterable is empty. */
public static <T, P> boolean noneSatisfyWith( Iterable<T> iterable, Predicate2<? super T, ? super P> predicate, P parameter) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).noneSatisfyWith(predicate, parameter); } if (iterable instanceof ArrayList) { return ArrayListIterate.noneSatisfyWith((ArrayList<T>) iterable, predicate, parameter); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.noneSatisfyWith((List<T>) iterable, predicate, parameter); } if (iterable != null) { return IterableIterate.noneSatisfyWith(iterable, predicate, parameter); } throw new IllegalArgumentException("Cannot perform an noneSatisfyWith on null"); }
Iterate over the specified collection applying the specified Function to each element to calculate a key and return the results as a Map.
/** * Iterate over the specified collection applying the specified Function to each element to calculate * a key and return the results as a Map. */
public static <T, K> MutableMap<K, T> toMap( Iterable<T> iterable, Function<? super T, ? extends K> keyFunction) { MutableMap<K, T> map = UnifiedMap.newMap(); Iterate.forEach(iterable, new MapCollectProcedure<>(map, keyFunction)); return map; }
Iterate over the specified collection applying the specified Functions to each element to calculate a key and value, and return the results as a Map.
/** * Iterate over the specified collection applying the specified Functions to each element to calculate * a key and value, and return the results as a Map. */
public static <T, K, V> MutableMap<K, V> toMap( Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, Function<? super T, ? extends V> valueFunction) { return Iterate.addToMap(iterable, keyFunction, valueFunction, UnifiedMap.newMap()); }
Iterate over the specified collection applying the specified Functions to each element to calculate a key and value, and return the results in the specified Map instance.
/** * Iterate over the specified collection applying the specified Functions to each element to calculate * a key and value, and return the results in the specified Map instance. */
public static <T, K, V, R extends Map<K, V>> R toMap( Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, Function<? super T, ? extends V> valueFunction, R target) { return Iterate.addToMap(iterable, keyFunction, valueFunction, target); }
Iterate over the specified collection applying a specific Function to each element to calculate a key, and add the results to input Map. This method will mutate the input Map.
/** * Iterate over the specified collection applying a specific Function to each element to calculate a * key, and add the results to input Map. * This method will mutate the input Map. */
public static <T, K, V, M extends Map<K, V>> M addToMap( Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, M map) { Iterate.forEach(iterable, new MapCollectProcedure<>(map, keyFunction)); return map; }
Iterate over the specified collection applying the specified Functions to each element to calculate a key and value, and add the results to input Map. This method will mutate the input Map.
/** * Iterate over the specified collection applying the specified Functions to each element to calculate * a key and value, and add the results to input Map. * This method will mutate the input Map. */
public static <T, K, V, M extends Map<K, V>> M addToMap( Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, Function<? super T, ? extends V> valueFunction, M map) { Iterate.forEach(iterable, new MapCollectProcedure<>(map, keyFunction, valueFunction)); return map; }
Iterate over the specified collection applying the specified Functions to each element to calculate a key and values, add the results to targetMultimap and return the targetMultimap.

Example using a Java 8 lambda expression:

MutableMultimap<String, String> multimap =
     Iterate.toMultimap(integers, each -> "key:" + each, each -> Lists.mutable.of("value:" + each), FastListMultimap.newMultimap());

Example using an anonymous inner class:

MutableMultimap<String, String> multimap =
     Iterate.groupByAndCollect(integers,
         new Function<Integer, String>()
         {
             public String valueOf(Integer each)
             {
                 return "key:" + each;
             }
         }, new Function<Integer, Iterable<String>>()
         {
             public Iterable<String> valueOf(Integer each)
             {
                 return Lists.mutable.of("value:" + each);
             }
         }, FastListMultimap.newMultimap());
See Also:
/** * Iterate over the specified collection applying the specified Functions to each element to calculate * a key and values, add the results to {@code targetMultimap} and return the {@code targetMultimap}. * <p> * Example using a Java 8 lambda expression: * <pre> * MutableMultimap&lt;String, String&gt; multimap = * Iterate.<b>toMultimap</b>(integers, each -&gt; "key:" + each, each -&gt; Lists.mutable.of("value:" + each), FastListMultimap.newMultimap()); * </pre> * <p> * Example using an anonymous inner class: * <pre> * MutableMultimap&lt;String, String&gt; multimap = * Iterate.<b>groupByAndCollect</b>(integers, * new Function&lt;Integer, String&gt;() * { * public String valueOf(Integer each) * { * return "key:" + each; * } * }, new Function&lt;Integer, Iterable&lt;String&gt;&gt;() * { * public Iterable&lt;String&gt; valueOf(Integer each) * { * return Lists.mutable.of("value:" + each); * } * }, FastListMultimap.newMultimap()); * </pre> * * @see Iterate#groupBy(Iterable, Function) when only keys get transformed * @see Iterate#groupByEach(Iterable, Function) when only keys get transformed and Function returns multiple keys * @see Iterate#groupByAndCollect(Iterable, Function, Function, MutableMultimap) when both keys and values get transformed and Function returns single key and value */
public static <T, K, V, R extends MutableMultimap<K, V>> R toMultimap( Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, Function<? super T, ? extends Iterable<V>> valuesFunction, R targetMultimap) { Iterate.forEach(iterable, new MultimapKeyValuePutAllProcedure<>(targetMultimap, keyFunction, valuesFunction)); return targetMultimap; }
Return the specified collection as a sorted List.
/** * Return the specified collection as a sorted List. */
public static <T extends Comparable<? super T>> MutableList<T> toSortedList(Iterable<T> iterable) { return Iterate.toSortedList(iterable, Comparators.naturalOrder()); }
Return the specified collection as a sorted List using the specified Comparator.
/** * Return the specified collection as a sorted List using the specified Comparator. */
public static <T> MutableList<T> toSortedList(Iterable<T> iterable, Comparator<? super T> comparator) { return FastList.newList(iterable).sortThis(comparator); }
Returns the size of an iterable. In the case of Collections and RichIterables, the method size is called. All other iterables will force a complete iteration to happen, which can be unnecessarily costly.
/** * Returns the size of an iterable. * In the case of Collections and RichIterables, the method size is called. * All other iterables will force a complete iteration to happen, which can be unnecessarily costly. */
public static int sizeOf(Iterable<?> iterable) { if (iterable instanceof Collection) { return ((Collection<?>) iterable).size(); } if (iterable instanceof RichIterable) { return ((RichIterable<?>) iterable).size(); } return Iterate.count(iterable, Predicates.alwaysTrue()); }
Returns true if the iterable contains the value. In the case of Collections and RichIterables, the method contains is called. All other iterables will force a complete iteration to happen, which can be unnecessarily costly.
/** * Returns true if the iterable contains the value. * In the case of Collections and RichIterables, the method contains is called. * All other iterables will force a complete iteration to happen, which can be unnecessarily costly. */
public static boolean contains(Iterable<?> iterable, Object value) { if (iterable instanceof Collection) { return ((Collection<?>) iterable).contains(value); } if (iterable instanceof RichIterable) { return ((RichIterable<?>) iterable).contains(value); } return IterableIterate.detectIndex(iterable, Predicates.equal(value)) > -1; }
Converts the specified iterable to an array.
/** * Converts the specified iterable to an array. */
public static <T> Object[] toArray(Iterable<T> iterable) { if (iterable == null) { throw new NullPointerException(); } if (iterable instanceof Collection) { return ((Collection<T>) iterable).toArray(); } if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).toArray(); } MutableList<T> result = Lists.mutable.empty(); Iterate.addAllTo(iterable, result); return result.toArray(); }
Copies the specified iterable into the specified array.
/** * Copies the specified iterable into the specified array. */
public static <T> T[] toArray(Iterable<? extends T> iterable, T[] target) { if (iterable instanceof Collection) { return ((Collection<T>) iterable).toArray(target); } if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).toArray(target); } MutableList<T> result = Lists.mutable.empty(); Iterate.addAllTo(iterable, result); return result.toArray(target); }
See Also:
/** * @see RichIterable#groupBy(Function) * @see Iterate#groupByEach(Iterable, Function) when function returns multiple keys * @see Iterate#groupByAndCollect(Iterable, Function, Function, MutableMultimap) when both keys and values get transformed * @see Iterate#toMultimap(Iterable, Function, Function, MutableMultimap) when both keys and values get transformed and Function returns multiple values */
public static <T, V> MutableMultimap<V, T> groupBy( Iterable<T> iterable, Function<? super T, ? extends V> function) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).groupBy(function); } if (iterable instanceof ArrayList) { return ArrayListIterate.groupBy((ArrayList<T>) iterable, function); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.groupBy((List<T>) iterable, function); } if (iterable instanceof Collection) { return IterableIterate.groupBy(iterable, function, FastListMultimap.newMultimap()); } if (iterable != null) { return IterableIterate.groupBy(iterable, function); } throw new IllegalArgumentException("Cannot perform a groupBy on null"); }
See Also:
/** * @see RichIterable#groupBy(Function, MutableMultimap) * @see Iterate#groupByEach(Iterable, Function, MutableMultimap) when function returns multiple keys * @see Iterate#groupByAndCollect(Iterable, Function, Function, MutableMultimap) when both keys and values get transformed * @see Iterate#toMultimap(Iterable, Function, Function, MutableMultimap) when both keys and values get transformed and Function returns multiple values */
public static <T, V, R extends MutableMultimap<V, T>> R groupBy( Iterable<T> iterable, Function<? super T, ? extends V> function, R targetMultimap) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).groupBy(function, targetMultimap); } if (iterable instanceof ArrayList) { return ArrayListIterate.groupBy((ArrayList<T>) iterable, function, targetMultimap); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.groupBy((List<T>) iterable, function, targetMultimap); } if (iterable != null) { return IterableIterate.groupBy(iterable, function, targetMultimap); } throw new IllegalArgumentException("Cannot perform a groupBy on null"); }
See Also:
  • aggregateInPlaceBy.aggregateInPlaceBy(Function, Function0, Procedure2)
/** * @see RichIterable#aggregateInPlaceBy(Function, Function0, Procedure2) */
public static <T, K, V> MutableMap<K, V> aggregateInPlaceBy( Iterable<T> iterable, Function<? super T, ? extends K> groupBy, Function0<? extends V> zeroValueFactory, Procedure2<? super V, ? super T> mutatingAggregator) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).aggregateInPlaceBy(groupBy, zeroValueFactory, mutatingAggregator); } if (iterable instanceof ArrayList) { return ArrayListIterate.aggregateInPlaceBy((ArrayList<T>) iterable, groupBy, zeroValueFactory, mutatingAggregator); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.aggregateInPlaceBy((List<T>) iterable, groupBy, zeroValueFactory, mutatingAggregator); } if (iterable != null) { return IterableIterate.aggregateInPlaceBy(iterable, groupBy, zeroValueFactory, mutatingAggregator); } throw new IllegalArgumentException("Cannot perform an aggregateInPlaceBy on null"); }
See Also:
  • aggregateBy.aggregateBy(Function, Function0, Function2)
/** * @see RichIterable#aggregateBy(Function, Function0, Function2) */
public static <T, K, V> MutableMap<K, V> aggregateBy( Iterable<T> iterable, Function<? super T, ? extends K> groupBy, Function0<? extends V> zeroValueFactory, Function2<? super V, ? super T, ? extends V> nonMutatingAggregator) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).aggregateBy(groupBy, zeroValueFactory, nonMutatingAggregator); } if (iterable instanceof ArrayList) { return ArrayListIterate.aggregateBy((ArrayList<T>) iterable, groupBy, zeroValueFactory, nonMutatingAggregator); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.aggregateBy((List<T>) iterable, groupBy, zeroValueFactory, nonMutatingAggregator); } if (iterable != null) { return IterableIterate.aggregateBy(iterable, groupBy, zeroValueFactory, nonMutatingAggregator); } throw new IllegalArgumentException("Cannot perform an aggregateBy on null"); }
See Also:
/** * @see RichIterable#groupByEach(Function) * @see Iterate#groupBy(Iterable, Function) when function returns single key * @see Iterate#groupByAndCollect(Iterable, Function, Function, MutableMultimap) when both keys and values get transformed * @see Iterate#toMultimap(Iterable, Function, Function, MutableMultimap) when both keys and values get transformed and Function returns multiple values */
public static <T, V> MutableMultimap<V, T> groupByEach( Iterable<T> iterable, Function<? super T, ? extends Iterable<V>> function) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).groupByEach(function); } if (iterable instanceof ArrayList) { return ArrayListIterate.groupByEach((ArrayList<T>) iterable, function); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.groupByEach((List<T>) iterable, function); } if (iterable instanceof Collection) { return IterableIterate.groupByEach(iterable, function, FastListMultimap.newMultimap()); } if (iterable != null) { return IterableIterate.groupByEach(iterable, function); } throw new IllegalArgumentException("Cannot perform a groupByEach on null"); }
See Also:
/** * @see RichIterable#groupByEach(Function, MutableMultimap) * @see Iterate#groupBy(Iterable, Function, MutableMultimap) when function returns single key * @see Iterate#groupByAndCollect(Iterable, Function, Function, MutableMultimap) when both keys and values get transformed * @see Iterate#toMultimap(Iterable, Function, Function, MutableMultimap) when both keys and values get transformed and Function returns multiple values */
public static <T, V, R extends MutableMultimap<V, T>> R groupByEach( Iterable<T> iterable, Function<? super T, ? extends Iterable<V>> function, R targetCollection) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).groupByEach(function, targetCollection); } if (iterable instanceof ArrayList) { return ArrayListIterate.groupByEach((ArrayList<T>) iterable, function, targetCollection); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.groupByEach((List<T>) iterable, function, targetCollection); } if (iterable != null) { return IterableIterate.groupByEach(iterable, function, targetCollection); } throw new IllegalArgumentException("Cannot perform a groupByEach on null"); }
Iterate over the specified collection applying the specified Functions to each element to calculate a key and value, add the results to targetMultimap and return the targetMultimap.

Example using a Java 8 lambda expression:

MutableMultimap<String, String> multimap =
     Iterate.groupByAndCollect(integers, each -> "key:" + each, each -> "value:" + each, FastListMultimap.newMultimap());

Example using an anonymous inner class:

MutableMultimap<String, String> multimap =
     Iterate.groupByAndCollect(integers,
         new Function<Integer, String>()
         {
             public String valueOf(Integer each)
             {
                 return "key:" + each;
             }
         }, new Function<Integer, String>()
         {
             public String valueOf(Integer each)
             {
                 return "value:" + each;
             }
         }, FastListMultimap.newMultimap());
See Also:
/** * Iterate over the specified collection applying the specified Functions to each element to calculate * a key and value, add the results to {@code targetMultimap} and return the {@code targetMultimap}. * <p> * Example using a Java 8 lambda expression: * <pre> * MutableMultimap&lt;String, String&gt; multimap = * Iterate.<b>groupByAndCollect</b>(integers, each -&gt; "key:" + each, each -&gt; "value:" + each, FastListMultimap.newMultimap()); * </pre> * <p> * Example using an anonymous inner class: * <pre> * MutableMultimap&lt;String, String&gt; multimap = * Iterate.<b>groupByAndCollect</b>(integers, * new Function&lt;Integer, String&gt;() * { * public String valueOf(Integer each) * { * return "key:" + each; * } * }, new Function&lt;Integer, String&gt;() * { * public String valueOf(Integer each) * { * return "value:" + each; * } * }, FastListMultimap.newMultimap()); * </pre> * * @see Iterate#groupBy(Iterable, Function) when only keys get transformed * @see Iterate#groupByEach(Iterable, Function) when function returns multiple keys * @see Iterate#toMultimap(Iterable, Function, Function, MutableMultimap) when both keys and values get transformed and Function returns multiple values */
public static <T, K, V, R extends MutableMultimap<K, V>> R groupByAndCollect( Iterable<T> iterable, Function<? super T, ? extends K> groupByFunction, Function<? super T, ? extends V> valueFunction, R targetMultimap) { Iterate.forEach(iterable, new MultimapKeyValuePutProcedure<>(targetMultimap, groupByFunction, valueFunction)); return targetMultimap; }
See Also:
  • groupByUniqueKey.groupByUniqueKey(Function)
/** * @see RichIterable#groupByUniqueKey(Function) */
public static <V, T> MutableMap<V, T> groupByUniqueKey( Iterable<T> iterable, Function<? super T, ? extends V> function) { if (iterable instanceof List) { return ListIterate.groupByUniqueKey((List<T>) iterable, function); } if (iterable != null) { return IterableIterate.groupByUniqueKey(iterable, function); } throw new IllegalArgumentException("Cannot perform a groupByUniqueKey on null"); }
See Also:
  • groupByUniqueKey.groupByUniqueKey(Function, MutableMapIterable)
/** * @see RichIterable#groupByUniqueKey(Function, MutableMapIterable) */
public static <V, T, R extends MutableMapIterable<V, T>> R groupByUniqueKey( Iterable<T> iterable, Function<? super T, ? extends V> function, R target) { if (iterable instanceof List) { return ListIterate.groupByUniqueKey((List<T>) iterable, function, target); } if (iterable != null) { return IterableIterate.groupByUniqueKey(iterable, function, target); } throw new IllegalArgumentException("Cannot perform a groupByUniqueKey on null"); }
See Also:
  • min.min(Comparator)
/** * @see RichIterable#min(Comparator) */
public static <T> T min(Iterable<T> iterable, Comparator<? super T> comparator) { MinComparatorProcedure<T> procedure = new MinComparatorProcedure<>(comparator); Iterate.forEach(iterable, procedure); return procedure.getResult(); }
See Also:
  • max.max(Comparator)
/** * @see RichIterable#max(Comparator) */
public static <T> T max(Iterable<T> iterable, Comparator<? super T> comparator) { MaxComparatorProcedure<T> procedure = new MaxComparatorProcedure<>(comparator); Iterate.forEach(iterable, procedure); return procedure.getResult(); }
See Also:
  • min.min()
/** * @see RichIterable#min() */
public static <T> T min(Iterable<T> iterable) { return Iterate.min(iterable, Comparators.naturalOrder()); }
See Also:
  • max.max()
/** * @see RichIterable#max() */
public static <T> T max(Iterable<T> iterable) { return Iterate.max(iterable, Comparators.naturalOrder()); } public static <T> T getOnly(Iterable<T> iterable) { if (iterable != null) { return IterableIterate.getOnly(iterable); } throw new IllegalArgumentException("Cannot perform getOnly on null"); }
See Also:
  • zip.zip(Iterable)
/** * @see RichIterable#zip(Iterable) */
public static <X, Y> Collection<Pair<X, Y>> zip(Iterable<X> xs, Iterable<Y> ys) { if (xs instanceof MutableCollection) { return ((MutableCollection<X>) xs).zip(ys); } if (xs instanceof ArrayList) { return ArrayListIterate.zip((ArrayList<X>) xs, ys); } if (xs instanceof RandomAccess) { return RandomAccessListIterate.zip((List<X>) xs, ys); } if (xs != null) { return IterableIterate.zip(xs, ys); } throw new IllegalArgumentException("Cannot perform a zip on null"); }
See Also:
  • zip.zip(Iterable, Collection)
/** * @see RichIterable#zip(Iterable, Collection) */
public static <X, Y, R extends Collection<Pair<X, Y>>> R zip( Iterable<X> xs, Iterable<Y> ys, R targetCollection) { if (xs instanceof RichIterable) { return ((RichIterable<X>) xs).zip(ys, targetCollection); } if (xs instanceof ArrayList) { return ArrayListIterate.zip((ArrayList<X>) xs, ys, targetCollection); } if (xs instanceof RandomAccess) { return RandomAccessListIterate.zip((List<X>) xs, ys, targetCollection); } if (xs != null) { return IterableIterate.zip(xs, ys, targetCollection); } throw new IllegalArgumentException("Cannot perform a zip on null"); }
See Also:
  • zipWithIndex.zipWithIndex()
/** * @see RichIterable#zipWithIndex() */
public static <T> Collection<Pair<T, Integer>> zipWithIndex(Iterable<T> iterable) { if (iterable instanceof MutableCollection) { return ((MutableCollection<T>) iterable).zipWithIndex(); } if (iterable instanceof ArrayList) { return ArrayListIterate.zipWithIndex((ArrayList<T>) iterable); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.zipWithIndex((List<T>) iterable); } if (iterable instanceof Collection) { return IterableIterate.zipWithIndex( iterable, DefaultSpeciesNewStrategy.INSTANCE.speciesNew( (Collection<T>) iterable, ((Collection<T>) iterable).size())); } if (iterable != null) { return IterableIterate.zipWithIndex(iterable); } throw new IllegalArgumentException("Cannot perform a zipWithIndex on null"); }
See Also:
  • zipWithIndex.zipWithIndex(Collection)
/** * @see RichIterable#zipWithIndex(Collection) */
public static <T, R extends Collection<Pair<T, Integer>>> R zipWithIndex( Iterable<T> iterable, R targetCollection) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).zipWithIndex(targetCollection); } if (iterable instanceof ArrayList) { return ArrayListIterate.zipWithIndex((ArrayList<T>) iterable, targetCollection); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.zipWithIndex((List<T>) iterable, targetCollection); } if (iterable != null) { return IterableIterate.zipWithIndex(iterable, targetCollection); } throw new IllegalArgumentException("Cannot perform a zipWithIndex on null"); }
See Also:
  • chunk.chunk(int)
/** * @see RichIterable#chunk(int) */
public static <T> RichIterable<RichIterable<T>> chunk(Iterable<T> iterable, int size) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).chunk(size); } if (iterable != null) { return IterableIterate.chunk(iterable, size); } throw new IllegalArgumentException("Cannot perform a chunk on null"); }
See Also:
  • makeString.makeString()
/** * @see RichIterable#makeString() */
public static <T> String makeString(Iterable<T> iterable) { return Iterate.makeString(iterable, ", "); }
See Also:
  • makeString.makeString(String)
/** * @see RichIterable#makeString(String) */
public static <T> String makeString(Iterable<T> iterable, String separator) { return Iterate.makeString(iterable, "", separator, ""); }
See Also:
  • makeString.makeString(String, String, String)
/** * @see RichIterable#makeString(String, String, String) */
public static <T> String makeString(Iterable<T> iterable, String start, String separator, String end) { Appendable stringBuilder = new StringBuilder(); Iterate.appendString(iterable, stringBuilder, start, separator, end); return stringBuilder.toString(); }
See Also:
  • appendString.appendString(Appendable)
/** * @see RichIterable#appendString(Appendable) */
public static <T> void appendString(Iterable<T> iterable, Appendable appendable) { Iterate.appendString(iterable, appendable, ", "); }
See Also:
  • appendString.appendString(Appendable, String)
/** * @see RichIterable#appendString(Appendable, String) */
public static <T> void appendString(Iterable<T> iterable, Appendable appendable, String separator) { Iterate.appendString(iterable, appendable, "", separator, ""); }
See Also:
  • appendString.appendString(Appendable, String, String, String)
/** * @see RichIterable#appendString(Appendable, String, String, String) */
public static <T> void appendString( Iterable<T> iterable, Appendable appendable, String start, String separator, String end) { if (iterable instanceof MutableCollection) { ((MutableCollection<T>) iterable).appendString(appendable, start, separator, end); } else if (iterable instanceof RandomAccess) { RandomAccessListIterate.appendString((List<T>) iterable, appendable, start, separator, end); } else if (iterable != null) { IterableIterate.appendString(iterable, appendable, start, separator, end); } else { throw new IllegalArgumentException("Cannot perform an appendString on null"); } }
Returns the maximum element out of the iterable based on the natural order of the attribute returned by the function.
/** * Returns the maximum element out of the iterable based on the natural order of the attribute returned by the function. */
public static <T, V extends Comparable<? super V>> T maxBy(Iterable<T> iterable, Function<? super T, ? extends V> function) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).maxBy(function); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.maxBy((List<T>) iterable, function); } if (iterable != null) { return IterableIterate.maxBy(iterable, function); } throw new IllegalArgumentException("Cannot perform a maxBy on null"); }
Returns the minimum element out of the iterable based on the natural order of the attribute returned by the function.
/** * Returns the minimum element out of the iterable based on the natural order of the attribute returned by the function. */
public static <T, V extends Comparable<? super V>> T minBy(Iterable<T> iterable, Function<? super T, ? extends V> function) { if (iterable instanceof RichIterable) { return ((RichIterable<T>) iterable).minBy(function); } if (iterable instanceof RandomAccess) { return RandomAccessListIterate.minBy((List<T>) iterable, function); } if (iterable != null) { return IterableIterate.minBy(iterable, function); } throw new IllegalArgumentException("Cannot perform a minBy on null"); }
Flip the keys and values of the multimap.
/** * Flip the keys and values of the multimap. */
public static <K, V> HashBagMultimap<V, K> flip(BagMultimap<K, V> bagMultimap) { HashBagMultimap<V, K> result = new HashBagMultimap<>(); bagMultimap.forEachKeyMultiValues((key, values) -> Iterate.forEach(values, value -> result.put(value, key))); return result; }
Flip the keys and values of the multimap.
/** * Flip the keys and values of the multimap. */
public static <K, V> HashBagMultimap<V, K> flip(ListMultimap<K, V> listMultimap) { HashBagMultimap<V, K> result = new HashBagMultimap<>(); listMultimap.forEachKeyMultiValues((key, values) -> Iterate.forEach(values, value -> result.put(value, key))); return result; }
Flip the keys and values of the multimap.
/** * Flip the keys and values of the multimap. */
public static <K, V> UnifiedSetMultimap<V, K> flip(SetMultimap<K, V> setMultimap) { UnifiedSetMultimap<V, K> result = new UnifiedSetMultimap<>(); setMultimap.forEachKeyMultiValues((key, values) -> Iterate.forEach(values, value -> result.put(value, key))); return result; } }