Class BooleanHashBag
java.lang.Object
org.eclipse.collections.impl.bag.mutable.primitive.BooleanHashBag
- All Implemented Interfaces:
Externalizable
,Serializable
,BooleanBag
,MutableBooleanBag
,BooleanIterable
,MutableBooleanCollection
,PrimitiveIterable
public final class BooleanHashBag extends Object implements MutableBooleanBag, Externalizable
BooleanHashBag is similar to
HashBag
, and is memory-optimized for boolean primitives.- Since:
- 3.0.
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description BooleanHashBag()
BooleanHashBag(boolean... elements)
BooleanHashBag(BooleanIterable iterable)
BooleanHashBag(BooleanHashBag bag)
-
Method Summary
Modifier and Type Method Description boolean
add(boolean item)
boolean
addAll(boolean... source)
boolean
addAll(BooleanIterable source)
void
addOccurrences(boolean item, int occurrences)
boolean
allSatisfy(BooleanPredicate predicate)
Returns true if all of the elements in the BooleanIterable return true for the specified predicate, otherwise returns false.boolean
anySatisfy(BooleanPredicate predicate)
Returns true if any of the elements in the BooleanIterable return true for the specified predicate, otherwise returns false.void
appendString(Appendable appendable)
Prints a string representation of this collection onto the givenAppendable
.void
appendString(Appendable appendable, String separator)
Prints a string representation of this collection onto the givenAppendable
.void
appendString(Appendable appendable, String start, String separator, String end)
Prints a string representation of this collection onto the givenAppendable
.LazyBooleanIterable
asLazy()
Returns a LazyBooleanIterable adapter wrapping the source BooleanIterable.MutableBooleanBag
asSynchronized()
MutableBooleanBag
asUnmodifiable()
MutableBooleanIterator
booleanIterator()
Returns a primitive iterator that can be used to iterate over the BooleanIterable in an imperative style.MutableList<BooleanIntPair>
bottomOccurrences(int count)
Returns thecount
least frequently occurring items.RichIterable<BooleanIterable>
chunk(int size)
Partitions elements in fixed size chunks.void
clear()
<V> MutableBag<V>
collect(BooleanToObjectFunction<? extends V> function)
Returns a new collection with the results of applying the specified function on each element of the source collection.boolean
contains(boolean value)
Returns true if the value is contained in the BooleanIterable, and false if it is not.boolean
containsAll(boolean... source)
Returns true if the all of the values specified in the source array are contained in the BooleanIterable, and false if they are not.boolean
containsAll(BooleanIterable source)
Returns true if the all of the values specified in the source BooleanIterable are contained in the BooleanIterable, and false if they are not.int
count(BooleanPredicate predicate)
Returns a count of the number of elements in the BooleanIterable that return true for the specified predicate.boolean
detectIfNone(BooleanPredicate predicate, boolean ifNone)
void
each(BooleanProcedure procedure)
A synonym for forEach.boolean
equals(Object otherBag)
Follows the same general contract asBag.equals(Object)
.void
forEach(BooleanProcedure procedure)
Applies the BooleanProcedure to each element in the BooleanIterable.void
forEachWithOccurrences(BooleanIntProcedure procedure)
For each distinct item, with the number of occurrences, execute the specified procedure.int
hashCode()
Follows the same general contract asBag.hashCode()
.<T> T
injectInto(T injectedValue, ObjectBooleanToObjectFunction<? super T,? extends T> function)
boolean
isEmpty()
Returns true if this iterable has zero items.String
makeString()
Returns a string representation of this collection by delegating toPrimitiveIterable.makeString(String)
and defaulting the separator parameter to the characters", "
(comma and space).String
makeString(String separator)
Returns a string representation of this collection by delegating toPrimitiveIterable.makeString(String, String, String)
and defaulting the start and end parameters to""
(the empty String).String
makeString(String start, String separator, 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.static BooleanHashBag
newBag(BooleanIterable source)
static BooleanHashBag
newBagWith(boolean... source)
boolean
noneSatisfy(BooleanPredicate predicate)
Returns true if none of the elements in the BooleanIterable return true for the specified predicate, otherwise returns false.boolean
notEmpty()
The English equivalent of !this.isEmpty()int
occurrencesOf(boolean item)
The occurrences of a distinct item in the bag.void
readExternal(ObjectInput in)
MutableBooleanBag
reject(BooleanPredicate predicate)
Returns a new BooleanIterable with all of the elements in the BooleanIterable that return false for the specified predicate.boolean
remove(boolean item)
boolean
removeAll(boolean... source)
boolean
removeAll(BooleanIterable source)
boolean
removeOccurrences(boolean item, int occurrences)
boolean
retainAll(boolean... source)
boolean
retainAll(BooleanIterable elements)
MutableBooleanBag
select(BooleanPredicate predicate)
Returns a new BooleanIterable with all of the elements in the BooleanIterable that return true for the specified predicate.MutableBooleanBag
selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.MutableBooleanSet
selectUnique()
Returns all elements of the bag that have exactly one occurrence.int
size()
Returns the number of items in this iterable.int
sizeDistinct()
The size of the Bag when counting only distinct elements.boolean[]
toArray()
Converts the BooleanIterable to a primitive boolean array.boolean[]
toArray(boolean[] array)
Converts the BooleanIterable to a primitive boolean array.MutableBooleanBag
toBag()
Converts the BooleanIterable to a new MutableBooleanBag.ImmutableBooleanBag
toImmutable()
Returns an immutable copy of this bag.MutableBooleanList
toList()
Converts the BooleanIterable to a new MutableBooleanList.MutableList<BooleanIntPair>
topOccurrences(int count)
Returns thecount
most frequently occurring items.MutableBooleanSet
toSet()
Converts the BooleanIterable to a new MutableBooleanSet.String
toString()
Returns a string with the elements of this iterable separated by commas with spaces and enclosed in square brackets.BooleanHashBag
with(boolean element)
BooleanHashBag
with(boolean element1, boolean element2)
BooleanHashBag
with(boolean element1, boolean element2, boolean element3)
BooleanHashBag
withAll(BooleanIterable iterable)
BooleanHashBag
without(boolean element)
BooleanHashBag
withoutAll(BooleanIterable iterable)
void
writeExternal(ObjectOutput out)
Methods inherited from interface org.eclipse.collections.api.bag.primitive.BooleanBag
toStringOfItemToCount
Methods inherited from interface org.eclipse.collections.api.BooleanIterable
collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, flatCollect, reduce, reduceIfEmpty, reject, select
Methods inherited from interface org.eclipse.collections.api.bag.primitive.MutableBooleanBag
newEmpty, selectDuplicates, tap
Methods inherited from interface org.eclipse.collections.api.collection.primitive.MutableBooleanCollection
removeIf
-
Constructor Details
-
BooleanHashBag
public BooleanHashBag() -
BooleanHashBag
-
BooleanHashBag
public BooleanHashBag(boolean... elements) -
BooleanHashBag
-
-
Method Details
-
newBagWith
-
newBag
-
isEmpty
public boolean isEmpty()Description copied from interface:PrimitiveIterable
Returns true if this iterable has zero items.- Specified by:
isEmpty
in interfacePrimitiveIterable
-
notEmpty
public boolean notEmpty()Description copied from interface:PrimitiveIterable
The English equivalent of !this.isEmpty()- Specified by:
notEmpty
in interfacePrimitiveIterable
-
size
public int size()Description copied from interface:PrimitiveIterable
Returns the number of items in this iterable.- Specified by:
size
in interfacePrimitiveIterable
-
sizeDistinct
public int sizeDistinct()Description copied from interface:BooleanBag
The size of the Bag when counting only distinct elements.- Specified by:
sizeDistinct
in interfaceBooleanBag
-
clear
public void clear()- Specified by:
clear
in interfaceMutableBooleanCollection
-
with
- Specified by:
with
in interfaceMutableBooleanBag
- Specified by:
with
in interfaceMutableBooleanCollection
-
with
-
with
-
withAll
- Specified by:
withAll
in interfaceMutableBooleanBag
- Specified by:
withAll
in interfaceMutableBooleanCollection
-
without
- Specified by:
without
in interfaceMutableBooleanBag
- Specified by:
without
in interfaceMutableBooleanCollection
-
withoutAll
- Specified by:
withoutAll
in interfaceMutableBooleanBag
- Specified by:
withoutAll
in interfaceMutableBooleanCollection
-
asUnmodifiable
- Specified by:
asUnmodifiable
in interfaceMutableBooleanBag
- Specified by:
asUnmodifiable
in interfaceMutableBooleanCollection
-
asSynchronized
- Specified by:
asSynchronized
in interfaceMutableBooleanBag
- Specified by:
asSynchronized
in interfaceMutableBooleanCollection
-
toImmutable
Description copied from interface:MutableBooleanBag
Returns an immutable copy of this bag.- Specified by:
toImmutable
in interfaceBooleanBag
- Specified by:
toImmutable
in interfaceMutableBooleanBag
- Specified by:
toImmutable
in interfaceMutableBooleanCollection
-
contains
public boolean contains(boolean value)Description copied from interface:BooleanIterable
Returns true if the value is contained in the BooleanIterable, and false if it is not.- Specified by:
contains
in interfaceBooleanIterable
-
containsAll
public boolean containsAll(boolean... source)Description copied from interface:BooleanIterable
Returns true if the all of the values specified in the source array are contained in the BooleanIterable, and false if they are not.- Specified by:
containsAll
in interfaceBooleanIterable
-
containsAll
Description copied from interface:BooleanIterable
Returns true if the all of the values specified in the source BooleanIterable are contained in the BooleanIterable, and false if they are not.- Specified by:
containsAll
in interfaceBooleanIterable
-
occurrencesOf
public int occurrencesOf(boolean item)Description copied from interface:BooleanBag
The occurrences of a distinct item in the bag.- Specified by:
occurrencesOf
in interfaceBooleanBag
-
forEachWithOccurrences
Description copied from interface:BooleanBag
For each distinct item, with the number of occurrences, execute the specified procedure.- Specified by:
forEachWithOccurrences
in interfaceBooleanBag
-
add
public boolean add(boolean item)- Specified by:
add
in interfaceMutableBooleanCollection
-
remove
public boolean remove(boolean item)- Specified by:
remove
in interfaceMutableBooleanCollection
-
addAll
public boolean addAll(boolean... source)- Specified by:
addAll
in interfaceMutableBooleanCollection
-
addAll
- Specified by:
addAll
in interfaceMutableBooleanCollection
-
removeAll
public boolean removeAll(boolean... source)- Specified by:
removeAll
in interfaceMutableBooleanCollection
-
removeAll
- Specified by:
removeAll
in interfaceMutableBooleanCollection
-
retainAll
- Specified by:
retainAll
in interfaceMutableBooleanCollection
- See Also:
Collection.retainAll(Collection)
-
retainAll
public boolean retainAll(boolean... source)- Specified by:
retainAll
in interfaceMutableBooleanCollection
- See Also:
Collection.retainAll(Collection)
-
addOccurrences
public void addOccurrences(boolean item, int occurrences)- Specified by:
addOccurrences
in interfaceMutableBooleanBag
-
removeOccurrences
public boolean removeOccurrences(boolean item, int occurrences)- Specified by:
removeOccurrences
in interfaceMutableBooleanBag
-
forEach
Description copied from interface:BooleanIterable
Applies the BooleanProcedure to each element in the BooleanIterable.- Specified by:
forEach
in interfaceBooleanIterable
-
each
Description copied from interface:BooleanIterable
A synonym for forEach.- Specified by:
each
in interfaceBooleanIterable
- Since:
- 7.0.
-
select
Description copied from interface:BooleanIterable
Returns a new BooleanIterable with all of the elements in the BooleanIterable that return true for the specified predicate.- Specified by:
select
in interfaceBooleanBag
- Specified by:
select
in interfaceBooleanIterable
- Specified by:
select
in interfaceMutableBooleanBag
- Specified by:
select
in interfaceMutableBooleanCollection
-
selectByOccurrences
Description copied from interface:MutableBooleanBag
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.- Specified by:
selectByOccurrences
in interfaceBooleanBag
- Specified by:
selectByOccurrences
in interfaceMutableBooleanBag
-
topOccurrences
Description copied from interface:MutableBooleanBag
Returns thecount
most frequently occurring items. In the event of a tie, all of the items with the number of occurrences that match the occurrences of the last item will be returned.- Specified by:
topOccurrences
in interfaceBooleanBag
- Specified by:
topOccurrences
in interfaceMutableBooleanBag
-
bottomOccurrences
Description copied from interface:MutableBooleanBag
Returns thecount
least frequently occurring items. In the event of a tie, all of the items with the number of occurrences that match the occurrences of the last item will be returned.- Specified by:
bottomOccurrences
in interfaceBooleanBag
- Specified by:
bottomOccurrences
in interfaceMutableBooleanBag
-
reject
Description copied from interface:BooleanIterable
Returns a new BooleanIterable with all of the elements in the BooleanIterable that return false for the specified predicate.- Specified by:
reject
in interfaceBooleanBag
- Specified by:
reject
in interfaceBooleanIterable
- Specified by:
reject
in interfaceMutableBooleanBag
- Specified by:
reject
in interfaceMutableBooleanCollection
-
injectInto
public <T> T injectInto(T injectedValue, ObjectBooleanToObjectFunction<? super T,? extends T> function)- Specified by:
injectInto
in interfaceBooleanIterable
-
chunk
Description copied from interface:BooleanIterable
Partitions elements in fixed size chunks.- Specified by:
chunk
in interfaceBooleanIterable
- Parameters:
size
- the number of elements per chunk- Returns:
- A
RichIterable
containingBooleanIterable
s of sizesize
, except the last will be truncated if the elements don't divide evenly.
-
equals
Description copied from interface:BooleanBag
Follows the same general contract asBag.equals(Object)
.- Specified by:
equals
in interfaceBooleanBag
- Overrides:
equals
in classObject
-
hashCode
public int hashCode()Description copied from interface:BooleanBag
Follows the same general contract asBag.hashCode()
.- Specified by:
hashCode
in interfaceBooleanBag
- Overrides:
hashCode
in classObject
-
toString
Description copied from interface:PrimitiveIterable
Returns a string with the elements of this iterable separated by commas with spaces and enclosed in square brackets.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());
- Specified by:
toString
in interfacePrimitiveIterable
- Overrides:
toString
in classObject
- Returns:
- a string representation of this PrimitiveIterable
- See Also:
AbstractCollection.toString()
-
makeString
Description copied from interface:PrimitiveIterable
Returns a string representation of this collection by delegating toPrimitiveIterable.makeString(String)
and defaulting the separator parameter to the characters", "
(comma and space).- Specified by:
makeString
in interfacePrimitiveIterable
- Returns:
- a string representation of this collection.
-
makeString
Description copied from interface:PrimitiveIterable
Returns a string representation of this collection by delegating toPrimitiveIterable.makeString(String, String, String)
and defaulting the start and end parameters to""
(the empty String).- Specified by:
makeString
in interfacePrimitiveIterable
- Returns:
- a string representation of this collection.
-
makeString
Description copied from interface:PrimitiveIterable
Returns a string representation of this collection with the elements separated by the specified separator and enclosed between the start and end strings.- Specified by:
makeString
in interfacePrimitiveIterable
- Returns:
- a string representation of this collection.
-
appendString
Description copied from interface:PrimitiveIterable
Prints a string representation of this collection onto the givenAppendable
. Prints the string returned byPrimitiveIterable.makeString()
.- Specified by:
appendString
in interfacePrimitiveIterable
-
appendString
Description copied from interface:PrimitiveIterable
Prints a string representation of this collection onto the givenAppendable
. Prints the string returned byPrimitiveIterable.makeString(String)
.- Specified by:
appendString
in interfacePrimitiveIterable
-
appendString
Description copied from interface:PrimitiveIterable
Prints a string representation of this collection onto the givenAppendable
. Prints the string returned byPrimitiveIterable.makeString(String, String, String)
.- Specified by:
appendString
in interfacePrimitiveIterable
-
count
Description copied from interface:BooleanIterable
Returns a count of the number of elements in the BooleanIterable that return true for the specified predicate.- Specified by:
count
in interfaceBooleanIterable
-
anySatisfy
Description copied from interface:BooleanIterable
Returns true if any of the elements in the BooleanIterable return true for the specified predicate, otherwise returns false.- Specified by:
anySatisfy
in interfaceBooleanIterable
-
allSatisfy
Description copied from interface:BooleanIterable
Returns true if all of the elements in the BooleanIterable return true for the specified predicate, otherwise returns false.- Specified by:
allSatisfy
in interfaceBooleanIterable
-
noneSatisfy
Description copied from interface:BooleanIterable
Returns true if none of the elements in the BooleanIterable return true for the specified predicate, otherwise returns false.- Specified by:
noneSatisfy
in interfaceBooleanIterable
-
detectIfNone
- Specified by:
detectIfNone
in interfaceBooleanIterable
-
collect
Description copied from interface:BooleanIterable
Returns a new collection with the results of applying the specified function on each element of the source collection. This method is also commonly called transform or map.- Specified by:
collect
in interfaceBooleanBag
- Specified by:
collect
in interfaceBooleanIterable
- Specified by:
collect
in interfaceMutableBooleanBag
- Specified by:
collect
in interfaceMutableBooleanCollection
-
toArray
public boolean[] toArray()Description copied from interface:BooleanIterable
Converts the BooleanIterable to a primitive boolean array.- Specified by:
toArray
in interfaceBooleanIterable
-
toArray
public boolean[] toArray(boolean[] array)Description copied from interface:BooleanIterable
Converts the BooleanIterable to a primitive boolean array. If the collection fits into the provided array it is used to store its elements and is returned from the method, otherwise a new array of the appropriate size is allocated and returned. If the iterable is empty, the target array is returned unchanged.- Specified by:
toArray
in interfaceBooleanIterable
-
toList
Description copied from interface:BooleanIterable
Converts the BooleanIterable to a new MutableBooleanList.- Specified by:
toList
in interfaceBooleanIterable
-
toSet
Description copied from interface:BooleanIterable
Converts the BooleanIterable to a new MutableBooleanSet.- Specified by:
toSet
in interfaceBooleanIterable
-
toBag
Description copied from interface:BooleanIterable
Converts the BooleanIterable to a new MutableBooleanBag.- Specified by:
toBag
in interfaceBooleanIterable
-
asLazy
Description copied from interface:BooleanIterable
Returns a LazyBooleanIterable adapter wrapping the source BooleanIterable.- Specified by:
asLazy
in interfaceBooleanIterable
-
booleanIterator
Description copied from interface:BooleanIterable
Returns a primitive iterator that can be used to iterate over the BooleanIterable in an imperative style.- Specified by:
booleanIterator
in interfaceBooleanIterable
- Specified by:
booleanIterator
in interfaceMutableBooleanCollection
-
writeExternal
- Specified by:
writeExternal
in interfaceExternalizable
- Throws:
IOException
-
readExternal
- Specified by:
readExternal
in interfaceExternalizable
- Throws:
IOException
-
selectUnique
Description copied from interface:MutableBooleanBag
Returns all elements of the bag that have exactly one occurrence.- Specified by:
selectUnique
in interfaceBooleanBag
- Specified by:
selectUnique
in interfaceMutableBooleanBag
-