LazyLongIterable
, LongIterable
, PrimitiveIterable
CollectBooleanToLongIterable
, CollectByteToLongIterable
, CollectCharToLongIterable
, CollectDoubleToLongIterable
, CollectFloatToLongIterable
, CollectIntToLongIterable
, CollectLongIterable
, CollectLongToLongIterable
, CollectShortToLongIterable
, LazyLongIterableAdapter
, ReverseLongIterable
, SelectLongIterable
, TapLongIterable
public abstract class AbstractLazyLongIterable extends java.lang.Object implements LazyLongIterable
Constructor | Description |
---|---|
AbstractLazyLongIterable() |
Modifier and Type | Method | Description |
---|---|---|
boolean |
allSatisfy(LongPredicate predicate) |
Returns true if all of the elements in the LongIterable return true for the
specified predicate, otherwise returns false.
|
boolean |
anySatisfy(LongPredicate predicate) |
Returns true if any of the elements in the LongIterable return true for the
specified predicate, otherwise returns false.
|
void |
appendString(java.lang.Appendable appendable) |
Prints a string representation of this collection onto the given
Appendable . |
void |
appendString(java.lang.Appendable appendable,
java.lang.String separator) |
Prints a string representation of this collection onto the given
Appendable . |
void |
appendString(java.lang.Appendable appendable,
java.lang.String start,
java.lang.String separator,
java.lang.String end) |
Prints a string representation of this collection onto the given
Appendable . |
LazyLongIterable |
asLazy() |
Returns a LazyLongIterable adapter wrapping the source LongIterable.
|
double |
average() |
|
RichIterable<LongIterable> |
chunk(int size) |
Partitions elements in fixed size chunks.
|
<V> LazyIterable<V> |
collect(LongToObjectFunction<? extends V> function) |
Returns a new collection with the results of applying the specified function on each element of the source
collection.
|
LazyBooleanIterable |
collectBoolean(LongToBooleanFunction function) |
|
LazyByteIterable |
collectByte(LongToByteFunction function) |
|
LazyCharIterable |
collectChar(LongToCharFunction function) |
|
LazyDoubleIterable |
collectDouble(LongToDoubleFunction function) |
|
LazyFloatIterable |
collectFloat(LongToFloatFunction function) |
|
LazyIntIterable |
collectInt(LongToIntFunction function) |
|
LazyLongIterable |
collectLong(LongToLongFunction function) |
|
LazyShortIterable |
collectShort(LongToShortFunction function) |
|
boolean |
contains(long value) |
Returns true if the value is contained in the LongIterable, and false if it is not.
|
boolean |
containsAll(long... source) |
Returns true if the all of the values specified in the source array are contained
in the LongIterable, and false if they are not.
|
boolean |
containsAll(LongIterable source) |
Returns true if the all of the values specified in the source LongIterable are contained
in the LongIterable, and false if they are not.
|
int |
count(LongPredicate predicate) |
Returns a count of the number of elements in the LongIterable that return true for the
specified predicate.
|
long |
detectIfNone(LongPredicate predicate,
long ifNone) |
|
<V> LazyIterable<V> |
flatCollect(LongToObjectFunction<? extends java.lang.Iterable<V>> function) |
|
void |
forEach(LongProcedure procedure) |
Applies the LongProcedure to each element in the LongIterable.
|
<T> T |
injectInto(T injectedValue,
ObjectLongToObjectFunction<? super T,? extends T> function) |
|
boolean |
isEmpty() |
Returns true if this iterable has zero items.
|
java.lang.String |
makeString() |
Returns a string representation of this collection by delegating to
PrimitiveIterable.makeString(String) and defaulting
the separator parameter to the characters ", " (comma and space). |
java.lang.String |
makeString(java.lang.String separator) |
Returns a string representation of this collection by delegating to
PrimitiveIterable.makeString(String, String, String)
and defaulting the start and end parameters to "" (the empty String). |
java.lang.String |
makeString(java.lang.String start,
java.lang.String separator,
java.lang.String end) |
Returns a string representation of this collection with the elements separated by the specified
separator and enclosed between the start and end strings.
|
long |
max() |
|
long |
maxIfEmpty(long ifEmpty) |
|
double |
median() |
|
long |
min() |
|
long |
minIfEmpty(long ifEmpty) |
|
boolean |
noneSatisfy(LongPredicate predicate) |
Returns true if none of the elements in the LongIterable return true for the
specified predicate, otherwise returns false.
|
boolean |
notEmpty() |
The English equivalent of !this.isEmpty()
|
LazyLongIterable |
reject(LongPredicate predicate) |
Returns a new LongIterable with all of the elements in the LongIterable that
return false for the specified predicate.
|
LazyLongIterable |
select(LongPredicate predicate) |
Returns a new LongIterable with all of the elements in the LongIterable that
return true for the specified predicate.
|
int |
size() |
Returns the number of items in this iterable.
|
long |
sum() |
|
LazyLongIterable |
tap(LongProcedure procedure) |
|
long[] |
toArray() |
Converts the LongIterable to a primitive long array.
|
MutableLongBag |
toBag() |
Converts the LongIterable to a new MutableLongBag.
|
MutableLongList |
toList() |
Converts the LongIterable to a new MutableLongList.
|
MutableLongSet |
toSet() |
Converts the LongIterable to a new MutableLongSet.
|
long[] |
toSortedArray() |
|
MutableLongList |
toSortedList() |
|
java.lang.String |
toString() |
Returns a string with the elements of this iterable separated by commas with spaces and
enclosed in square brackets.
|
averageIfEmpty, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, each, flatCollect, longIterator, medianIfEmpty, reject, select, summaryStatistics
public void forEach(LongProcedure procedure)
LongIterable
forEach
in interface LongIterable
public int size()
PrimitiveIterable
size
in interface PrimitiveIterable
public java.lang.String toString()
PrimitiveIterable
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());
toString
in interface PrimitiveIterable
toString
in class java.lang.Object
AbstractCollection.toString()
public boolean isEmpty()
PrimitiveIterable
isEmpty
in interface PrimitiveIterable
public boolean notEmpty()
PrimitiveIterable
notEmpty
in interface PrimitiveIterable
public java.lang.String makeString()
PrimitiveIterable
PrimitiveIterable.makeString(String)
and defaulting
the separator parameter to the characters ", " (comma and space).makeString
in interface PrimitiveIterable
public java.lang.String makeString(java.lang.String separator)
PrimitiveIterable
PrimitiveIterable.makeString(String, String, String)
and defaulting the start and end parameters to "" (the empty String).makeString
in interface PrimitiveIterable
public java.lang.String makeString(java.lang.String start, java.lang.String separator, java.lang.String end)
PrimitiveIterable
makeString
in interface PrimitiveIterable
public void appendString(java.lang.Appendable appendable)
PrimitiveIterable
Appendable
. Prints the string returned
by PrimitiveIterable.makeString()
.appendString
in interface PrimitiveIterable
public void appendString(java.lang.Appendable appendable, java.lang.String separator)
PrimitiveIterable
Appendable
. Prints the string returned
by PrimitiveIterable.makeString(String)
.appendString
in interface PrimitiveIterable
public void appendString(java.lang.Appendable appendable, java.lang.String start, java.lang.String separator, java.lang.String end)
PrimitiveIterable
Appendable
. Prints the string returned
by PrimitiveIterable.makeString(String, String, String)
.appendString
in interface PrimitiveIterable
public boolean contains(long value)
LongIterable
contains
in interface LongIterable
public boolean containsAll(long... source)
LongIterable
containsAll
in interface LongIterable
public boolean containsAll(LongIterable source)
LongIterable
containsAll
in interface LongIterable
public LazyLongIterable select(LongPredicate predicate)
LongIterable
select
in interface LazyLongIterable
select
in interface LongIterable
public LazyLongIterable reject(LongPredicate predicate)
LongIterable
reject
in interface LazyLongIterable
reject
in interface LongIterable
public LazyLongIterable tap(LongProcedure procedure)
tap
in interface LazyLongIterable
tap
in interface LongIterable
public <V> LazyIterable<V> collect(LongToObjectFunction<? extends V> function)
LongIterable
collect
in interface LazyLongIterable
collect
in interface LongIterable
public <V> LazyIterable<V> flatCollect(LongToObjectFunction<? extends java.lang.Iterable<V>> function)
flatCollect
in interface LazyLongIterable
public LazyBooleanIterable collectBoolean(LongToBooleanFunction function)
collectBoolean
in interface LazyLongIterable
public LazyByteIterable collectByte(LongToByteFunction function)
collectByte
in interface LazyLongIterable
public LazyCharIterable collectChar(LongToCharFunction function)
collectChar
in interface LazyLongIterable
public LazyShortIterable collectShort(LongToShortFunction function)
collectShort
in interface LazyLongIterable
public LazyIntIterable collectInt(LongToIntFunction function)
collectInt
in interface LazyLongIterable
public LazyFloatIterable collectFloat(LongToFloatFunction function)
collectFloat
in interface LazyLongIterable
public LazyLongIterable collectLong(LongToLongFunction function)
collectLong
in interface LazyLongIterable
public LazyDoubleIterable collectDouble(LongToDoubleFunction function)
collectDouble
in interface LazyLongIterable
public long detectIfNone(LongPredicate predicate, long ifNone)
detectIfNone
in interface LongIterable
public int count(LongPredicate predicate)
LongIterable
count
in interface LongIterable
public boolean anySatisfy(LongPredicate predicate)
LongIterable
anySatisfy
in interface LongIterable
public boolean allSatisfy(LongPredicate predicate)
LongIterable
allSatisfy
in interface LongIterable
public boolean noneSatisfy(LongPredicate predicate)
LongIterable
noneSatisfy
in interface LongIterable
public <T> T injectInto(T injectedValue, ObjectLongToObjectFunction<? super T,? extends T> function)
injectInto
in interface LongIterable
public RichIterable<LongIterable> chunk(int size)
LongIterable
chunk
in interface LongIterable
size
- the number of elements per chunkRichIterable
containing LongIterable
s of size size
, except the last will be
truncated if the elements don't divide evenly.public long[] toArray()
LongIterable
toArray
in interface LongIterable
public MutableLongList toList()
LongIterable
toList
in interface LongIterable
public MutableLongSet toSet()
LongIterable
toSet
in interface LongIterable
public MutableLongBag toBag()
LongIterable
toBag
in interface LongIterable
public long sum()
sum
in interface LongIterable
public long max()
max
in interface LongIterable
public long maxIfEmpty(long ifEmpty)
maxIfEmpty
in interface LongIterable
public long min()
min
in interface LongIterable
public long minIfEmpty(long ifEmpty)
minIfEmpty
in interface LongIterable
public double average()
average
in interface LongIterable
public double median()
median
in interface LongIterable
public long[] toSortedArray()
toSortedArray
in interface LongIterable
public MutableLongList toSortedList()
toSortedList
in interface LongIterable
public LazyLongIterable asLazy()
LongIterable
asLazy
in interface LongIterable
Copyright © 2004–2018. All rights reserved.