Class ShortBooleanHashMap.ValuesCollection
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableBooleanValuesMap.AbstractBooleanValuesCollection
-
- org.eclipse.collections.impl.map.mutable.primitive.ShortBooleanHashMap.ValuesCollection
-
- All Implemented Interfaces:
BooleanIterable
,MutableBooleanCollection
,PrimitiveIterable
- Enclosing class:
- ShortBooleanHashMap
private class ShortBooleanHashMap.ValuesCollection extends AbstractMutableBooleanValuesMap.AbstractBooleanValuesCollection
-
-
Constructor Summary
Constructors Modifier Constructor Description private
ValuesCollection()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description 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 givenAppendable
.MutableBooleanIterator
booleanIterator()
Returns a primitive iterator that can be used to iterate over the BooleanIterable in an imperative style.boolean
remove(boolean item)
boolean
retainAll(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:PrimitiveIterable
Prints 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:BooleanIterable
Returns 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)
-
-