Uses of Interface
org.eclipse.collections.api.set.primitive.ByteSet
-
Packages that use ByteSet Package Description org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.set This package contains interfaces for set API which enhance the performance and functionality ofSet
.org.eclipse.collections.api.set.primitive This package contains API for mutable and immutable primitive sets.org.eclipse.collections.impl.factory.primitive This package contains static utilities for creating immutable primitive collection factories.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.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.set.primitive -
-
Uses of ByteSet in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return ByteSet Modifier and Type Method Description ByteSet
ByteBag. selectUnique()
Returns all elements of the bag that have exactly one occurrence. -
Uses of ByteSet in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set that return ByteSet Modifier and Type Method Description ByteSet
UnsortedSetIterable. collectByte(ByteFunction<? super T> byteFunction)
-
Uses of ByteSet in org.eclipse.collections.api.set.primitive
Subinterfaces of ByteSet in org.eclipse.collections.api.set.primitive Modifier and Type Interface Description interface
ImmutableByteSet
This file was automatically generated from template file immutablePrimitiveSet.stg.interface
MutableByteSet
This file was automatically generated from template file mutablePrimitiveSet.stg.Methods in org.eclipse.collections.api.set.primitive that return ByteSet Modifier and Type Method Description ByteSet
ByteSet. difference(ByteSet set)
Returns the set of all members ofthis
that are not members ofset
.ByteSet
ByteSet. freeze()
Returns a frozen copy of this set.ByteSet
MutableByteSet. freeze()
Returns a frozen copy of this set.ByteSet
ByteSet. intersect(ByteSet set)
Returns the set of all objects that are members of boththis
andset
.ByteSet
ByteSet. reject(BytePredicate predicate)
ByteSet
ByteSet. select(BytePredicate predicate)
ByteSet
ByteSet. symmetricDifference(ByteSet set)
Returns the set of all objects that are a member of exactly one ofthis
andset
(elements which are in one of the sets, but not in both).default ByteSet
ByteSet. tap(ByteProcedure procedure)
ByteSet
ByteSet. union(ByteSet set)
Methods in org.eclipse.collections.api.set.primitive with parameters of type ByteSet Modifier and Type Method Description LazyIterable<ByteBytePair>
ByteSet. cartesianProduct(ByteSet set)
Returns the set whose members are all possible ordered pairs (a, b) where a is a member ofthis
and b is a member ofset
.ByteSet
ByteSet. difference(ByteSet set)
Returns the set of all members ofthis
that are not members ofset
.default ImmutableByteSet
ImmutableByteSet. difference(ByteSet set)
Returns the set of all members ofthis
that are not members ofset
.default MutableByteSet
MutableByteSet. difference(ByteSet set)
Returns the set of all members ofthis
that are not members ofset
.ByteSet
ByteSet. intersect(ByteSet set)
Returns the set of all objects that are members of boththis
andset
.default ImmutableByteSet
ImmutableByteSet. intersect(ByteSet set)
Returns the set of all objects that are members of boththis
andset
.default MutableByteSet
MutableByteSet. intersect(ByteSet set)
Returns the set of all objects that are members of boththis
andset
.default boolean
ByteSet. isProperSubsetOf(ByteSet set)
Returns true if all the members ofthis
are also members ofset
and the two sets are not equal.default boolean
ByteSet. isSubsetOf(ByteSet set)
Returns true if all the members ofthis
are also members ofset
.ByteSet
ByteSet. symmetricDifference(ByteSet set)
Returns the set of all objects that are a member of exactly one ofthis
andset
(elements which are in one of the sets, but not in both).default ImmutableByteSet
ImmutableByteSet. symmetricDifference(ByteSet set)
Returns the set of all objects that are a member of exactly one ofthis
andset
(elements which are in one of the sets, but not in both).default MutableByteSet
MutableByteSet. symmetricDifference(ByteSet set)
Returns the set of all objects that are a member of exactly one ofthis
andset
(elements which are in one of the sets, but not in both).ByteSet
ByteSet. union(ByteSet set)
default ImmutableByteSet
ImmutableByteSet. union(ByteSet set)
default MutableByteSet
MutableByteSet. union(ByteSet set)
-
Uses of ByteSet in org.eclipse.collections.impl.factory.primitive
Methods in org.eclipse.collections.impl.factory.primitive with parameters of type ByteSet Modifier and Type Method Description static <A,B>
LazyIterable<ByteBytePair>ByteSets. cartesianProduct(ByteSet set1, ByteSet set2)
static <A,B,C>
LazyIterable<C>ByteSets. cartesianProduct(ByteSet set1, ByteSet set2, ByteByteToObjectFunction<C> function)
-
Uses of ByteSet in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement ByteSet Modifier and Type Class Description class
AbstractMutableByteKeySet
This file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.private class
ByteBooleanHashMap.KeySet
private class
ByteByteHashMap.KeySet
private class
ByteCharHashMap.KeySet
private class
ByteDoubleHashMap.KeySet
private class
ByteFloatHashMap.KeySet
private class
ByteIntHashMap.KeySet
private class
ByteLongHashMap.KeySet
private class
ByteObjectHashMap.KeySet
private class
ByteShortHashMap.KeySet
(package private) class
ImmutableByteByteMapKeySet
This file was automatically generated from template file immutablePrimitivePrimitiveMapKeySet.stg(package private) class
ImmutableByteMapKeySet
This file was automatically generated from template file immutablePrimitiveMapKeySet.stgMethods in org.eclipse.collections.impl.map.mutable.primitive that return ByteSet Modifier and Type Method Description ByteSet
ByteBooleanHashMap.KeySet. freeze()
ByteSet
ByteByteHashMap.KeySet. freeze()
ByteSet
ByteCharHashMap.KeySet. freeze()
ByteSet
ByteDoubleHashMap.KeySet. freeze()
ByteSet
ByteFloatHashMap.KeySet. freeze()
ByteSet
ByteIntHashMap.KeySet. freeze()
ByteSet
ByteLongHashMap.KeySet. freeze()
ByteSet
ByteObjectHashMap.KeySet. freeze()
ByteSet
ByteShortHashMap.KeySet. freeze()
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type ByteSet Modifier and Type Method Description LazyIterable<ByteBytePair>
AbstractMutableByteKeySet. cartesianProduct(ByteSet set)
-
Uses of ByteSet in org.eclipse.collections.impl.set.immutable.primitive
Classes in org.eclipse.collections.impl.set.immutable.primitive that implement ByteSet Modifier and Type Class Description class
AbstractImmutableByteSet
This file was automatically generated from template file abstractImmutablePrimitiveSet.stg.(package private) class
ImmutableByteEmptySet
ImmutableByteEmptySet is an optimization forImmutableByteSet
of size 0.(package private) class
ImmutableByteSingletonSet
ImmutableByteSingletonSet is an optimization forImmutableByteSet
of size 1.Fields in org.eclipse.collections.impl.set.immutable.primitive declared as ByteSet Modifier and Type Field Description private ByteSet
ImmutableByteSetSerializationProxy. set
Methods in org.eclipse.collections.impl.set.immutable.primitive that return ByteSet Modifier and Type Method Description ByteSet
AbstractImmutableByteSet. freeze()
ByteSet
ImmutableByteEmptySet. freeze()
ByteSet
ImmutableByteSingletonSet. freeze()
Methods in org.eclipse.collections.impl.set.immutable.primitive with parameters of type ByteSet Modifier and Type Method Description LazyIterable<ByteBytePair>
ImmutableByteEmptySet. cartesianProduct(ByteSet set)
LazyIterable<ByteBytePair>
ImmutableByteSingletonSet. cartesianProduct(ByteSet set)
Constructors in org.eclipse.collections.impl.set.immutable.primitive with parameters of type ByteSet Constructor Description ImmutableByteSetSerializationProxy(ByteSet set)
-
Uses of ByteSet in org.eclipse.collections.impl.set.mutable.primitive
Classes in org.eclipse.collections.impl.set.mutable.primitive that implement ByteSet Modifier and Type Class Description class
ByteHashSet
private static class
ByteHashSet.ImmutableByteHashSet
class
SynchronizedByteSet
A synchronized view of aMutableByteSet
.class
UnmodifiableByteSet
This file was automatically generated from template file unmodifiablePrimitiveSet.stg.Methods in org.eclipse.collections.impl.set.mutable.primitive that return ByteSet Modifier and Type Method Description ByteSet
ByteHashSet. freeze()
ByteSet
ByteHashSet.ImmutableByteHashSet. freeze()
ByteSet
SynchronizedByteSet. freeze()
ByteSet
UnmodifiableByteSet. freeze()
Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type ByteSet Modifier and Type Method Description LazyIterable<ByteBytePair>
ByteHashSet. cartesianProduct(ByteSet set)
LazyIterable<ByteBytePair>
ByteHashSet.ImmutableByteHashSet. cartesianProduct(ByteSet set)
LazyIterable<ByteBytePair>
SynchronizedByteSet. cartesianProduct(ByteSet set)
LazyIterable<ByteBytePair>
UnmodifiableByteSet. cartesianProduct(ByteSet set)
-
Uses of ByteSet in org.eclipse.collections.impl.set.primitive
Classes in org.eclipse.collections.impl.set.primitive that implement ByteSet Modifier and Type Class Description class
AbstractByteSet
This file was automatically generated from template file abstractPrimitiveSet.stg.Methods in org.eclipse.collections.impl.set.primitive with parameters of type ByteSet Modifier and Type Method Description LazyIterable<ByteBytePair>
AbstractByteSet. cartesianProduct(ByteSet set)
-