com.google.common.collect.testing
Class MinimalIterable<E>

java.lang.Object
  extended by com.google.common.collect.testing.MinimalIterable<E>
All Implemented Interfaces:
Iterable<E>

public final class MinimalIterable<E>
extends Object
implements Iterable<E>

An implementation of Iterable which throws an exception on all invocations of the iterator() method after the first, and whose iterator is always unmodifiable.

The Iterable specification does not make it absolutely clear what should happen on a second invocation, so implementors have made various choices, including:

Because of this situation, any public method accepting an iterable should invoke the iterator method only once, and should be tested using this class. Exceptions to this rule should be clearly documented.

Note that although your APIs should be liberal in what they accept, your methods which return iterables should make every attempt to return ones of the robust variety.

This testing utility is not thread-safe.

Author:
Kevin Bourrillion

Method Summary
static
<E> MinimalIterable<E>
from(Collection<E> elements)
          Returns an iterable whose iterator returns the given elements in order.
 Iterator<E> iterator()
           
static
<E> MinimalIterable<E>
of(E... elements)
          Returns an iterable whose iterator returns the given elements in order.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

of

public static <E> MinimalIterable<E> of(E... elements)
Returns an iterable whose iterator returns the given elements in order.


from

public static <E> MinimalIterable<E> from(Collection<E> elements)
Returns an iterable whose iterator returns the given elements in order. The elements are copied out of the source collection at the time this method is called.


iterator

public Iterator<E> iterator()
Specified by:
iterator in interface Iterable<E>


Copyright © 2010-2012. All Rights Reserved.