Class ReverseShortIterable
java.lang.Object
org.eclipse.collections.impl.lazy.primitive.AbstractLazyShortIterable
org.eclipse.collections.impl.lazy.primitive.ReverseShortIterable
- All Implemented Interfaces:
LazyShortIterable
,PrimitiveIterable
,ShortIterable
public class ReverseShortIterable extends AbstractLazyShortIterable
This file was automatically generated from template file reversePrimitiveIterable.stg.
- Since:
- 5.0.
- See Also:
ReverseIterable
-
Constructor Summary
Constructors Constructor Description ReverseShortIterable(ShortList newAdapted)
-
Method Summary
Modifier and Type Method Description static ReverseShortIterable
adapt(ShortList shortList)
LazyShortIterable
asLazy()
Returns a LazyShortIterable adapter wrapping the source ShortIterable.double
average()
boolean
contains(short value)
Returns true if the value is contained in the ShortIterable, and false if it is not.boolean
containsAll(short... source)
Returns true if the all of the values specified in the source array are contained in the ShortIterable, and false if they are not.boolean
containsAll(ShortIterable source)
Returns true if the all of the values specified in the source ShortIterable are contained in the ShortIterable, and false if they are not.void
each(ShortProcedure procedure)
A synonym for forEach.boolean
isEmpty()
Returns true if this iterable has zero items.short
max()
short
maxIfEmpty(short defaultValue)
double
median()
short
min()
short
minIfEmpty(short defaultValue)
boolean
notEmpty()
The English equivalent of !this.isEmpty()ShortIterator
shortIterator()
Returns a primitive iterator that can be used to iterate over the ShortIterable in an imperative style.int
size()
Returns the number of items in this iterable.long
sum()
short[]
toArray()
Converts the ShortIterable to a primitive short array.MutableShortBag
toBag()
Converts the ShortIterable to a new MutableShortBag.MutableShortList
toList()
Converts the ShortIterable to a new MutableShortList.MutableShortSet
toSet()
Converts the ShortIterable to a new MutableShortSet.short[]
toSortedArray()
Methods inherited from class org.eclipse.collections.impl.lazy.primitive.AbstractLazyShortIterable
allSatisfy, anySatisfy, appendString, appendString, appendString, chunk, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, count, detectIfNone, flatCollect, forEach, injectInto, makeString, makeString, makeString, noneSatisfy, reject, select, tap, toSortedList, toString
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.eclipse.collections.api.ShortIterable
averageIfEmpty, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, flatCollect, medianIfEmpty, reduce, reduceIfEmpty, reject, select, summaryStatistics, toArray
-
Constructor Details
-
Method Details
-
adapt
-
shortIterator
Description copied from interface:ShortIterable
Returns a primitive iterator that can be used to iterate over the ShortIterable in an imperative style. -
each
Description copied from interface:ShortIterable
A synonym for forEach.- Since:
- 7.0.
-
sum
public long sum()- Specified by:
sum
in interfaceShortIterable
- Overrides:
sum
in classAbstractLazyShortIterable
-
max
public short max()- Specified by:
max
in interfaceShortIterable
- Overrides:
max
in classAbstractLazyShortIterable
-
min
public short min()- Specified by:
min
in interfaceShortIterable
- Overrides:
min
in classAbstractLazyShortIterable
-
minIfEmpty
public short minIfEmpty(short defaultValue)- Specified by:
minIfEmpty
in interfaceShortIterable
- Overrides:
minIfEmpty
in classAbstractLazyShortIterable
-
maxIfEmpty
public short maxIfEmpty(short defaultValue)- Specified by:
maxIfEmpty
in interfaceShortIterable
- Overrides:
maxIfEmpty
in classAbstractLazyShortIterable
-
average
public double average()- Specified by:
average
in interfaceShortIterable
- Overrides:
average
in classAbstractLazyShortIterable
-
median
public double median()- Specified by:
median
in interfaceShortIterable
- Overrides:
median
in classAbstractLazyShortIterable
-
toSortedArray
public short[] toSortedArray()- Specified by:
toSortedArray
in interfaceShortIterable
- Overrides:
toSortedArray
in classAbstractLazyShortIterable
-
toArray
public short[] toArray()Description copied from interface:ShortIterable
Converts the ShortIterable to a primitive short array.- Specified by:
toArray
in interfaceShortIterable
- Overrides:
toArray
in classAbstractLazyShortIterable
-
contains
public boolean contains(short value)Description copied from interface:ShortIterable
Returns true if the value is contained in the ShortIterable, and false if it is not.- Specified by:
contains
in interfaceShortIterable
- Overrides:
contains
in classAbstractLazyShortIterable
-
containsAll
public boolean containsAll(short... source)Description copied from interface:ShortIterable
Returns true if the all of the values specified in the source array are contained in the ShortIterable, and false if they are not.- Specified by:
containsAll
in interfaceShortIterable
- Overrides:
containsAll
in classAbstractLazyShortIterable
-
containsAll
Description copied from interface:ShortIterable
Returns true if the all of the values specified in the source ShortIterable are contained in the ShortIterable, and false if they are not.- Specified by:
containsAll
in interfaceShortIterable
- Overrides:
containsAll
in classAbstractLazyShortIterable
-
size
public int size()Description copied from interface:PrimitiveIterable
Returns the number of items in this iterable.- Specified by:
size
in interfacePrimitiveIterable
- Overrides:
size
in classAbstractLazyShortIterable
-
isEmpty
public boolean isEmpty()Description copied from interface:PrimitiveIterable
Returns true if this iterable has zero items.- Specified by:
isEmpty
in interfacePrimitiveIterable
- Overrides:
isEmpty
in classAbstractLazyShortIterable
-
notEmpty
public boolean notEmpty()Description copied from interface:PrimitiveIterable
The English equivalent of !this.isEmpty()- Specified by:
notEmpty
in interfacePrimitiveIterable
- Overrides:
notEmpty
in classAbstractLazyShortIterable
-
toList
Description copied from interface:ShortIterable
Converts the ShortIterable to a new MutableShortList.- Specified by:
toList
in interfaceShortIterable
- Overrides:
toList
in classAbstractLazyShortIterable
-
toSet
Description copied from interface:ShortIterable
Converts the ShortIterable to a new MutableShortSet.- Specified by:
toSet
in interfaceShortIterable
- Overrides:
toSet
in classAbstractLazyShortIterable
-
toBag
Description copied from interface:ShortIterable
Converts the ShortIterable to a new MutableShortBag.- Specified by:
toBag
in interfaceShortIterable
- Overrides:
toBag
in classAbstractLazyShortIterable
-
asLazy
Description copied from interface:ShortIterable
Returns a LazyShortIterable adapter wrapping the source ShortIterable.- Specified by:
asLazy
in interfaceShortIterable
- Overrides:
asLazy
in classAbstractLazyShortIterable
-