LongIterable, LongValuesMap, MutableLongValuesMap, PrimitiveIterableByteLongHashMap, CharLongHashMap, DoubleLongHashMap, FloatLongHashMap, IntLongHashMap, LongLongHashMap, ShortLongHashMappublic abstract class AbstractMutableLongValuesMap extends AbstractLongIterable implements MutableLongValuesMap
| Constructor | Description |
|---|---|
AbstractMutableLongValuesMap() |
| 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(Appendable appendable,
String start,
String separator,
String end) |
Prints a string representation of this collection onto the given
Appendable. |
<V> MutableBag<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.
|
boolean |
contains(long value) |
Returns true if the value is contained in the LongIterable, and false if it is 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.
|
boolean |
containsValue(long value) |
|
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 value) |
|
void |
each(LongProcedure procedure) |
A synonym for forEach.
|
void |
forEach(LongProcedure procedure) |
Applies the LongProcedure to each element in the LongIterable.
|
void |
forEachValue(LongProcedure procedure) |
|
boolean |
isEmpty() |
Returns true if this iterable has zero items.
|
long |
max() |
|
long |
min() |
|
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()
|
MutableLongBag |
reject(LongPredicate predicate) |
Returns a new LongIterable with all of the elements in the LongIterable that
return false for the specified predicate.
|
MutableLongBag |
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() |
|
long[] |
toArray() |
Converts the LongIterable to a primitive long array.
|
asLazy, average, containsAll, maxIfEmpty, median, minIfEmpty, toBag, toList, toSet, toSortedArray, toSortedList, toStringasLazy, average, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, containsAll, flatCollect, injectInto, maxIfEmpty, median, minIfEmpty, reject, select, summaryStatistics, toBag, toList, toSet, toSortedArray, toSortedListvaluesclear, longIteratorequals, getClass, hashCode, notify, notifyAll, wait, wait, waitappendString, appendString, makeString, makeString, makeString, toStringpublic boolean contains(long value)
LongIterablecontains in interface LongIterablepublic boolean containsAll(LongIterable source)
LongIterablecontainsAll in interface LongIterablecontainsAll in class AbstractLongIterablepublic long max()
max in interface LongIterablepublic long min()
min in interface LongIterablepublic int size()
PrimitiveIterablesize in interface PrimitiveIterablepublic boolean isEmpty()
PrimitiveIterableisEmpty in interface PrimitiveIterablepublic boolean notEmpty()
PrimitiveIterablenotEmpty in interface PrimitiveIterablepublic void forEach(LongProcedure procedure)
LongIterableforEach in interface LongIterablepublic void each(LongProcedure procedure)
LongIterableeach in interface LongIterablepublic void appendString(Appendable appendable, String start, String separator, String end)
PrimitiveIterableAppendable. Prints the string returned
by PrimitiveIterable.makeString(String, String, String).appendString in interface PrimitiveIterablepublic long[] toArray()
LongIterabletoArray in interface LongIterablepublic MutableLongBag select(LongPredicate predicate)
LongIterableselect in interface LongIterableselect in interface LongValuesMapselect in interface MutableLongValuesMappublic MutableLongBag reject(LongPredicate predicate)
LongIterablereject in interface LongIterablereject in interface LongValuesMapreject in interface MutableLongValuesMappublic <V> MutableBag<V> collect(LongToObjectFunction<? extends V> function)
LongIterablecollect in interface LongIterablecollect in interface LongValuesMapcollect in interface MutableLongValuesMappublic long detectIfNone(LongPredicate predicate, long value)
detectIfNone in interface LongIterablepublic int count(LongPredicate predicate)
LongIterablecount in interface LongIterablepublic boolean anySatisfy(LongPredicate predicate)
LongIterableanySatisfy in interface LongIterablepublic boolean allSatisfy(LongPredicate predicate)
LongIterableallSatisfy in interface LongIterablepublic boolean noneSatisfy(LongPredicate predicate)
LongIterablenoneSatisfy in interface LongIterablepublic long sum()
sum in interface LongIterablepublic boolean containsValue(long value)
containsValue in interface LongValuesMappublic void forEachValue(LongProcedure procedure)
forEachValue in interface LongValuesMapCopyright © 2004–2017. All rights reserved.