public abstract class AbstractLazyIntIterable extends Object implements org.eclipse.collections.api.LazyIntIterable
| Constructor and Description |
|---|
AbstractLazyIntIterable() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
allSatisfy(org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate) |
boolean |
anySatisfy(org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate) |
void |
appendString(Appendable appendable) |
void |
appendString(Appendable appendable,
String separator) |
void |
appendString(Appendable appendable,
String start,
String separator,
String end) |
org.eclipse.collections.api.LazyIntIterable |
asLazy() |
double |
average() |
<V> org.eclipse.collections.api.LazyIterable<V> |
collect(org.eclipse.collections.api.block.function.primitive.IntToObjectFunction<? extends V> function) |
org.eclipse.collections.api.LazyBooleanIterable |
collectBoolean(org.eclipse.collections.api.block.function.primitive.IntToBooleanFunction function) |
org.eclipse.collections.api.LazyByteIterable |
collectByte(org.eclipse.collections.api.block.function.primitive.IntToByteFunction function) |
org.eclipse.collections.api.LazyCharIterable |
collectChar(org.eclipse.collections.api.block.function.primitive.IntToCharFunction function) |
org.eclipse.collections.api.LazyDoubleIterable |
collectDouble(org.eclipse.collections.api.block.function.primitive.IntToDoubleFunction function) |
org.eclipse.collections.api.LazyFloatIterable |
collectFloat(org.eclipse.collections.api.block.function.primitive.IntToFloatFunction function) |
org.eclipse.collections.api.LazyIntIterable |
collectInt(org.eclipse.collections.api.block.function.primitive.IntToIntFunction function) |
org.eclipse.collections.api.LazyLongIterable |
collectLong(org.eclipse.collections.api.block.function.primitive.IntToLongFunction function) |
org.eclipse.collections.api.LazyShortIterable |
collectShort(org.eclipse.collections.api.block.function.primitive.IntToShortFunction function) |
boolean |
contains(int value) |
boolean |
containsAll(int... source) |
boolean |
containsAll(org.eclipse.collections.api.IntIterable source) |
int |
count(org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate) |
int |
detectIfNone(org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate,
int ifNone) |
void |
forEach(org.eclipse.collections.api.block.procedure.primitive.IntProcedure procedure) |
<T> T |
injectInto(T injectedValue,
org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction<? super T,? extends T> function) |
boolean |
isEmpty() |
String |
makeString() |
String |
makeString(String separator) |
String |
makeString(String start,
String separator,
String end) |
int |
max() |
int |
maxIfEmpty(int ifEmpty) |
double |
median() |
int |
min() |
int |
minIfEmpty(int ifEmpty) |
boolean |
noneSatisfy(org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate) |
boolean |
notEmpty() |
org.eclipse.collections.api.LazyIntIterable |
reject(org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate) |
org.eclipse.collections.api.LazyIntIterable |
select(org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate) |
int |
size() |
long |
sum() |
int[] |
toArray() |
org.eclipse.collections.api.bag.primitive.MutableIntBag |
toBag() |
org.eclipse.collections.api.list.primitive.MutableIntList |
toList() |
org.eclipse.collections.api.set.primitive.MutableIntSet |
toSet() |
int[] |
toSortedArray() |
org.eclipse.collections.api.list.primitive.MutableIntList |
toSortedList() |
String |
toString() |
public void forEach(org.eclipse.collections.api.block.procedure.primitive.IntProcedure procedure)
forEach in interface org.eclipse.collections.api.IntIterablepublic int size()
size in interface org.eclipse.collections.api.PrimitiveIterablepublic String toString()
public boolean isEmpty()
isEmpty in interface org.eclipse.collections.api.PrimitiveIterablepublic boolean notEmpty()
notEmpty in interface org.eclipse.collections.api.PrimitiveIterablepublic String makeString()
makeString in interface org.eclipse.collections.api.PrimitiveIterablepublic String makeString(String separator)
makeString in interface org.eclipse.collections.api.PrimitiveIterablepublic String makeString(String start, String separator, String end)
makeString in interface org.eclipse.collections.api.PrimitiveIterablepublic void appendString(Appendable appendable)
appendString in interface org.eclipse.collections.api.PrimitiveIterablepublic void appendString(Appendable appendable, String separator)
appendString in interface org.eclipse.collections.api.PrimitiveIterablepublic void appendString(Appendable appendable, String start, String separator, String end)
appendString in interface org.eclipse.collections.api.PrimitiveIterablepublic boolean contains(int value)
contains in interface org.eclipse.collections.api.IntIterablepublic boolean containsAll(int... source)
containsAll in interface org.eclipse.collections.api.IntIterablepublic boolean containsAll(org.eclipse.collections.api.IntIterable source)
containsAll in interface org.eclipse.collections.api.IntIterablepublic org.eclipse.collections.api.LazyIntIterable select(org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate)
select in interface org.eclipse.collections.api.IntIterableselect in interface org.eclipse.collections.api.LazyIntIterablepublic org.eclipse.collections.api.LazyIntIterable reject(org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate)
reject in interface org.eclipse.collections.api.IntIterablereject in interface org.eclipse.collections.api.LazyIntIterablepublic <V> org.eclipse.collections.api.LazyIterable<V> collect(org.eclipse.collections.api.block.function.primitive.IntToObjectFunction<? extends V> function)
collect in interface org.eclipse.collections.api.IntIterablecollect in interface org.eclipse.collections.api.LazyIntIterablepublic org.eclipse.collections.api.LazyBooleanIterable collectBoolean(org.eclipse.collections.api.block.function.primitive.IntToBooleanFunction function)
collectBoolean in interface org.eclipse.collections.api.LazyIntIterablepublic org.eclipse.collections.api.LazyByteIterable collectByte(org.eclipse.collections.api.block.function.primitive.IntToByteFunction function)
collectByte in interface org.eclipse.collections.api.LazyIntIterablepublic org.eclipse.collections.api.LazyCharIterable collectChar(org.eclipse.collections.api.block.function.primitive.IntToCharFunction function)
collectChar in interface org.eclipse.collections.api.LazyIntIterablepublic org.eclipse.collections.api.LazyShortIterable collectShort(org.eclipse.collections.api.block.function.primitive.IntToShortFunction function)
collectShort in interface org.eclipse.collections.api.LazyIntIterablepublic org.eclipse.collections.api.LazyIntIterable collectInt(org.eclipse.collections.api.block.function.primitive.IntToIntFunction function)
collectInt in interface org.eclipse.collections.api.LazyIntIterablepublic org.eclipse.collections.api.LazyFloatIterable collectFloat(org.eclipse.collections.api.block.function.primitive.IntToFloatFunction function)
collectFloat in interface org.eclipse.collections.api.LazyIntIterablepublic org.eclipse.collections.api.LazyLongIterable collectLong(org.eclipse.collections.api.block.function.primitive.IntToLongFunction function)
collectLong in interface org.eclipse.collections.api.LazyIntIterablepublic org.eclipse.collections.api.LazyDoubleIterable collectDouble(org.eclipse.collections.api.block.function.primitive.IntToDoubleFunction function)
collectDouble in interface org.eclipse.collections.api.LazyIntIterablepublic int detectIfNone(org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate,
int ifNone)
detectIfNone in interface org.eclipse.collections.api.IntIterablepublic int count(org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate)
count in interface org.eclipse.collections.api.IntIterablepublic boolean anySatisfy(org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate)
anySatisfy in interface org.eclipse.collections.api.IntIterablepublic boolean allSatisfy(org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate)
allSatisfy in interface org.eclipse.collections.api.IntIterablepublic boolean noneSatisfy(org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate)
noneSatisfy in interface org.eclipse.collections.api.IntIterablepublic <T> T injectInto(T injectedValue,
org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction<? super T,? extends T> function)
injectInto in interface org.eclipse.collections.api.IntIterablepublic int[] toArray()
toArray in interface org.eclipse.collections.api.IntIterablepublic org.eclipse.collections.api.list.primitive.MutableIntList toList()
toList in interface org.eclipse.collections.api.IntIterablepublic org.eclipse.collections.api.set.primitive.MutableIntSet toSet()
toSet in interface org.eclipse.collections.api.IntIterablepublic org.eclipse.collections.api.bag.primitive.MutableIntBag toBag()
toBag in interface org.eclipse.collections.api.IntIterablepublic long sum()
sum in interface org.eclipse.collections.api.IntIterablepublic int max()
max in interface org.eclipse.collections.api.IntIterablepublic int maxIfEmpty(int ifEmpty)
maxIfEmpty in interface org.eclipse.collections.api.IntIterablepublic int min()
min in interface org.eclipse.collections.api.IntIterablepublic int minIfEmpty(int ifEmpty)
minIfEmpty in interface org.eclipse.collections.api.IntIterablepublic double average()
average in interface org.eclipse.collections.api.IntIterablepublic double median()
median in interface org.eclipse.collections.api.IntIterablepublic int[] toSortedArray()
toSortedArray in interface org.eclipse.collections.api.IntIterablepublic org.eclipse.collections.api.list.primitive.MutableIntList toSortedList()
toSortedList in interface org.eclipse.collections.api.IntIterablepublic org.eclipse.collections.api.LazyIntIterable asLazy()
asLazy in interface org.eclipse.collections.api.IntIterableCopyright © 2004–2017. All rights reserved.