Interface Iterable<T>

  • All Superinterfaces:
    Iterable<T>
    All Known Subinterfaces:
    StringList
    All Known Implementing Classes:
    CollectionStore

    public interface Iterable<T>
    extends Iterable<T>
    Utility class to allow use of Iterable feature in JDK 1.5+
    • Method Detail

      • iterator

        Iterator<T> iterator()
        Returns an iterator over a set of elements of type T.
        Specified by:
        iterator in interface Iterable<T>
        Returns:
        an Iterator.