Class ByteBooleanHashMap.KeysView
java.lang.Object
org.eclipse.collections.impl.lazy.primitive.AbstractLazyByteIterable
org.eclipse.collections.impl.map.mutable.primitive.ByteBooleanHashMap.KeysView
- All Implemented Interfaces:
ByteIterable
,LazyByteIterable
,PrimitiveIterable
- Enclosing class:
ByteBooleanHashMap
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
allSatisfy
(BytePredicate predicate) Returns true if all of the elements in the ByteIterable return true for the specified predicate, otherwise returns false.boolean
anySatisfy
(BytePredicate predicate) Returns true if any of the elements in the ByteIterable 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 givenAppendable
.Returns a primitive iterator that can be used to iterate over the ByteIterable in an imperative style.boolean
contains
(byte key) Returns true if the value is contained in the ByteIterable, and false if it is not.boolean
containsAll
(byte... keys) Returns true if all of the values specified in the source array are contained in the ByteIterable, and false if they are not.boolean
containsAll
(ByteIterable source) Returns true if all of the values specified in the source ByteIterable are contained in the ByteIterable, and false if they are not.int
count
(BytePredicate predicate) Returns a count of the number of elements in the ByteIterable that return true for the specified predicate.byte
detectIfNone
(BytePredicate predicate, byte value) void
each
(ByteProcedure procedure) A synonym for forEach.<T> T
injectInto
(T injectedValue, ObjectByteToObjectFunction<? super T, ? extends T> function) boolean
isEmpty()
Returns true if this iterable has zero items.byte
max()
byte
min()
boolean
notEmpty()
The English equivalent of !this.isEmpty()int
size()
Returns the number of items in this iterable.long
sum()
byte[]
toArray()
Converts the ByteIterable to a primitive byte array.toBag()
Converts the ByteIterable to a new MutableByteBag.toList()
Converts the ByteIterable to a new MutableByteList.toSet()
Converts the ByteIterable to a new MutableByteSet.byte[]
Methods inherited from class org.eclipse.collections.impl.lazy.primitive.AbstractLazyByteIterable
appendString, appendString, asLazy, average, chunk, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, flatCollect, makeString, makeString, makeString, maxIfEmpty, median, minIfEmpty, noneSatisfy, reject, select, tap, toSortedList, toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.eclipse.collections.api.ByteIterable
averageIfEmpty, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, containsAny, containsAny, containsNone, containsNone, flatCollect, forEach, injectIntoBoolean, injectIntoByte, injectIntoChar, injectIntoDouble, injectIntoFloat, injectIntoInt, injectIntoLong, injectIntoShort, medianIfEmpty, reduce, reduceIfEmpty, reject, select, summaryStatistics, toArray, toSortedList, toSortedListBy, toSortedListBy
-
Constructor Details
-
KeysView
private KeysView()
-
-
Method Details
-
isEmpty
public boolean isEmpty()Description copied from interface:PrimitiveIterable
Returns true if this iterable has zero items.- Specified by:
isEmpty
in interfacePrimitiveIterable
- Overrides:
isEmpty
in classAbstractLazyByteIterable
-
notEmpty
public boolean notEmpty()Description copied from interface:PrimitiveIterable
The English equivalent of !this.isEmpty()- Specified by:
notEmpty
in interfacePrimitiveIterable
- Overrides:
notEmpty
in classAbstractLazyByteIterable
-
size
public int size()Description copied from interface:PrimitiveIterable
Returns the number of items in this iterable.- Specified by:
size
in interfacePrimitiveIterable
- Overrides:
size
in classAbstractLazyByteIterable
-
contains
public boolean contains(byte key) Description copied from interface:ByteIterable
Returns true if the value is contained in the ByteIterable, and false if it is not.- Specified by:
contains
in interfaceByteIterable
- Overrides:
contains
in classAbstractLazyByteIterable
-
containsAll
public boolean containsAll(byte... keys) Description copied from interface:ByteIterable
Returns true if all of the values specified in the source array are contained in the ByteIterable, and false if they are not.- Specified by:
containsAll
in interfaceByteIterable
- Overrides:
containsAll
in classAbstractLazyByteIterable
-
containsAll
Description copied from interface:ByteIterable
Returns true if all of the values specified in the source ByteIterable are contained in the ByteIterable, and false if they are not.- Specified by:
containsAll
in interfaceByteIterable
- Overrides:
containsAll
in classAbstractLazyByteIterable
-
byteIterator
Description copied from interface:ByteIterable
Returns a primitive iterator that can be used to iterate over the ByteIterable in an imperative style. -
each
Description copied from interface:ByteIterable
A synonym for forEach.- Since:
- 7.0.
-
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
- Overrides:
appendString
in classAbstractLazyByteIterable
-
count
Description copied from interface:ByteIterable
Returns a count of the number of elements in the ByteIterable that return true for the specified predicate.- Specified by:
count
in interfaceByteIterable
- Overrides:
count
in classAbstractLazyByteIterable
-
anySatisfy
Description copied from interface:ByteIterable
Returns true if any of the elements in the ByteIterable return true for the specified predicate, otherwise returns false.- Specified by:
anySatisfy
in interfaceByteIterable
- Overrides:
anySatisfy
in classAbstractLazyByteIterable
-
allSatisfy
Description copied from interface:ByteIterable
Returns true if all of the elements in the ByteIterable return true for the specified predicate, otherwise returns false.- Specified by:
allSatisfy
in interfaceByteIterable
- Overrides:
allSatisfy
in classAbstractLazyByteIterable
-
detectIfNone
- Specified by:
detectIfNone
in interfaceByteIterable
- Overrides:
detectIfNone
in classAbstractLazyByteIterable
-
sum
public long sum()- Specified by:
sum
in interfaceByteIterable
- Overrides:
sum
in classAbstractLazyByteIterable
-
max
public byte max()- Specified by:
max
in interfaceByteIterable
- Overrides:
max
in classAbstractLazyByteIterable
-
min
public byte min()- Specified by:
min
in interfaceByteIterable
- Overrides:
min
in classAbstractLazyByteIterable
-
toSortedArray
public byte[] toSortedArray()- Specified by:
toSortedArray
in interfaceByteIterable
- Overrides:
toSortedArray
in classAbstractLazyByteIterable
-
toArray
public byte[] toArray()Description copied from interface:ByteIterable
Converts the ByteIterable to a primitive byte array.- Specified by:
toArray
in interfaceByteIterable
- Overrides:
toArray
in classAbstractLazyByteIterable
-
injectInto
public <T> T injectInto(T injectedValue, ObjectByteToObjectFunction<? super T, ? extends T> function) - Specified by:
injectInto
in interfaceByteIterable
- Overrides:
injectInto
in classAbstractLazyByteIterable
-
toList
Description copied from interface:ByteIterable
Converts the ByteIterable to a new MutableByteList.- Specified by:
toList
in interfaceByteIterable
- Overrides:
toList
in classAbstractLazyByteIterable
-
toSet
Description copied from interface:ByteIterable
Converts the ByteIterable to a new MutableByteSet.- Specified by:
toSet
in interfaceByteIterable
- Overrides:
toSet
in classAbstractLazyByteIterable
-
toBag
Description copied from interface:ByteIterable
Converts the ByteIterable to a new MutableByteBag.- Specified by:
toBag
in interfaceByteIterable
- Overrides:
toBag
in classAbstractLazyByteIterable
-