public class LazyIntIterableAdapter extends AbstractLazyIntIterable
| Constructor and Description |
|---|
LazyIntIterableAdapter(org.eclipse.collections.api.IntIterable delegate) |
| 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) |
double |
average() |
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 |
each(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) |
org.eclipse.collections.api.iterator.IntIterator |
intIterator() |
boolean |
isEmpty() |
String |
makeString() |
String |
makeString(String separator) |
String |
makeString(String start,
String separator,
String end) |
int |
max() |
int |
maxIfEmpty(int defaultValue) |
double |
median() |
int |
min() |
int |
minIfEmpty(int defaultValue) |
boolean |
noneSatisfy(org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate) |
boolean |
notEmpty() |
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() |
asLazy, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, forEach, reject, selectpublic LazyIntIterableAdapter(org.eclipse.collections.api.IntIterable delegate)
public org.eclipse.collections.api.iterator.IntIterator intIterator()
public void each(org.eclipse.collections.api.block.procedure.primitive.IntProcedure procedure)
public int size()
size in interface org.eclipse.collections.api.PrimitiveIterablesize in class AbstractLazyIntIterablepublic boolean isEmpty()
isEmpty in interface org.eclipse.collections.api.PrimitiveIterableisEmpty in class AbstractLazyIntIterablepublic boolean notEmpty()
notEmpty in interface org.eclipse.collections.api.PrimitiveIterablenotEmpty in class AbstractLazyIntIterablepublic int count(org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate)
count in interface org.eclipse.collections.api.IntIterablecount in class AbstractLazyIntIterablepublic boolean anySatisfy(org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate)
anySatisfy in interface org.eclipse.collections.api.IntIterableanySatisfy in class AbstractLazyIntIterablepublic boolean allSatisfy(org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate)
allSatisfy in interface org.eclipse.collections.api.IntIterableallSatisfy in class AbstractLazyIntIterablepublic boolean noneSatisfy(org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate)
noneSatisfy in interface org.eclipse.collections.api.IntIterablenoneSatisfy in class AbstractLazyIntIterablepublic int detectIfNone(org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate,
int ifNone)
detectIfNone in interface org.eclipse.collections.api.IntIterabledetectIfNone in class AbstractLazyIntIterablepublic long sum()
sum in interface org.eclipse.collections.api.IntIterablesum in class AbstractLazyIntIterablepublic int max()
max in interface org.eclipse.collections.api.IntIterablemax in class AbstractLazyIntIterablepublic int min()
min in interface org.eclipse.collections.api.IntIterablemin in class AbstractLazyIntIterablepublic int minIfEmpty(int defaultValue)
minIfEmpty in interface org.eclipse.collections.api.IntIterableminIfEmpty in class AbstractLazyIntIterablepublic int maxIfEmpty(int defaultValue)
maxIfEmpty in interface org.eclipse.collections.api.IntIterablemaxIfEmpty in class AbstractLazyIntIterablepublic double average()
average in interface org.eclipse.collections.api.IntIterableaverage in class AbstractLazyIntIterablepublic double median()
median in interface org.eclipse.collections.api.IntIterablemedian in class AbstractLazyIntIterablepublic int[] toSortedArray()
toSortedArray in interface org.eclipse.collections.api.IntIterabletoSortedArray in class AbstractLazyIntIterablepublic org.eclipse.collections.api.list.primitive.MutableIntList toSortedList()
toSortedList in interface org.eclipse.collections.api.IntIterabletoSortedList in class AbstractLazyIntIterablepublic int[] toArray()
toArray in interface org.eclipse.collections.api.IntIterabletoArray in class AbstractLazyIntIterablepublic String toString()
toString in interface org.eclipse.collections.api.PrimitiveIterabletoString in class AbstractLazyIntIterablepublic String makeString()
makeString in interface org.eclipse.collections.api.PrimitiveIterablemakeString in class AbstractLazyIntIterablepublic String makeString(String separator)
makeString in interface org.eclipse.collections.api.PrimitiveIterablemakeString in class AbstractLazyIntIterablepublic String makeString(String start, String separator, String end)
makeString in interface org.eclipse.collections.api.PrimitiveIterablemakeString in class AbstractLazyIntIterablepublic void appendString(Appendable appendable)
appendString in interface org.eclipse.collections.api.PrimitiveIterableappendString in class AbstractLazyIntIterablepublic void appendString(Appendable appendable, String separator)
appendString in interface org.eclipse.collections.api.PrimitiveIterableappendString in class AbstractLazyIntIterablepublic void appendString(Appendable appendable, String start, String separator, String end)
appendString in interface org.eclipse.collections.api.PrimitiveIterableappendString in class AbstractLazyIntIterablepublic boolean contains(int value)
contains in interface org.eclipse.collections.api.IntIterablecontains in class AbstractLazyIntIterablepublic boolean containsAll(int... source)
containsAll in interface org.eclipse.collections.api.IntIterablecontainsAll in class AbstractLazyIntIterablepublic boolean containsAll(org.eclipse.collections.api.IntIterable source)
containsAll in interface org.eclipse.collections.api.IntIterablecontainsAll in class AbstractLazyIntIterablepublic org.eclipse.collections.api.list.primitive.MutableIntList toList()
toList in interface org.eclipse.collections.api.IntIterabletoList in class AbstractLazyIntIterablepublic org.eclipse.collections.api.set.primitive.MutableIntSet toSet()
toSet in interface org.eclipse.collections.api.IntIterabletoSet in class AbstractLazyIntIterablepublic org.eclipse.collections.api.bag.primitive.MutableIntBag toBag()
toBag in interface org.eclipse.collections.api.IntIterabletoBag in class AbstractLazyIntIterablepublic <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.IntIterableinjectInto in class AbstractLazyIntIterableCopyright © 2004–2017. All rights reserved.