Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.BytePredicate
-
Packages that use BytePredicate Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.collection.primitive This package contains mutable and immutable primitive collection API.org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.org.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.api.ordered.primitive org.eclipse.collections.api.set.primitive This package contains API for mutable and immutable primitive sets.org.eclipse.collections.api.stack.primitive This package contains mutable and immutable primitive stack API.org.eclipse.collections.impl.bag.immutable.primitive This package contains implementations of the immutable primitive bag interfaces.org.eclipse.collections.impl.bag.mutable.primitive This package contains implementations of the mutable primitive bag interfaces.org.eclipse.collections.impl.block.factory.primitive This package contains factory implementations for primitive functions, primitive predicates, primitive procedures and primitive comparators.org.eclipse.collections.impl.block.function.primitive This package contains implementations of primitive functions.org.eclipse.collections.impl.block.procedure.primitive This package contains implementations of primitive procedures.org.eclipse.collections.impl.collection.mutable.primitive This package contains implementations of the mutable primitive collection interfaces.org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.org.eclipse.collections.impl.list.immutable.primitive This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable primitive list interfaces.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.primitive org.eclipse.collections.impl.set.immutable.primitive This package contains implementations of the immutable primitive set interfaces.org.eclipse.collections.impl.set.mutable.primitive This package contains implementations of the mutable primitive set interfaces.org.eclipse.collections.impl.stack.immutable.primitive This package contains implementations of the immutable primitive stack interfaces.org.eclipse.collections.impl.stack.mutable.primitive This package contains implementations of the mutable primitive stack interfaces.org.eclipse.collections.impl.stack.primitive org.eclipse.collections.impl.utility.internal.primitive org.eclipse.collections.impl.utility.primitive -
-
Uses of BytePredicate in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type BytePredicate Modifier and Type Method Description boolean
ByteIterable. allSatisfy(BytePredicate predicate)
Returns true if all of the elements in the ByteIterable return true for the specified predicate, otherwise returns false.boolean
ByteIterable. anySatisfy(BytePredicate predicate)
Returns true if any of the elements in the ByteIterable return true for the specified predicate, otherwise returns false.int
ByteIterable. count(BytePredicate predicate)
Returns a count of the number of elements in the ByteIterable that return true for the specified predicate.byte
ByteIterable. detectIfNone(BytePredicate predicate, byte ifNone)
default boolean
ByteIterable. noneSatisfy(BytePredicate predicate)
Returns true if none of the elements in the ByteIterable return true for the specified predicate, otherwise returns false.ByteIterable
ByteIterable. reject(BytePredicate predicate)
Returns a new ByteIterable with all of the elements in the ByteIterable that return false for the specified predicate.default <R extends MutableByteCollection>
RByteIterable. reject(BytePredicate predicate, R target)
Same asByteIterable.reject(BytePredicate)
, only the results are added to the target MutableByteCollection.LazyByteIterable
LazyByteIterable. reject(BytePredicate predicate)
ByteIterable
ByteIterable. select(BytePredicate predicate)
Returns a new ByteIterable with all of the elements in the ByteIterable that return true for the specified predicate.default <R extends MutableByteCollection>
RByteIterable. select(BytePredicate predicate, R target)
Same asByteIterable.select(BytePredicate)
, only the results are added to the target MutableByteCollection.LazyByteIterable
LazyByteIterable. select(BytePredicate predicate)
-
Uses of BytePredicate in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive with parameters of type BytePredicate Modifier and Type Method Description ByteBag
ByteBag. reject(BytePredicate predicate)
ImmutableByteBag
ImmutableByteBag. reject(BytePredicate predicate)
MutableByteBag
MutableByteBag. reject(BytePredicate predicate)
ByteBag
ByteBag. select(BytePredicate predicate)
ImmutableByteBag
ImmutableByteBag. select(BytePredicate predicate)
MutableByteBag
MutableByteBag. select(BytePredicate predicate)
-
Uses of BytePredicate in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive with parameters of type BytePredicate Modifier and Type Method Description ImmutableByteCollection
ImmutableByteCollection. reject(BytePredicate predicate)
MutableByteCollection
MutableByteCollection. reject(BytePredicate predicate)
default boolean
MutableByteCollection. removeIf(BytePredicate predicate)
ImmutableByteCollection
ImmutableByteCollection. select(BytePredicate predicate)
MutableByteCollection
MutableByteCollection. select(BytePredicate predicate)
-
Uses of BytePredicate in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type BytePredicate Modifier and Type Method Description ByteList
ByteList. reject(BytePredicate predicate)
ImmutableByteList
ImmutableByteList. reject(BytePredicate predicate)
MutableByteList
MutableByteList. reject(BytePredicate predicate)
ByteList
ByteList. select(BytePredicate predicate)
ImmutableByteList
ImmutableByteList. select(BytePredicate predicate)
MutableByteList
MutableByteList. select(BytePredicate predicate)
-
Uses of BytePredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type BytePredicate Modifier and Type Method Description ByteBag
ByteValuesMap. reject(BytePredicate predicate)
ImmutableByteBag
ImmutableByteByteMap. reject(BytePredicate predicate)
ImmutableByteBag
ImmutableCharByteMap. reject(BytePredicate predicate)
ImmutableByteBag
ImmutableDoubleByteMap. reject(BytePredicate predicate)
ImmutableByteBag
ImmutableFloatByteMap. reject(BytePredicate predicate)
ImmutableByteBag
ImmutableIntByteMap. reject(BytePredicate predicate)
ImmutableByteBag
ImmutableLongByteMap. reject(BytePredicate predicate)
ImmutableByteCollection
ImmutableObjectByteMap. reject(BytePredicate predicate)
ImmutableByteBag
ImmutableShortByteMap. reject(BytePredicate predicate)
MutableByteBag
MutableByteValuesMap. reject(BytePredicate predicate)
MutableByteCollection
MutableObjectByteMap. reject(BytePredicate predicate)
ByteBag
ByteValuesMap. select(BytePredicate predicate)
ImmutableByteBag
ImmutableByteByteMap. select(BytePredicate predicate)
ImmutableByteBag
ImmutableCharByteMap. select(BytePredicate predicate)
ImmutableByteBag
ImmutableDoubleByteMap. select(BytePredicate predicate)
ImmutableByteBag
ImmutableFloatByteMap. select(BytePredicate predicate)
ImmutableByteBag
ImmutableIntByteMap. select(BytePredicate predicate)
ImmutableByteBag
ImmutableLongByteMap. select(BytePredicate predicate)
ImmutableByteCollection
ImmutableObjectByteMap. select(BytePredicate predicate)
ImmutableByteBag
ImmutableShortByteMap. select(BytePredicate predicate)
MutableByteBag
MutableByteValuesMap. select(BytePredicate predicate)
MutableByteCollection
MutableObjectByteMap. select(BytePredicate predicate)
-
Uses of BytePredicate in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type BytePredicate Modifier and Type Method Description OrderedByteIterable
OrderedByteIterable. reject(BytePredicate predicate)
ReversibleByteIterable
ReversibleByteIterable. reject(BytePredicate predicate)
OrderedByteIterable
OrderedByteIterable. select(BytePredicate predicate)
ReversibleByteIterable
ReversibleByteIterable. select(BytePredicate predicate)
-
Uses of BytePredicate in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive with parameters of type BytePredicate Modifier and Type Method Description ByteSet
ByteSet. reject(BytePredicate predicate)
ImmutableByteSet
ImmutableByteSet. reject(BytePredicate predicate)
MutableByteSet
MutableByteSet. reject(BytePredicate predicate)
ByteSet
ByteSet. select(BytePredicate predicate)
ImmutableByteSet
ImmutableByteSet. select(BytePredicate predicate)
MutableByteSet
MutableByteSet. select(BytePredicate predicate)
-
Uses of BytePredicate in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type BytePredicate Modifier and Type Method Description ByteStack
ByteStack. reject(BytePredicate predicate)
ImmutableByteStack
ImmutableByteStack. reject(BytePredicate predicate)
MutableByteStack
MutableByteStack. reject(BytePredicate predicate)
ByteStack
ByteStack. select(BytePredicate predicate)
ImmutableByteStack
ImmutableByteStack. select(BytePredicate predicate)
MutableByteStack
MutableByteStack. select(BytePredicate predicate)
-
Uses of BytePredicate in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive with parameters of type BytePredicate Modifier and Type Method Description boolean
ImmutableByteEmptyBag. allSatisfy(BytePredicate predicate)
boolean
ImmutableByteHashBag. allSatisfy(BytePredicate predicate)
boolean
ImmutableByteSingletonBag. allSatisfy(BytePredicate predicate)
boolean
ImmutableByteEmptyBag. anySatisfy(BytePredicate predicate)
boolean
ImmutableByteHashBag. anySatisfy(BytePredicate predicate)
boolean
ImmutableByteSingletonBag. anySatisfy(BytePredicate predicate)
int
ImmutableByteEmptyBag. count(BytePredicate predicate)
int
ImmutableByteHashBag. count(BytePredicate predicate)
int
ImmutableByteSingletonBag. count(BytePredicate predicate)
byte
ImmutableByteEmptyBag. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ImmutableByteHashBag. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ImmutableByteSingletonBag. detectIfNone(BytePredicate predicate, byte ifNone)
boolean
ImmutableByteEmptyBag. noneSatisfy(BytePredicate predicate)
boolean
ImmutableByteHashBag. noneSatisfy(BytePredicate predicate)
boolean
ImmutableByteSingletonBag. noneSatisfy(BytePredicate predicate)
ImmutableByteBag
ImmutableByteEmptyBag. reject(BytePredicate predicate)
ImmutableByteBag
ImmutableByteHashBag. reject(BytePredicate predicate)
ImmutableByteBag
ImmutableByteSingletonBag. reject(BytePredicate predicate)
ImmutableByteBag
ImmutableByteEmptyBag. select(BytePredicate predicate)
ImmutableByteBag
ImmutableByteHashBag. select(BytePredicate predicate)
ImmutableByteBag
ImmutableByteSingletonBag. select(BytePredicate predicate)
-
Uses of BytePredicate in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type BytePredicate Modifier and Type Method Description boolean
ByteHashBag. allSatisfy(BytePredicate predicate)
boolean
ByteHashBag. anySatisfy(BytePredicate predicate)
int
ByteHashBag. count(BytePredicate predicate)
byte
ByteHashBag. detectIfNone(BytePredicate predicate, byte ifNone)
boolean
ByteHashBag. noneSatisfy(BytePredicate predicate)
ByteHashBag
ByteHashBag. reject(BytePredicate predicate)
MutableByteBag
SynchronizedByteBag. reject(BytePredicate predicate)
MutableByteBag
UnmodifiableByteBag. reject(BytePredicate predicate)
boolean
ByteHashBag. removeIf(BytePredicate predicate)
ByteHashBag
ByteHashBag. select(BytePredicate predicate)
MutableByteBag
SynchronizedByteBag. select(BytePredicate predicate)
MutableByteBag
UnmodifiableByteBag. select(BytePredicate predicate)
-
Uses of BytePredicate in org.eclipse.collections.impl.block.factory.primitive
Classes in org.eclipse.collections.impl.block.factory.primitive that implement BytePredicate Modifier and Type Class Description private static class
BytePredicates.AlwaysFalseBytePredicate
private static class
BytePredicates.AlwaysTrueBytePredicate
private static class
BytePredicates.AndBytePredicate
private static class
BytePredicates.ByteIsEvenPredicate
private static class
BytePredicates.ByteIsOddPredicate
private static class
BytePredicates.EqualsBytePredicate
private static class
BytePredicates.GreaterThanBytePredicate
private static class
BytePredicates.LessThanBytePredicate
private static class
BytePredicates.NotBytePredicate
private static class
BytePredicates.OrBytePredicate
Fields in org.eclipse.collections.impl.block.factory.primitive declared as BytePredicate Modifier and Type Field Description private static BytePredicate
BytePredicates. ALWAYS_FALSE
private static BytePredicate
BytePredicates. ALWAYS_TRUE
private BytePredicate
BytePredicates.NotBytePredicate. negate
private BytePredicate
BytePredicates.AndBytePredicate. one
private BytePredicate
BytePredicates.OrBytePredicate. one
private BytePredicate
BytePredicates.AndBytePredicate. two
private BytePredicate
BytePredicates.OrBytePredicate. two
Methods in org.eclipse.collections.impl.block.factory.primitive that return BytePredicate Modifier and Type Method Description static BytePredicate
BytePredicates. alwaysFalse()
static BytePredicate
BytePredicates. alwaysTrue()
static BytePredicate
BytePredicates. and(BytePredicate one, BytePredicate two)
static BytePredicate
BytePredicates. equal(byte expected)
static BytePredicate
BytePredicates. greaterThan(byte expected)
static BytePredicate
BytePredicates. isEven()
static BytePredicate
BytePredicates. isOdd()
static BytePredicate
BytePredicates. lessThan(byte expected)
static BytePredicate
BytePredicates. not(BytePredicate negate)
static BytePredicate
BytePredicates. or(BytePredicate one, BytePredicate two)
Methods in org.eclipse.collections.impl.block.factory.primitive with parameters of type BytePredicate Modifier and Type Method Description static BytePredicate
BytePredicates. and(BytePredicate one, BytePredicate two)
static BytePredicate
BytePredicates. not(BytePredicate negate)
static BytePredicate
BytePredicates. or(BytePredicate one, BytePredicate two)
Constructors in org.eclipse.collections.impl.block.factory.primitive with parameters of type BytePredicate Constructor Description AndBytePredicate(BytePredicate one, BytePredicate two)
NotBytePredicate(BytePredicate negate)
OrBytePredicate(BytePredicate one, BytePredicate two)
-
Uses of BytePredicate in org.eclipse.collections.impl.block.function.primitive
Fields in org.eclipse.collections.impl.block.function.primitive with type parameters of type BytePredicate Modifier and Type Field Description private MutableList<Pair<BytePredicate,ByteToObjectFunction<? extends V>>>
ByteCaseFunction. predicateFunctions
Methods in org.eclipse.collections.impl.block.function.primitive with parameters of type BytePredicate Modifier and Type Method Description ByteCaseFunction<V>
ByteCaseFunction. addCase(BytePredicate predicate, ByteToObjectFunction<? extends V> function)
-
Uses of BytePredicate in org.eclipse.collections.impl.block.procedure.primitive
Fields in org.eclipse.collections.impl.block.procedure.primitive with type parameters of type BytePredicate Modifier and Type Field Description private MutableList<Pair<BytePredicate,ByteProcedure>>
ByteCaseProcedure. predicateProcedures
Methods in org.eclipse.collections.impl.block.procedure.primitive with parameters of type BytePredicate Modifier and Type Method Description ByteCaseProcedure
ByteCaseProcedure. addCase(BytePredicate predicate, ByteProcedure procedure)
-
Uses of BytePredicate in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type BytePredicate Modifier and Type Method Description boolean
AbstractSynchronizedByteCollection. allSatisfy(BytePredicate predicate)
boolean
AbstractUnmodifiableByteCollection. allSatisfy(BytePredicate predicate)
boolean
AbstractSynchronizedByteCollection. anySatisfy(BytePredicate predicate)
boolean
AbstractUnmodifiableByteCollection. anySatisfy(BytePredicate predicate)
int
AbstractSynchronizedByteCollection. count(BytePredicate predicate)
int
AbstractUnmodifiableByteCollection. count(BytePredicate predicate)
byte
AbstractSynchronizedByteCollection. detectIfNone(BytePredicate predicate, byte ifNone)
byte
AbstractUnmodifiableByteCollection. detectIfNone(BytePredicate predicate, byte ifNone)
boolean
AbstractSynchronizedByteCollection. noneSatisfy(BytePredicate predicate)
boolean
AbstractUnmodifiableByteCollection. noneSatisfy(BytePredicate predicate)
MutableByteCollection
AbstractSynchronizedByteCollection. reject(BytePredicate predicate)
MutableByteCollection
AbstractUnmodifiableByteCollection. reject(BytePredicate predicate)
boolean
AbstractSynchronizedByteCollection. removeIf(BytePredicate predicate)
boolean
AbstractUnmodifiableByteCollection. removeIf(BytePredicate predicate)
MutableByteCollection
AbstractSynchronizedByteCollection. select(BytePredicate predicate)
MutableByteCollection
AbstractUnmodifiableByteCollection. select(BytePredicate predicate)
-
Uses of BytePredicate in org.eclipse.collections.impl.lazy.primitive
Fields in org.eclipse.collections.impl.lazy.primitive declared as BytePredicate Modifier and Type Field Description private BytePredicate
SelectByteIterable.CountByteProcedure. predicate
private BytePredicate
SelectByteIterable. predicate
private BytePredicate
SelectByteIterable.SelectByteIterator. predicate
Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type BytePredicate Modifier and Type Method Description boolean
AbstractLazyByteIterable. allSatisfy(BytePredicate predicate)
boolean
CollectByteIterable. allSatisfy(BytePredicate predicate)
boolean
LazyByteIterableAdapter. allSatisfy(BytePredicate predicate)
boolean
SelectByteIterable. allSatisfy(BytePredicate predicate)
boolean
TapByteIterable. allSatisfy(BytePredicate predicate)
boolean
AbstractLazyByteIterable. anySatisfy(BytePredicate predicate)
boolean
CollectByteIterable. anySatisfy(BytePredicate predicate)
boolean
LazyByteIterableAdapter. anySatisfy(BytePredicate predicate)
boolean
SelectByteIterable. anySatisfy(BytePredicate predicate)
boolean
TapByteIterable. anySatisfy(BytePredicate predicate)
int
AbstractLazyByteIterable. count(BytePredicate predicate)
int
CollectByteIterable. count(BytePredicate predicate)
int
LazyByteIterableAdapter. count(BytePredicate predicate)
int
SelectByteIterable. count(BytePredicate predicate)
byte
AbstractLazyByteIterable. detectIfNone(BytePredicate predicate, byte ifNone)
byte
LazyByteIterableAdapter. detectIfNone(BytePredicate predicate, byte ifNone)
byte
TapByteIterable. detectIfNone(BytePredicate predicate, byte ifNone)
boolean
AbstractLazyByteIterable. noneSatisfy(BytePredicate predicate)
boolean
LazyByteIterableAdapter. noneSatisfy(BytePredicate predicate)
boolean
TapByteIterable. noneSatisfy(BytePredicate predicate)
LazyByteIterable
AbstractLazyByteIterable. reject(BytePredicate predicate)
LazyByteIterable
AbstractLazyByteIterable. select(BytePredicate predicate)
Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type BytePredicate Constructor Description CountByteProcedure(BytePredicate predicate)
SelectByteIterable(ByteIterable delegate, BytePredicate predicate)
SelectByteIterator(ByteIterable iterable, BytePredicate predicate)
SelectByteIterator(ByteIterator iterator, BytePredicate predicate)
-
Uses of BytePredicate in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive with parameters of type BytePredicate Modifier and Type Method Description boolean
ImmutableByteArrayList. allSatisfy(BytePredicate predicate)
boolean
ImmutableByteEmptyList. allSatisfy(BytePredicate predicate)
boolean
ImmutableByteSingletonList. allSatisfy(BytePredicate predicate)
boolean
ImmutableByteArrayList. anySatisfy(BytePredicate predicate)
boolean
ImmutableByteEmptyList. anySatisfy(BytePredicate predicate)
boolean
ImmutableByteSingletonList. anySatisfy(BytePredicate predicate)
int
ImmutableByteArrayList. count(BytePredicate predicate)
int
ImmutableByteEmptyList. count(BytePredicate predicate)
int
ImmutableByteSingletonList. count(BytePredicate predicate)
byte
ImmutableByteArrayList. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ImmutableByteEmptyList. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ImmutableByteSingletonList. detectIfNone(BytePredicate predicate, byte ifNone)
boolean
ImmutableByteEmptyList. noneSatisfy(BytePredicate predicate)
boolean
ImmutableByteSingletonList. noneSatisfy(BytePredicate predicate)
ImmutableByteList
ImmutableByteArrayList. reject(BytePredicate predicate)
<R extends MutableByteCollection>
RImmutableByteArrayList. reject(BytePredicate predicate, R target)
ImmutableByteList
ImmutableByteEmptyList. reject(BytePredicate predicate)
ImmutableByteList
ImmutableByteSingletonList. reject(BytePredicate predicate)
ImmutableByteList
ImmutableByteArrayList. select(BytePredicate predicate)
<R extends MutableByteCollection>
RImmutableByteArrayList. select(BytePredicate predicate, R target)
ImmutableByteList
ImmutableByteEmptyList. select(BytePredicate predicate)
ImmutableByteList
ImmutableByteSingletonList. select(BytePredicate predicate)
-
Uses of BytePredicate in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type BytePredicate Modifier and Type Method Description boolean
ByteArrayList. allSatisfy(BytePredicate predicate)
boolean
ByteArrayList. anySatisfy(BytePredicate predicate)
int
ByteArrayList. count(BytePredicate predicate)
byte
ByteArrayList. detectIfNone(BytePredicate predicate, byte ifNone)
ByteArrayList
ByteArrayList. reject(BytePredicate predicate)
<R extends MutableByteCollection>
RByteArrayList. reject(BytePredicate predicate, R target)
MutableByteList
SynchronizedByteList. reject(BytePredicate predicate)
MutableByteList
UnmodifiableByteList. reject(BytePredicate predicate)
boolean
ByteArrayList. removeIf(BytePredicate predicate)
ByteArrayList
ByteArrayList. select(BytePredicate predicate)
<R extends MutableByteCollection>
RByteArrayList. select(BytePredicate predicate, R target)
MutableByteList
SynchronizedByteList. select(BytePredicate predicate)
MutableByteList
UnmodifiableByteList. select(BytePredicate predicate)
-
Uses of BytePredicate in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type BytePredicate Modifier and Type Method Description boolean
ImmutableByteByteEmptyMap. allSatisfy(BytePredicate predicate)
boolean
ImmutableByteByteHashMap. allSatisfy(BytePredicate predicate)
boolean
ImmutableByteByteSingletonMap. allSatisfy(BytePredicate predicate)
boolean
ImmutableCharByteEmptyMap. allSatisfy(BytePredicate predicate)
boolean
ImmutableCharByteHashMap. allSatisfy(BytePredicate predicate)
boolean
ImmutableCharByteSingletonMap. allSatisfy(BytePredicate predicate)
boolean
ImmutableDoubleByteEmptyMap. allSatisfy(BytePredicate predicate)
boolean
ImmutableDoubleByteHashMap. allSatisfy(BytePredicate predicate)
boolean
ImmutableDoubleByteSingletonMap. allSatisfy(BytePredicate predicate)
boolean
ImmutableFloatByteEmptyMap. allSatisfy(BytePredicate predicate)
boolean
ImmutableFloatByteHashMap. allSatisfy(BytePredicate predicate)
boolean
ImmutableFloatByteSingletonMap. allSatisfy(BytePredicate predicate)
boolean
ImmutableIntByteEmptyMap. allSatisfy(BytePredicate predicate)
boolean
ImmutableIntByteHashMap. allSatisfy(BytePredicate predicate)
boolean
ImmutableIntByteSingletonMap. allSatisfy(BytePredicate predicate)
boolean
ImmutableLongByteEmptyMap. allSatisfy(BytePredicate predicate)
boolean
ImmutableLongByteHashMap. allSatisfy(BytePredicate predicate)
boolean
ImmutableLongByteSingletonMap. allSatisfy(BytePredicate predicate)
boolean
ImmutableObjectByteEmptyMap. allSatisfy(BytePredicate predicate)
boolean
ImmutableObjectByteHashMap. allSatisfy(BytePredicate predicate)
boolean
ImmutableObjectByteSingletonMap. allSatisfy(BytePredicate predicate)
boolean
ImmutableShortByteEmptyMap. allSatisfy(BytePredicate predicate)
boolean
ImmutableShortByteHashMap. allSatisfy(BytePredicate predicate)
boolean
ImmutableShortByteSingletonMap. allSatisfy(BytePredicate predicate)
boolean
ImmutableByteByteEmptyMap. anySatisfy(BytePredicate predicate)
boolean
ImmutableByteByteHashMap. anySatisfy(BytePredicate predicate)
boolean
ImmutableByteByteSingletonMap. anySatisfy(BytePredicate predicate)
boolean
ImmutableCharByteEmptyMap. anySatisfy(BytePredicate predicate)
boolean
ImmutableCharByteHashMap. anySatisfy(BytePredicate predicate)
boolean
ImmutableCharByteSingletonMap. anySatisfy(BytePredicate predicate)
boolean
ImmutableDoubleByteEmptyMap. anySatisfy(BytePredicate predicate)
boolean
ImmutableDoubleByteHashMap. anySatisfy(BytePredicate predicate)
boolean
ImmutableDoubleByteSingletonMap. anySatisfy(BytePredicate predicate)
boolean
ImmutableFloatByteEmptyMap. anySatisfy(BytePredicate predicate)
boolean
ImmutableFloatByteHashMap. anySatisfy(BytePredicate predicate)
boolean
ImmutableFloatByteSingletonMap. anySatisfy(BytePredicate predicate)
boolean
ImmutableIntByteEmptyMap. anySatisfy(BytePredicate predicate)
boolean
ImmutableIntByteHashMap. anySatisfy(BytePredicate predicate)
boolean
ImmutableIntByteSingletonMap. anySatisfy(BytePredicate predicate)
boolean
ImmutableLongByteEmptyMap. anySatisfy(BytePredicate predicate)
boolean
ImmutableLongByteHashMap. anySatisfy(BytePredicate predicate)
boolean
ImmutableLongByteSingletonMap. anySatisfy(BytePredicate predicate)
boolean
ImmutableObjectByteEmptyMap. anySatisfy(BytePredicate predicate)
boolean
ImmutableObjectByteHashMap. anySatisfy(BytePredicate predicate)
boolean
ImmutableObjectByteSingletonMap. anySatisfy(BytePredicate predicate)
boolean
ImmutableShortByteEmptyMap. anySatisfy(BytePredicate predicate)
boolean
ImmutableShortByteHashMap. anySatisfy(BytePredicate predicate)
boolean
ImmutableShortByteSingletonMap. anySatisfy(BytePredicate predicate)
int
ImmutableByteByteEmptyMap. count(BytePredicate predicate)
int
ImmutableByteByteHashMap. count(BytePredicate predicate)
int
ImmutableByteByteSingletonMap. count(BytePredicate predicate)
int
ImmutableCharByteEmptyMap. count(BytePredicate predicate)
int
ImmutableCharByteHashMap. count(BytePredicate predicate)
int
ImmutableCharByteSingletonMap. count(BytePredicate predicate)
int
ImmutableDoubleByteEmptyMap. count(BytePredicate predicate)
int
ImmutableDoubleByteHashMap. count(BytePredicate predicate)
int
ImmutableDoubleByteSingletonMap. count(BytePredicate predicate)
int
ImmutableFloatByteEmptyMap. count(BytePredicate predicate)
int
ImmutableFloatByteHashMap. count(BytePredicate predicate)
int
ImmutableFloatByteSingletonMap. count(BytePredicate predicate)
int
ImmutableIntByteEmptyMap. count(BytePredicate predicate)
int
ImmutableIntByteHashMap. count(BytePredicate predicate)
int
ImmutableIntByteSingletonMap. count(BytePredicate predicate)
int
ImmutableLongByteEmptyMap. count(BytePredicate predicate)
int
ImmutableLongByteHashMap. count(BytePredicate predicate)
int
ImmutableLongByteSingletonMap. count(BytePredicate predicate)
int
ImmutableObjectByteEmptyMap. count(BytePredicate predicate)
int
ImmutableObjectByteHashMap. count(BytePredicate predicate)
int
ImmutableObjectByteSingletonMap. count(BytePredicate predicate)
int
ImmutableShortByteEmptyMap. count(BytePredicate predicate)
int
ImmutableShortByteHashMap. count(BytePredicate predicate)
int
ImmutableShortByteSingletonMap. count(BytePredicate predicate)
byte
ImmutableByteByteEmptyMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ImmutableByteByteHashMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ImmutableByteByteSingletonMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ImmutableCharByteEmptyMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ImmutableCharByteHashMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ImmutableCharByteSingletonMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ImmutableDoubleByteEmptyMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ImmutableDoubleByteHashMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ImmutableDoubleByteSingletonMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ImmutableFloatByteEmptyMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ImmutableFloatByteHashMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ImmutableFloatByteSingletonMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ImmutableIntByteEmptyMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ImmutableIntByteHashMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ImmutableIntByteSingletonMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ImmutableLongByteEmptyMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ImmutableLongByteHashMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ImmutableLongByteSingletonMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ImmutableObjectByteEmptyMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ImmutableObjectByteHashMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ImmutableObjectByteSingletonMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ImmutableShortByteEmptyMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ImmutableShortByteHashMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ImmutableShortByteSingletonMap. detectIfNone(BytePredicate predicate, byte ifNone)
boolean
ImmutableByteByteEmptyMap. noneSatisfy(BytePredicate predicate)
boolean
ImmutableByteByteHashMap. noneSatisfy(BytePredicate predicate)
boolean
ImmutableByteByteSingletonMap. noneSatisfy(BytePredicate predicate)
boolean
ImmutableCharByteEmptyMap. noneSatisfy(BytePredicate predicate)
boolean
ImmutableCharByteHashMap. noneSatisfy(BytePredicate predicate)
boolean
ImmutableCharByteSingletonMap. noneSatisfy(BytePredicate predicate)
boolean
ImmutableDoubleByteEmptyMap. noneSatisfy(BytePredicate predicate)
boolean
ImmutableDoubleByteHashMap. noneSatisfy(BytePredicate predicate)
boolean
ImmutableDoubleByteSingletonMap. noneSatisfy(BytePredicate predicate)
boolean
ImmutableFloatByteEmptyMap. noneSatisfy(BytePredicate predicate)
boolean
ImmutableFloatByteHashMap. noneSatisfy(BytePredicate predicate)
boolean
ImmutableFloatByteSingletonMap. noneSatisfy(BytePredicate predicate)
boolean
ImmutableIntByteEmptyMap. noneSatisfy(BytePredicate predicate)
boolean
ImmutableIntByteHashMap. noneSatisfy(BytePredicate predicate)
boolean
ImmutableIntByteSingletonMap. noneSatisfy(BytePredicate predicate)
boolean
ImmutableLongByteEmptyMap. noneSatisfy(BytePredicate predicate)
boolean
ImmutableLongByteHashMap. noneSatisfy(BytePredicate predicate)
boolean
ImmutableLongByteSingletonMap. noneSatisfy(BytePredicate predicate)
boolean
ImmutableObjectByteEmptyMap. noneSatisfy(BytePredicate predicate)
boolean
ImmutableObjectByteHashMap. noneSatisfy(BytePredicate predicate)
boolean
ImmutableObjectByteSingletonMap. noneSatisfy(BytePredicate predicate)
boolean
ImmutableShortByteEmptyMap. noneSatisfy(BytePredicate predicate)
boolean
ImmutableShortByteHashMap. noneSatisfy(BytePredicate predicate)
boolean
ImmutableShortByteSingletonMap. noneSatisfy(BytePredicate predicate)
ImmutableByteBag
ImmutableByteByteEmptyMap. reject(BytePredicate predicate)
ImmutableByteBag
ImmutableByteByteHashMap. reject(BytePredicate predicate)
ImmutableByteBag
ImmutableByteByteSingletonMap. reject(BytePredicate predicate)
ImmutableByteBag
ImmutableCharByteEmptyMap. reject(BytePredicate predicate)
ImmutableByteBag
ImmutableCharByteHashMap. reject(BytePredicate predicate)
ImmutableByteBag
ImmutableCharByteSingletonMap. reject(BytePredicate predicate)
ImmutableByteBag
ImmutableDoubleByteEmptyMap. reject(BytePredicate predicate)
ImmutableByteBag
ImmutableDoubleByteHashMap. reject(BytePredicate predicate)
ImmutableByteBag
ImmutableDoubleByteSingletonMap. reject(BytePredicate predicate)
ImmutableByteBag
ImmutableFloatByteEmptyMap. reject(BytePredicate predicate)
ImmutableByteBag
ImmutableFloatByteHashMap. reject(BytePredicate predicate)
ImmutableByteBag
ImmutableFloatByteSingletonMap. reject(BytePredicate predicate)
ImmutableByteBag
ImmutableIntByteEmptyMap. reject(BytePredicate predicate)
ImmutableByteBag
ImmutableIntByteHashMap. reject(BytePredicate predicate)
ImmutableByteBag
ImmutableIntByteSingletonMap. reject(BytePredicate predicate)
ImmutableByteBag
ImmutableLongByteEmptyMap. reject(BytePredicate predicate)
ImmutableByteBag
ImmutableLongByteHashMap. reject(BytePredicate predicate)
ImmutableByteBag
ImmutableLongByteSingletonMap. reject(BytePredicate predicate)
ImmutableByteCollection
ImmutableObjectByteEmptyMap. reject(BytePredicate predicate)
ImmutableByteCollection
ImmutableObjectByteHashMap. reject(BytePredicate predicate)
ImmutableByteCollection
ImmutableObjectByteSingletonMap. reject(BytePredicate predicate)
ImmutableByteBag
ImmutableShortByteEmptyMap. reject(BytePredicate predicate)
ImmutableByteBag
ImmutableShortByteHashMap. reject(BytePredicate predicate)
ImmutableByteBag
ImmutableShortByteSingletonMap. reject(BytePredicate predicate)
ImmutableByteBag
ImmutableByteByteEmptyMap. select(BytePredicate predicate)
ImmutableByteBag
ImmutableByteByteHashMap. select(BytePredicate predicate)
ImmutableByteBag
ImmutableByteByteSingletonMap. select(BytePredicate predicate)
ImmutableByteBag
ImmutableCharByteEmptyMap. select(BytePredicate predicate)
ImmutableByteBag
ImmutableCharByteHashMap. select(BytePredicate predicate)
ImmutableByteBag
ImmutableCharByteSingletonMap. select(BytePredicate predicate)
ImmutableByteBag
ImmutableDoubleByteEmptyMap. select(BytePredicate predicate)
ImmutableByteBag
ImmutableDoubleByteHashMap. select(BytePredicate predicate)
ImmutableByteBag
ImmutableDoubleByteSingletonMap. select(BytePredicate predicate)
ImmutableByteBag
ImmutableFloatByteEmptyMap. select(BytePredicate predicate)
ImmutableByteBag
ImmutableFloatByteHashMap. select(BytePredicate predicate)
ImmutableByteBag
ImmutableFloatByteSingletonMap. select(BytePredicate predicate)
ImmutableByteBag
ImmutableIntByteEmptyMap. select(BytePredicate predicate)
ImmutableByteBag
ImmutableIntByteHashMap. select(BytePredicate predicate)
ImmutableByteBag
ImmutableIntByteSingletonMap. select(BytePredicate predicate)
ImmutableByteBag
ImmutableLongByteEmptyMap. select(BytePredicate predicate)
ImmutableByteBag
ImmutableLongByteHashMap. select(BytePredicate predicate)
ImmutableByteBag
ImmutableLongByteSingletonMap. select(BytePredicate predicate)
ImmutableByteCollection
ImmutableObjectByteEmptyMap. select(BytePredicate predicate)
ImmutableByteCollection
ImmutableObjectByteHashMap. select(BytePredicate predicate)
ImmutableByteCollection
ImmutableObjectByteSingletonMap. select(BytePredicate predicate)
ImmutableByteBag
ImmutableShortByteEmptyMap. select(BytePredicate predicate)
ImmutableByteBag
ImmutableShortByteHashMap. select(BytePredicate predicate)
ImmutableByteBag
ImmutableShortByteSingletonMap. select(BytePredicate predicate)
-
Uses of BytePredicate in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type BytePredicate Modifier and Type Method Description boolean
AbstractMutableByteKeySet. allSatisfy(BytePredicate predicate)
boolean
AbstractMutableByteValuesMap.AbstractByteValuesCollection. allSatisfy(BytePredicate predicate)
boolean
AbstractMutableByteValuesMap. allSatisfy(BytePredicate predicate)
boolean
ByteBooleanHashMap.KeysView. allSatisfy(BytePredicate predicate)
boolean
ImmutableByteByteMapKeySet. allSatisfy(BytePredicate predicate)
boolean
ImmutableByteMapKeySet. allSatisfy(BytePredicate predicate)
boolean
ObjectByteHashMap. allSatisfy(BytePredicate predicate)
boolean
ObjectByteHashMap.ValuesCollection. allSatisfy(BytePredicate predicate)
boolean
ObjectByteHashMapWithHashingStrategy. allSatisfy(BytePredicate predicate)
boolean
ObjectByteHashMapWithHashingStrategy.ValuesCollection. allSatisfy(BytePredicate predicate)
boolean
SynchronizedByteByteMap. allSatisfy(BytePredicate predicate)
boolean
SynchronizedCharByteMap. allSatisfy(BytePredicate predicate)
boolean
SynchronizedDoubleByteMap. allSatisfy(BytePredicate predicate)
boolean
SynchronizedFloatByteMap. allSatisfy(BytePredicate predicate)
boolean
SynchronizedIntByteMap. allSatisfy(BytePredicate predicate)
boolean
SynchronizedLongByteMap. allSatisfy(BytePredicate predicate)
boolean
SynchronizedObjectByteMap. allSatisfy(BytePredicate predicate)
boolean
SynchronizedShortByteMap. allSatisfy(BytePredicate predicate)
boolean
UnmodifiableByteByteMap. allSatisfy(BytePredicate predicate)
boolean
UnmodifiableCharByteMap. allSatisfy(BytePredicate predicate)
boolean
UnmodifiableDoubleByteMap. allSatisfy(BytePredicate predicate)
boolean
UnmodifiableFloatByteMap. allSatisfy(BytePredicate predicate)
boolean
UnmodifiableIntByteMap. allSatisfy(BytePredicate predicate)
boolean
UnmodifiableLongByteMap. allSatisfy(BytePredicate predicate)
boolean
UnmodifiableObjectByteMap. allSatisfy(BytePredicate predicate)
boolean
UnmodifiableShortByteMap. allSatisfy(BytePredicate predicate)
boolean
AbstractMutableByteKeySet. anySatisfy(BytePredicate predicate)
boolean
AbstractMutableByteValuesMap.AbstractByteValuesCollection. anySatisfy(BytePredicate predicate)
boolean
AbstractMutableByteValuesMap. anySatisfy(BytePredicate predicate)
boolean
ByteBooleanHashMap.KeysView. anySatisfy(BytePredicate predicate)
boolean
ImmutableByteByteMapKeySet. anySatisfy(BytePredicate predicate)
boolean
ImmutableByteMapKeySet. anySatisfy(BytePredicate predicate)
boolean
ObjectByteHashMap. anySatisfy(BytePredicate predicate)
boolean
ObjectByteHashMap.ValuesCollection. anySatisfy(BytePredicate predicate)
boolean
ObjectByteHashMapWithHashingStrategy. anySatisfy(BytePredicate predicate)
boolean
ObjectByteHashMapWithHashingStrategy.ValuesCollection. anySatisfy(BytePredicate predicate)
boolean
SynchronizedByteByteMap. anySatisfy(BytePredicate predicate)
boolean
SynchronizedCharByteMap. anySatisfy(BytePredicate predicate)
boolean
SynchronizedDoubleByteMap. anySatisfy(BytePredicate predicate)
boolean
SynchronizedFloatByteMap. anySatisfy(BytePredicate predicate)
boolean
SynchronizedIntByteMap. anySatisfy(BytePredicate predicate)
boolean
SynchronizedLongByteMap. anySatisfy(BytePredicate predicate)
boolean
SynchronizedObjectByteMap. anySatisfy(BytePredicate predicate)
boolean
SynchronizedShortByteMap. anySatisfy(BytePredicate predicate)
boolean
UnmodifiableByteByteMap. anySatisfy(BytePredicate predicate)
boolean
UnmodifiableCharByteMap. anySatisfy(BytePredicate predicate)
boolean
UnmodifiableDoubleByteMap. anySatisfy(BytePredicate predicate)
boolean
UnmodifiableFloatByteMap. anySatisfy(BytePredicate predicate)
boolean
UnmodifiableIntByteMap. anySatisfy(BytePredicate predicate)
boolean
UnmodifiableLongByteMap. anySatisfy(BytePredicate predicate)
boolean
UnmodifiableObjectByteMap. anySatisfy(BytePredicate predicate)
boolean
UnmodifiableShortByteMap. anySatisfy(BytePredicate predicate)
int
AbstractMutableByteKeySet. count(BytePredicate predicate)
int
AbstractMutableByteValuesMap.AbstractByteValuesCollection. count(BytePredicate predicate)
int
AbstractMutableByteValuesMap. count(BytePredicate predicate)
int
ByteBooleanHashMap.KeysView. count(BytePredicate predicate)
int
ImmutableByteByteMapKeySet. count(BytePredicate predicate)
int
ImmutableByteMapKeySet. count(BytePredicate predicate)
int
ObjectByteHashMap. count(BytePredicate predicate)
int
ObjectByteHashMap.ValuesCollection. count(BytePredicate predicate)
int
ObjectByteHashMapWithHashingStrategy. count(BytePredicate predicate)
int
ObjectByteHashMapWithHashingStrategy.ValuesCollection. count(BytePredicate predicate)
int
SynchronizedByteByteMap. count(BytePredicate predicate)
int
SynchronizedCharByteMap. count(BytePredicate predicate)
int
SynchronizedDoubleByteMap. count(BytePredicate predicate)
int
SynchronizedFloatByteMap. count(BytePredicate predicate)
int
SynchronizedIntByteMap. count(BytePredicate predicate)
int
SynchronizedLongByteMap. count(BytePredicate predicate)
int
SynchronizedObjectByteMap. count(BytePredicate predicate)
int
SynchronizedShortByteMap. count(BytePredicate predicate)
int
UnmodifiableByteByteMap. count(BytePredicate predicate)
int
UnmodifiableCharByteMap. count(BytePredicate predicate)
int
UnmodifiableDoubleByteMap. count(BytePredicate predicate)
int
UnmodifiableFloatByteMap. count(BytePredicate predicate)
int
UnmodifiableIntByteMap. count(BytePredicate predicate)
int
UnmodifiableLongByteMap. count(BytePredicate predicate)
int
UnmodifiableObjectByteMap. count(BytePredicate predicate)
int
UnmodifiableShortByteMap. count(BytePredicate predicate)
byte
AbstractMutableByteKeySet. detectIfNone(BytePredicate predicate, byte ifNone)
byte
AbstractMutableByteValuesMap.AbstractByteValuesCollection. detectIfNone(BytePredicate predicate, byte ifNone)
byte
AbstractMutableByteValuesMap. detectIfNone(BytePredicate predicate, byte value)
byte
ByteBooleanHashMap.KeysView. detectIfNone(BytePredicate predicate, byte value)
byte
ImmutableByteByteMapKeySet. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ImmutableByteMapKeySet. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ObjectByteHashMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ObjectByteHashMap.ValuesCollection. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ObjectByteHashMapWithHashingStrategy. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ObjectByteHashMapWithHashingStrategy.ValuesCollection. detectIfNone(BytePredicate predicate, byte ifNone)
byte
SynchronizedByteByteMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
SynchronizedCharByteMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
SynchronizedDoubleByteMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
SynchronizedFloatByteMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
SynchronizedIntByteMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
SynchronizedLongByteMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
SynchronizedObjectByteMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
SynchronizedShortByteMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
UnmodifiableByteByteMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
UnmodifiableCharByteMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
UnmodifiableDoubleByteMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
UnmodifiableFloatByteMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
UnmodifiableIntByteMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
UnmodifiableLongByteMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
UnmodifiableObjectByteMap. detectIfNone(BytePredicate predicate, byte ifNone)
byte
UnmodifiableShortByteMap. detectIfNone(BytePredicate predicate, byte ifNone)
boolean
AbstractMutableByteValuesMap.AbstractByteValuesCollection. noneSatisfy(BytePredicate predicate)
boolean
ImmutableByteByteMapKeySet. noneSatisfy(BytePredicate predicate)
boolean
ImmutableByteMapKeySet. noneSatisfy(BytePredicate predicate)
boolean
ObjectByteHashMap. noneSatisfy(BytePredicate predicate)
boolean
ObjectByteHashMap.ValuesCollection. noneSatisfy(BytePredicate predicate)
boolean
ObjectByteHashMapWithHashingStrategy. noneSatisfy(BytePredicate predicate)
boolean
ObjectByteHashMapWithHashingStrategy.ValuesCollection. noneSatisfy(BytePredicate predicate)
boolean
SynchronizedByteByteMap. noneSatisfy(BytePredicate predicate)
boolean
SynchronizedCharByteMap. noneSatisfy(BytePredicate predicate)
boolean
SynchronizedDoubleByteMap. noneSatisfy(BytePredicate predicate)
boolean
SynchronizedFloatByteMap. noneSatisfy(BytePredicate predicate)
boolean
SynchronizedIntByteMap. noneSatisfy(BytePredicate predicate)
boolean
SynchronizedLongByteMap. noneSatisfy(BytePredicate predicate)
boolean
SynchronizedObjectByteMap. noneSatisfy(BytePredicate predicate)
boolean
SynchronizedShortByteMap. noneSatisfy(BytePredicate predicate)
boolean
UnmodifiableByteByteMap. noneSatisfy(BytePredicate predicate)
boolean
UnmodifiableCharByteMap. noneSatisfy(BytePredicate predicate)
boolean
UnmodifiableDoubleByteMap. noneSatisfy(BytePredicate predicate)
boolean
UnmodifiableFloatByteMap. noneSatisfy(BytePredicate predicate)
boolean
UnmodifiableIntByteMap. noneSatisfy(BytePredicate predicate)
boolean
UnmodifiableLongByteMap. noneSatisfy(BytePredicate predicate)
boolean
UnmodifiableObjectByteMap. noneSatisfy(BytePredicate predicate)
boolean
UnmodifiableShortByteMap. noneSatisfy(BytePredicate predicate)
MutableByteSet
AbstractMutableByteKeySet. reject(BytePredicate predicate)
MutableByteCollection
AbstractMutableByteValuesMap.AbstractByteValuesCollection. reject(BytePredicate predicate)
MutableByteBag
AbstractMutableByteValuesMap. reject(BytePredicate predicate)
ImmutableByteSet
ImmutableByteByteMapKeySet. reject(BytePredicate predicate)
ImmutableByteSet
ImmutableByteMapKeySet. reject(BytePredicate predicate)
MutableByteCollection
ObjectByteHashMap. reject(BytePredicate predicate)
MutableByteCollection
ObjectByteHashMap.ValuesCollection. reject(BytePredicate predicate)
MutableByteCollection
ObjectByteHashMapWithHashingStrategy. reject(BytePredicate predicate)
MutableByteCollection
ObjectByteHashMapWithHashingStrategy.ValuesCollection. reject(BytePredicate predicate)
MutableByteBag
SynchronizedByteByteMap. reject(BytePredicate predicate)
MutableByteBag
SynchronizedCharByteMap. reject(BytePredicate predicate)
MutableByteBag
SynchronizedDoubleByteMap. reject(BytePredicate predicate)
MutableByteBag
SynchronizedFloatByteMap. reject(BytePredicate predicate)
MutableByteBag
SynchronizedIntByteMap. reject(BytePredicate predicate)
MutableByteBag
SynchronizedLongByteMap. reject(BytePredicate predicate)
MutableByteCollection
SynchronizedObjectByteMap. reject(BytePredicate predicate)
MutableByteBag
SynchronizedShortByteMap. reject(BytePredicate predicate)
MutableByteBag
UnmodifiableByteByteMap. reject(BytePredicate predicate)
MutableByteBag
UnmodifiableCharByteMap. reject(BytePredicate predicate)
MutableByteBag
UnmodifiableDoubleByteMap. reject(BytePredicate predicate)
MutableByteBag
UnmodifiableFloatByteMap. reject(BytePredicate predicate)
MutableByteBag
UnmodifiableIntByteMap. reject(BytePredicate predicate)
MutableByteBag
UnmodifiableLongByteMap. reject(BytePredicate predicate)
MutableByteCollection
UnmodifiableObjectByteMap. reject(BytePredicate predicate)
MutableByteBag
UnmodifiableShortByteMap. reject(BytePredicate predicate)
MutableByteSet
AbstractMutableByteKeySet. select(BytePredicate predicate)
MutableByteCollection
AbstractMutableByteValuesMap.AbstractByteValuesCollection. select(BytePredicate predicate)
MutableByteBag
AbstractMutableByteValuesMap. select(BytePredicate predicate)
ImmutableByteSet
ImmutableByteByteMapKeySet. select(BytePredicate predicate)
ImmutableByteSet
ImmutableByteMapKeySet. select(BytePredicate predicate)
MutableByteCollection
ObjectByteHashMap. select(BytePredicate predicate)
MutableByteCollection
ObjectByteHashMap.ValuesCollection. select(BytePredicate predicate)
MutableByteCollection
ObjectByteHashMapWithHashingStrategy. select(BytePredicate predicate)
MutableByteCollection
ObjectByteHashMapWithHashingStrategy.ValuesCollection. select(BytePredicate predicate)
MutableByteBag
SynchronizedByteByteMap. select(BytePredicate predicate)
MutableByteBag
SynchronizedCharByteMap. select(BytePredicate predicate)
MutableByteBag
SynchronizedDoubleByteMap. select(BytePredicate predicate)
MutableByteBag
SynchronizedFloatByteMap. select(BytePredicate predicate)
MutableByteBag
SynchronizedIntByteMap. select(BytePredicate predicate)
MutableByteBag
SynchronizedLongByteMap. select(BytePredicate predicate)
MutableByteCollection
SynchronizedObjectByteMap. select(BytePredicate predicate)
MutableByteBag
SynchronizedShortByteMap. select(BytePredicate predicate)
MutableByteBag
UnmodifiableByteByteMap. select(BytePredicate predicate)
MutableByteBag
UnmodifiableCharByteMap. select(BytePredicate predicate)
MutableByteBag
UnmodifiableDoubleByteMap. select(BytePredicate predicate)
MutableByteBag
UnmodifiableFloatByteMap. select(BytePredicate predicate)
MutableByteBag
UnmodifiableIntByteMap. select(BytePredicate predicate)
MutableByteBag
UnmodifiableLongByteMap. select(BytePredicate predicate)
MutableByteCollection
UnmodifiableObjectByteMap. select(BytePredicate predicate)
MutableByteBag
UnmodifiableShortByteMap. select(BytePredicate predicate)
-
Uses of BytePredicate in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive with parameters of type BytePredicate Modifier and Type Method Description boolean
SynchronizedByteIterable. allSatisfy(BytePredicate predicate)
boolean
SynchronizedByteIterable. anySatisfy(BytePredicate predicate)
int
SynchronizedByteIterable. count(BytePredicate predicate)
byte
SynchronizedByteIterable. detectIfNone(BytePredicate predicate, byte ifNone)
boolean
SynchronizedByteIterable. noneSatisfy(BytePredicate predicate)
ByteIterable
SynchronizedByteIterable. reject(BytePredicate predicate)
ByteIterable
SynchronizedByteIterable. select(BytePredicate predicate)
-
Uses of BytePredicate in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive with parameters of type BytePredicate Modifier and Type Method Description boolean
ImmutableByteEmptySet. allSatisfy(BytePredicate predicate)
boolean
ImmutableByteSingletonSet. allSatisfy(BytePredicate predicate)
boolean
ImmutableByteEmptySet. anySatisfy(BytePredicate predicate)
boolean
ImmutableByteSingletonSet. anySatisfy(BytePredicate predicate)
int
ImmutableByteEmptySet. count(BytePredicate predicate)
int
ImmutableByteSingletonSet. count(BytePredicate predicate)
byte
ImmutableByteEmptySet. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ImmutableByteSingletonSet. detectIfNone(BytePredicate predicate, byte ifNone)
boolean
ImmutableByteEmptySet. noneSatisfy(BytePredicate predicate)
boolean
ImmutableByteSingletonSet. noneSatisfy(BytePredicate predicate)
ImmutableByteSet
ImmutableByteEmptySet. reject(BytePredicate predicate)
ImmutableByteSet
ImmutableByteSingletonSet. reject(BytePredicate predicate)
ImmutableByteSet
ImmutableByteEmptySet. select(BytePredicate predicate)
ImmutableByteSet
ImmutableByteSingletonSet. select(BytePredicate predicate)
-
Uses of BytePredicate in org.eclipse.collections.impl.set.mutable.primitive
Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type BytePredicate Modifier and Type Method Description boolean
ByteHashSet. allSatisfy(BytePredicate predicate)
boolean
ByteHashSet.ImmutableByteHashSet. allSatisfy(BytePredicate predicate)
boolean
ByteHashSet. anySatisfy(BytePredicate predicate)
boolean
ByteHashSet.ImmutableByteHashSet. anySatisfy(BytePredicate predicate)
int
ByteHashSet. count(BytePredicate predicate)
int
ByteHashSet.ImmutableByteHashSet. count(BytePredicate predicate)
byte
ByteHashSet. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ByteHashSet.ImmutableByteHashSet. detectIfNone(BytePredicate predicate, byte ifNone)
boolean
ByteHashSet.ImmutableByteHashSet. noneSatisfy(BytePredicate predicate)
boolean
ByteHashSet. noneSatisfy(BytePredicate predicate)
ImmutableByteSet
ByteHashSet.ImmutableByteHashSet. reject(BytePredicate predicate)
MutableByteSet
ByteHashSet. reject(BytePredicate predicate)
MutableByteSet
SynchronizedByteSet. reject(BytePredicate predicate)
MutableByteSet
UnmodifiableByteSet. reject(BytePredicate predicate)
ImmutableByteSet
ByteHashSet.ImmutableByteHashSet. select(BytePredicate predicate)
ByteHashSet
ByteHashSet. select(BytePredicate predicate)
MutableByteSet
SynchronizedByteSet. select(BytePredicate predicate)
MutableByteSet
UnmodifiableByteSet. select(BytePredicate predicate)
-
Uses of BytePredicate in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type BytePredicate Modifier and Type Method Description boolean
ImmutableByteEmptyStack. allSatisfy(BytePredicate predicate)
boolean
ImmutableByteSingletonStack. allSatisfy(BytePredicate predicate)
boolean
ImmutableByteEmptyStack. anySatisfy(BytePredicate predicate)
boolean
ImmutableByteSingletonStack. anySatisfy(BytePredicate predicate)
int
ImmutableByteEmptyStack. count(BytePredicate predicate)
int
ImmutableByteSingletonStack. count(BytePredicate predicate)
byte
ImmutableByteEmptyStack. detectIfNone(BytePredicate predicate, byte ifNone)
byte
ImmutableByteSingletonStack. detectIfNone(BytePredicate predicate, byte ifNone)
boolean
ImmutableByteEmptyStack. noneSatisfy(BytePredicate predicate)
boolean
ImmutableByteSingletonStack. noneSatisfy(BytePredicate predicate)
ImmutableByteStack
ImmutableByteArrayStack. reject(BytePredicate predicate)
ImmutableByteStack
ImmutableByteEmptyStack. reject(BytePredicate predicate)
ImmutableByteStack
ImmutableByteSingletonStack. reject(BytePredicate predicate)
ImmutableByteStack
ImmutableByteArrayStack. select(BytePredicate predicate)
ImmutableByteStack
ImmutableByteEmptyStack. select(BytePredicate predicate)
ImmutableByteStack
ImmutableByteSingletonStack. select(BytePredicate predicate)
-
Uses of BytePredicate in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type BytePredicate Modifier and Type Method Description boolean
SynchronizedByteStack. allSatisfy(BytePredicate predicate)
boolean
UnmodifiableByteStack. allSatisfy(BytePredicate predicate)
boolean
SynchronizedByteStack. anySatisfy(BytePredicate predicate)
boolean
UnmodifiableByteStack. anySatisfy(BytePredicate predicate)
int
SynchronizedByteStack. count(BytePredicate predicate)
int
UnmodifiableByteStack. count(BytePredicate predicate)
byte
SynchronizedByteStack. detectIfNone(BytePredicate predicate, byte ifNone)
byte
UnmodifiableByteStack. detectIfNone(BytePredicate predicate, byte ifNone)
boolean
SynchronizedByteStack. noneSatisfy(BytePredicate predicate)
boolean
UnmodifiableByteStack. noneSatisfy(BytePredicate predicate)
MutableByteStack
ByteArrayStack. reject(BytePredicate predicate)
MutableByteStack
SynchronizedByteStack. reject(BytePredicate predicate)
MutableByteStack
UnmodifiableByteStack. reject(BytePredicate predicate)
MutableByteStack
ByteArrayStack. select(BytePredicate predicate)
MutableByteStack
SynchronizedByteStack. select(BytePredicate predicate)
MutableByteStack
UnmodifiableByteStack. select(BytePredicate predicate)
-
Uses of BytePredicate in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive with parameters of type BytePredicate Modifier and Type Method Description boolean
AbstractByteStack. allSatisfy(BytePredicate predicate)
boolean
AbstractByteStack. anySatisfy(BytePredicate predicate)
int
AbstractByteStack. count(BytePredicate predicate)
byte
AbstractByteStack. detectIfNone(BytePredicate predicate, byte ifNone)
boolean
AbstractByteStack. noneSatisfy(BytePredicate predicate)
-
Uses of BytePredicate in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with parameters of type BytePredicate Modifier and Type Method Description static boolean
ByteIterableIterate. allSatisfy(ByteIterable iterable, BytePredicate predicate)
static boolean
ByteIteratorIterate. allSatisfy(ByteIterator iterator, BytePredicate predicate)
static boolean
ByteIterableIterate. anySatisfy(ByteIterable iterable, BytePredicate predicate)
static boolean
ByteIteratorIterate. anySatisfy(ByteIterator iterator, BytePredicate predicate)
static int
ByteIterableIterate. count(ByteIterable iterable, BytePredicate predicate)
static int
ByteIteratorIterate. count(ByteIterator iterator, BytePredicate predicate)
static byte
ByteIterableIterate. detectIfNone(ByteIterable iterable, BytePredicate predicate, byte ifNone)
static byte
ByteIteratorIterate. detectIfNone(ByteIterator iterator, BytePredicate predicate, byte ifNone)
static boolean
ByteIterableIterate. noneSatisfy(ByteIterable iterable, BytePredicate predicate)
static boolean
ByteIteratorIterate. noneSatisfy(ByteIterator iterator, BytePredicate predicate)
static <R extends MutableByteCollection>
RByteIterableIterate. reject(ByteIterable iterable, BytePredicate predicate, R targetCollection)
static <R extends MutableByteCollection>
RByteIteratorIterate. reject(ByteIterator iterator, BytePredicate predicate, R targetCollection)
static <R extends MutableByteCollection>
RByteIterableIterate. select(ByteIterable iterable, BytePredicate predicate, R targetCollection)
static <R extends MutableByteCollection>
RByteIteratorIterate. select(ByteIterator iterator, BytePredicate predicate, R targetCollection)
-
Uses of BytePredicate in org.eclipse.collections.impl.utility.primitive
Methods in org.eclipse.collections.impl.utility.primitive with parameters of type BytePredicate Modifier and Type Method Description static <V> LazyIterable<V>
LazyByteIterate. collectIf(ByteIterable iterable, BytePredicate predicate, ByteToObjectFunction<? extends V> function)
Creates a deferred filtering and transforming byte iterable for the specified byte iterable.static LazyByteIterable
LazyByteIterate. select(ByteIterable iterable, BytePredicate predicate)
Creates a deferred filtering byte iterable for the specified byte iterable.
-