Interface Iterable<E>
-
- All Superinterfaces:
java.lang.Iterable<E>
,Traversable<E>
- All Known Subinterfaces:
IndexedList<E>
,LinkedList<E>
,List<E>
,Map<K,V>
,Set<E>
,SortedMap<K,V>
,SortedSet<E>
- All Known Implementing Classes:
AbstractIndexedList
,AbstractIterable
,AbstractLinkedList
,AbstractList
,AbstractMap
,AbstractSet
,AbstractSortedMap
,AbstractSortedSet
,ArrayList
,Cons
,ConsList
,DerivedKeyHashMap
,HashMap
,HashSet
,ListMap
,ListMap.Node
,MappedIterable
,Nil
,TreeMap
,TreeSet
,Vector
public interface Iterable<E> extends Traversable<E>, java.lang.Iterable<E>
Iterable
defines collections that can be accessed via anIterator
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull java.util.Iterator<E>
iterator()
-
Methods inherited from interface com.github.andrewoma.dexx.collection.Traversable
forEach, isEmpty, makeString, makeString, size, to, toArray, toArray, toIndexedList, toSet, toSortedSet
-
-