Class AbstractIntIterable
- java.lang.Object
-
- org.eclipse.collections.impl.primitive.AbstractIntIterable
-
- All Implemented Interfaces:
IntIterable,PrimitiveIterable
- Direct Known Subclasses:
AbstractIntSet,AbstractMutableIntValuesMap,CodePointAdapter,CodePointList,IntArrayList,IntHashBag
public abstract class AbstractIntIterable extends java.lang.Object implements IntIterable
This file was automatically generated from template file abstractPrimitiveIterable.stg.- Since:
- 6.0
-
-
Constructor Summary
Constructors Constructor Description AbstractIntIterable()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LazyIntIterableasLazy()Returns a LazyIntIterable adapter wrapping the source IntIterable.doubleaverage()intmaxIfEmpty(int defaultValue)doublemedian()intminIfEmpty(int defaultValue)MutableIntBagtoBag()Converts the IntIterable to a new MutableIntBag.MutableIntListtoList()Converts the IntIterable to a new MutableIntList.MutableIntSettoSet()Converts the IntIterable to a new MutableIntSet.int[]toSortedArray()MutableIntListtoSortedList()java.lang.StringtoString()Returns a string with the elements of this iterable separated by commas with spaces and enclosed in square brackets.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.eclipse.collections.api.IntIterable
allSatisfy, anySatisfy, averageIfEmpty, chunk, collect, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, containsAny, containsAny, containsNone, containsNone, count, detectIfNone, each, flatCollect, forEach, injectInto, injectIntoBoolean, injectIntoByte, injectIntoChar, injectIntoDouble, injectIntoFloat, injectIntoInt, injectIntoLong, injectIntoShort, intIterator, max, medianIfEmpty, min, noneSatisfy, reduce, reduceIfEmpty, reject, reject, select, select, sum, summaryStatistics, tap, toArray, toArray, toSortedList, toSortedListBy, toSortedListBy
-
Methods inherited from interface org.eclipse.collections.api.PrimitiveIterable
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size
-
-
-
-
Method Detail
-
toString
public java.lang.String toString()
Description copied from interface:PrimitiveIterableReturns a string with the elements of this iterable separated by commas with spaces and enclosed in square brackets.Assert.assertEquals("[]", IntLists.mutable.empty().toString()); Assert.assertEquals("[1]", IntLists.mutable.with(1).toString()); Assert.assertEquals("[1, 2, 3]", IntLists.mutable.with(1, 2, 3).toString());- Specified by:
toStringin interfacePrimitiveIterable- Overrides:
toStringin classjava.lang.Object- Returns:
- a string representation of this PrimitiveIterable
- See Also:
AbstractCollection.toString()
-
minIfEmpty
public int minIfEmpty(int defaultValue)
- Specified by:
minIfEmptyin interfaceIntIterable
-
maxIfEmpty
public int maxIfEmpty(int defaultValue)
- Specified by:
maxIfEmptyin interfaceIntIterable
-
average
public double average()
- Specified by:
averagein interfaceIntIterable
-
median
public double median()
- Specified by:
medianin interfaceIntIterable
-
toSortedArray
public int[] toSortedArray()
- Specified by:
toSortedArrayin interfaceIntIterable
-
toSortedList
public MutableIntList toSortedList()
- Specified by:
toSortedListin interfaceIntIterable
-
asLazy
public LazyIntIterable asLazy()
Description copied from interface:IntIterableReturns a LazyIntIterable adapter wrapping the source IntIterable.- Specified by:
asLazyin interfaceIntIterable
-
toList
public MutableIntList toList()
Description copied from interface:IntIterableConverts the IntIterable to a new MutableIntList.- Specified by:
toListin interfaceIntIterable
-
toSet
public MutableIntSet toSet()
Description copied from interface:IntIterableConverts the IntIterable to a new MutableIntSet.- Specified by:
toSetin interfaceIntIterable
-
toBag
public MutableIntBag toBag()
Description copied from interface:IntIterableConverts the IntIterable to a new MutableIntBag.- Specified by:
toBagin interfaceIntIterable
-
-