Class LongBooleanHashMap.ValuesCollection
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableBooleanValuesMap.AbstractBooleanValuesCollection
-
- org.eclipse.collections.impl.map.mutable.primitive.LongBooleanHashMap.ValuesCollection
-
- All Implemented Interfaces:
BooleanIterable,MutableBooleanCollection,PrimitiveIterable
- Enclosing class:
- LongBooleanHashMap
private class LongBooleanHashMap.ValuesCollection extends AbstractMutableBooleanValuesMap.AbstractBooleanValuesCollection
-
-
Constructor Summary
Constructors Modifier Constructor Description privateValuesCollection()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidappendString(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 givenAppendable.MutableBooleanIteratorbooleanIterator()Returns a primitive iterator that can be used to iterate over the BooleanIterable in an imperative style.booleanremove(boolean item)booleanretainAll(BooleanIterable source)-
Methods inherited from class org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableBooleanValuesMap.AbstractBooleanValuesCollection
add, addAll, addAll, allSatisfy, anySatisfy, appendString, appendString, asLazy, asSynchronized, asUnmodifiable, chunk, clear, collect, contains, containsAll, containsAll, count, detectIfNone, each, forEach, injectInto, isEmpty, makeString, makeString, makeString, noneSatisfy, notEmpty, reject, removeAll, removeAll, retainAll, select, size, toArray, toArray, toBag, toImmutable, toList, toSet, with, withAll, without, withoutAll
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.eclipse.collections.api.BooleanIterable
collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, containsAny, containsAny, containsNone, containsNone, flatCollect, injectIntoBoolean, injectIntoByte, injectIntoChar, injectIntoDouble, injectIntoFloat, injectIntoInt, injectIntoLong, injectIntoShort, reduce, reduceIfEmpty, reject, select
-
Methods inherited from interface org.eclipse.collections.api.collection.primitive.MutableBooleanCollection
newEmpty, removeIf, tap
-
Methods inherited from interface org.eclipse.collections.api.PrimitiveIterable
toString
-
-
-
-
Method Detail
-
appendString
public void appendString(java.lang.Appendable appendable, java.lang.String start, java.lang.String separator, java.lang.String end)Description copied from interface:PrimitiveIterablePrints a string representation of this collection onto the givenAppendable. Prints the string returned byPrimitiveIterable.makeString(String, String, String).
-
booleanIterator
public MutableBooleanIterator booleanIterator()
Description copied from interface:BooleanIterableReturns a primitive iterator that can be used to iterate over the BooleanIterable in an imperative style.
-
remove
public boolean remove(boolean item)
-
retainAll
public boolean retainAll(BooleanIterable source)
- See Also:
Collection.retainAll(Collection)
-
-