Uses of Interface
org.eclipse.collections.api.set.primitive.MutableByteSet
-
Packages that use MutableByteSet 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.factory.set.primitive This package contains factory API for creating primitive set instances.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.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.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.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.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 This package contains implementations ofMutableSet
.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 -
-
Uses of MutableByteSet in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableByteSet Modifier and Type Method Description MutableByteSet
ByteIterable. toSet()
Converts the ByteIterable to a new MutableByteSet. -
Uses of MutableByteSet in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return MutableByteSet Modifier and Type Method Description MutableByteSet
MutableByteBag. selectUnique()
Returns all elements of the bag that have exactly one occurrence. -
Uses of MutableByteSet in org.eclipse.collections.api.factory.set.primitive
Methods in org.eclipse.collections.api.factory.set.primitive that return MutableByteSet Modifier and Type Method Description MutableByteSet
MutableByteSetFactory. empty()
MutableByteSet
MutableByteSetFactory. of()
Same asMutableByteSetFactory.empty()
.MutableByteSet
MutableByteSetFactory. of(byte... items)
Same asMutableByteSetFactory.with(byte[])
.MutableByteSet
MutableByteSetFactory. ofAll(java.lang.Iterable<java.lang.Byte> iterable)
MutableByteSet
MutableByteSetFactory. ofAll(ByteIterable items)
MutableByteSet
MutableByteSetFactory. with()
Same asMutableByteSetFactory.empty()
.MutableByteSet
MutableByteSetFactory. with(byte... items)
MutableByteSet
MutableByteSetFactory. withAll(java.lang.Iterable<java.lang.Byte> iterable)
MutableByteSet
MutableByteSetFactory. withAll(ByteIterable items)
-
Uses of MutableByteSet in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableByteSet Modifier and Type Method Description MutableByteSet
ByteBooleanMap. keySet()
Returns a set containing all the keys in this map.MutableByteSet
ByteByteMap. keySet()
Returns a set containing all the keys in this map.MutableByteSet
ByteCharMap. keySet()
Returns a set containing all the keys in this map.MutableByteSet
ByteDoubleMap. keySet()
Returns a set containing all the keys in this map.MutableByteSet
ByteFloatMap. keySet()
Returns a set containing all the keys in this map.MutableByteSet
ByteIntMap. keySet()
Returns a set containing all the keys in this map.MutableByteSet
ByteLongMap. keySet()
Returns a set containing all the keys in this map.MutableByteSet
ByteObjectMap. keySet()
Returns a set containing all the keys in this map.MutableByteSet
ByteShortMap. keySet()
Returns a set containing all the keys in this map. -
Uses of MutableByteSet in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set that return MutableByteSet Modifier and Type Method Description default MutableByteSet
MutableSet. collectByte(ByteFunction<? super T> byteFunction)
-
Uses of MutableByteSet in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive that return MutableByteSet Modifier and Type Method Description MutableByteSet
MutableByteSet. asSynchronized()
MutableByteSet
MutableByteSet. asUnmodifiable()
default MutableByteSet
MutableByteSet. difference(ByteSet set)
Returns the set of all members ofthis
that are not members ofset
.default MutableByteSet
MutableByteSet. intersect(ByteSet set)
Returns the set of all objects that are members of boththis
andset
.default MutableByteSet
MutableByteSet. newEmpty()
Creates a new empty mutable version of the same Set type.MutableByteSet
MutableByteSet. reject(BytePredicate predicate)
MutableByteSet
MutableByteSet. select(BytePredicate predicate)
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).default MutableByteSet
MutableByteSet. tap(ByteProcedure procedure)
default MutableByteSet
MutableByteSet. union(ByteSet set)
MutableByteSet
MutableByteSet. with(byte element)
MutableByteSet
MutableByteSet. withAll(ByteIterable elements)
MutableByteSet
MutableByteSet. without(byte element)
MutableByteSet
MutableByteSet. withoutAll(ByteIterable elements)
-
Uses of MutableByteSet in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return MutableByteSet Modifier and Type Method Description MutableByteSet
ImmutableByteEmptyBag. toSet()
MutableByteSet
ImmutableByteHashBag. toSet()
MutableByteSet
ImmutableByteSingletonBag. toSet()
-
Uses of MutableByteSet in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive that return MutableByteSet Modifier and Type Method Description MutableByteSet
ByteHashBag. selectUnique()
MutableByteSet
SynchronizedByteBag. selectUnique()
MutableByteSet
UnmodifiableByteBag. selectUnique()
-
Uses of MutableByteSet in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableByteSet Modifier and Type Method Description MutableByteSet
AbstractSynchronizedByteCollection. toSet()
MutableByteSet
AbstractUnmodifiableByteCollection. toSet()
-
Uses of MutableByteSet in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive that return MutableByteSet Modifier and Type Method Description MutableByteSet
AbstractLazyByteIterable. toSet()
MutableByteSet
CollectByteIterable. toSet()
MutableByteSet
LazyByteIterableAdapter. toSet()
MutableByteSet
ReverseByteIterable. toSet()
MutableByteSet
SelectByteIterable. toSet()
-
Uses of MutableByteSet in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive that return MutableByteSet Modifier and Type Method Description MutableByteSet
ImmutableByteArrayList. toSet()
MutableByteSet
ImmutableByteEmptyList. toSet()
MutableByteSet
ImmutableByteSingletonList. toSet()
-
Uses of MutableByteSet in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableByteSet Modifier and Type Method Description MutableByteSet
ImmutableByteBooleanEmptyMap. keySet()
MutableByteSet
ImmutableByteBooleanHashMap. keySet()
MutableByteSet
ImmutableByteBooleanSingletonMap. keySet()
MutableByteSet
ImmutableByteByteEmptyMap. keySet()
MutableByteSet
ImmutableByteByteHashMap. keySet()
MutableByteSet
ImmutableByteByteSingletonMap. keySet()
MutableByteSet
ImmutableByteCharEmptyMap. keySet()
MutableByteSet
ImmutableByteCharHashMap. keySet()
MutableByteSet
ImmutableByteCharSingletonMap. keySet()
MutableByteSet
ImmutableByteDoubleEmptyMap. keySet()
MutableByteSet
ImmutableByteDoubleHashMap. keySet()
MutableByteSet
ImmutableByteDoubleSingletonMap. keySet()
MutableByteSet
ImmutableByteFloatEmptyMap. keySet()
MutableByteSet
ImmutableByteFloatHashMap. keySet()
MutableByteSet
ImmutableByteFloatSingletonMap. keySet()
MutableByteSet
ImmutableByteIntEmptyMap. keySet()
MutableByteSet
ImmutableByteIntHashMap. keySet()
MutableByteSet
ImmutableByteIntSingletonMap. keySet()
MutableByteSet
ImmutableByteLongEmptyMap. keySet()
MutableByteSet
ImmutableByteLongHashMap. keySet()
MutableByteSet
ImmutableByteLongSingletonMap. keySet()
MutableByteSet
ImmutableByteObjectEmptyMap. keySet()
MutableByteSet
ImmutableByteObjectHashMap. keySet()
MutableByteSet
ImmutableByteObjectSingletonMap. keySet()
MutableByteSet
ImmutableByteShortEmptyMap. keySet()
MutableByteSet
ImmutableByteShortHashMap. keySet()
MutableByteSet
ImmutableByteShortSingletonMap. keySet()
MutableByteSet
ImmutableByteByteEmptyMap. toSet()
MutableByteSet
ImmutableByteByteHashMap. toSet()
MutableByteSet
ImmutableByteByteSingletonMap. toSet()
MutableByteSet
ImmutableCharByteEmptyMap. toSet()
MutableByteSet
ImmutableCharByteHashMap. toSet()
MutableByteSet
ImmutableCharByteSingletonMap. toSet()
MutableByteSet
ImmutableDoubleByteEmptyMap. toSet()
MutableByteSet
ImmutableDoubleByteHashMap. toSet()
MutableByteSet
ImmutableDoubleByteSingletonMap. toSet()
MutableByteSet
ImmutableFloatByteEmptyMap. toSet()
MutableByteSet
ImmutableFloatByteHashMap. toSet()
MutableByteSet
ImmutableFloatByteSingletonMap. toSet()
MutableByteSet
ImmutableIntByteEmptyMap. toSet()
MutableByteSet
ImmutableIntByteHashMap. toSet()
MutableByteSet
ImmutableIntByteSingletonMap. toSet()
MutableByteSet
ImmutableLongByteEmptyMap. toSet()
MutableByteSet
ImmutableLongByteHashMap. toSet()
MutableByteSet
ImmutableLongByteSingletonMap. toSet()
MutableByteSet
ImmutableObjectByteEmptyMap. toSet()
MutableByteSet
ImmutableObjectByteHashMap. toSet()
MutableByteSet
ImmutableObjectByteSingletonMap. toSet()
MutableByteSet
ImmutableShortByteEmptyMap. toSet()
MutableByteSet
ImmutableShortByteHashMap. toSet()
MutableByteSet
ImmutableShortByteSingletonMap. toSet()
-
Uses of MutableByteSet in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableByteSet 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
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableByteSet Modifier and Type Method Description MutableByteSet
AbstractMutableByteKeySet. asSynchronized()
MutableByteSet
AbstractMutableByteKeySet. asUnmodifiable()
MutableByteSet
ByteBooleanHashMap. keySet()
MutableByteSet
ByteByteHashMap. keySet()
MutableByteSet
ByteCharHashMap. keySet()
MutableByteSet
ByteDoubleHashMap. keySet()
MutableByteSet
ByteFloatHashMap. keySet()
MutableByteSet
ByteIntHashMap. keySet()
MutableByteSet
ByteLongHashMap. keySet()
MutableByteSet
ByteObjectHashMap. keySet()
MutableByteSet
ByteShortHashMap. keySet()
MutableByteSet
SynchronizedByteBooleanMap. keySet()
MutableByteSet
SynchronizedByteByteMap. keySet()
MutableByteSet
SynchronizedByteCharMap. keySet()
MutableByteSet
SynchronizedByteDoubleMap. keySet()
MutableByteSet
SynchronizedByteFloatMap. keySet()
MutableByteSet
SynchronizedByteIntMap. keySet()
MutableByteSet
SynchronizedByteLongMap. keySet()
MutableByteSet
SynchronizedByteObjectMap. keySet()
MutableByteSet
SynchronizedByteShortMap. keySet()
MutableByteSet
UnmodifiableByteBooleanMap. keySet()
MutableByteSet
UnmodifiableByteByteMap. keySet()
MutableByteSet
UnmodifiableByteCharMap. keySet()
MutableByteSet
UnmodifiableByteDoubleMap. keySet()
MutableByteSet
UnmodifiableByteFloatMap. keySet()
MutableByteSet
UnmodifiableByteIntMap. keySet()
MutableByteSet
UnmodifiableByteLongMap. keySet()
MutableByteSet
UnmodifiableByteObjectMap. keySet()
MutableByteSet
UnmodifiableByteShortMap. keySet()
MutableByteSet
ByteBooleanHashMap.KeySet. newEmpty()
MutableByteSet
ByteByteHashMap.KeySet. newEmpty()
MutableByteSet
ByteCharHashMap.KeySet. newEmpty()
MutableByteSet
ByteDoubleHashMap.KeySet. newEmpty()
MutableByteSet
ByteFloatHashMap.KeySet. newEmpty()
MutableByteSet
ByteIntHashMap.KeySet. newEmpty()
MutableByteSet
ByteLongHashMap.KeySet. newEmpty()
MutableByteSet
ByteObjectHashMap.KeySet. newEmpty()
MutableByteSet
ByteShortHashMap.KeySet. newEmpty()
MutableByteSet
AbstractMutableByteKeySet. reject(BytePredicate predicate)
MutableByteSet
AbstractMutableByteKeySet. select(BytePredicate predicate)
MutableByteSet
AbstractMutableByteKeySet. toSet()
MutableByteSet
AbstractMutableByteValuesMap.AbstractByteValuesCollection. toSet()
MutableByteSet
ByteBooleanHashMap.KeysView. toSet()
MutableByteSet
ObjectByteHashMap. toSet()
MutableByteSet
ObjectByteHashMap.ValuesCollection. toSet()
MutableByteSet
ObjectByteHashMapWithHashingStrategy. toSet()
MutableByteSet
ObjectByteHashMapWithHashingStrategy.ValuesCollection. toSet()
MutableByteSet
SynchronizedByteByteMap. toSet()
MutableByteSet
SynchronizedCharByteMap. toSet()
MutableByteSet
SynchronizedDoubleByteMap. toSet()
MutableByteSet
SynchronizedFloatByteMap. toSet()
MutableByteSet
SynchronizedIntByteMap. toSet()
MutableByteSet
SynchronizedLongByteMap. toSet()
MutableByteSet
SynchronizedObjectByteMap. toSet()
MutableByteSet
SynchronizedShortByteMap. toSet()
MutableByteSet
UnmodifiableByteByteMap. toSet()
MutableByteSet
UnmodifiableCharByteMap. toSet()
MutableByteSet
UnmodifiableDoubleByteMap. toSet()
MutableByteSet
UnmodifiableFloatByteMap. toSet()
MutableByteSet
UnmodifiableIntByteMap. toSet()
MutableByteSet
UnmodifiableLongByteMap. toSet()
MutableByteSet
UnmodifiableObjectByteMap. toSet()
MutableByteSet
UnmodifiableShortByteMap. toSet()
MutableByteSet
AbstractMutableByteKeySet. with(byte element)
MutableByteSet
AbstractMutableByteKeySet. withAll(ByteIterable elements)
MutableByteSet
AbstractMutableByteKeySet. without(byte element)
MutableByteSet
AbstractMutableByteKeySet. withoutAll(ByteIterable elements)
-
Uses of MutableByteSet in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive that return MutableByteSet Modifier and Type Method Description MutableByteSet
AbstractByteIterable. toSet()
MutableByteSet
SynchronizedByteIterable. toSet()
-
Uses of MutableByteSet in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive that return MutableByteSet Modifier and Type Method Description MutableByteSet
ImmutableByteEmptySet. toSet()
MutableByteSet
ImmutableByteSingletonSet. toSet()
-
Uses of MutableByteSet in org.eclipse.collections.impl.set.mutable
Methods in org.eclipse.collections.impl.set.mutable that return MutableByteSet Modifier and Type Method Description MutableByteSet
MultiReaderUnifiedSet. collectByte(ByteFunction<? super T> byteFunction)
MutableByteSet
MultiReaderUnifiedSet.UntouchableMutableSet. collectByte(ByteFunction<? super T> byteFunction)
MutableByteSet
SynchronizedMutableSet. collectByte(ByteFunction<? super T> byteFunction)
MutableByteSet
UnmodifiableMutableSet. collectByte(ByteFunction<? super T> byteFunction)
-
Uses of MutableByteSet in org.eclipse.collections.impl.set.mutable.primitive
Classes in org.eclipse.collections.impl.set.mutable.primitive that implement MutableByteSet Modifier and Type Class Description class
ByteHashSet
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 MutableByteSet Modifier and Type Method Description MutableByteSet
ByteHashSet. asSynchronized()
MutableByteSet
SynchronizedByteSet. asSynchronized()
MutableByteSet
UnmodifiableByteSet. asSynchronized()
MutableByteSet
ByteHashSet. asUnmodifiable()
MutableByteSet
SynchronizedByteSet. asUnmodifiable()
MutableByteSet
UnmodifiableByteSet. asUnmodifiable()
MutableByteSet
MutableByteSetFactoryImpl. empty()
private MutableByteSet
SynchronizedByteSet. getMutableByteSet()
private MutableByteSet
UnmodifiableByteSet. getMutableByteSet()
MutableByteSet
SynchronizedByteSet. newEmpty()
MutableByteSet
UnmodifiableByteSet. newEmpty()
MutableByteSet
MutableByteSetFactoryImpl. of()
MutableByteSet
MutableByteSetFactoryImpl. of(byte... items)
MutableByteSet
MutableByteSetFactoryImpl. ofAll(java.lang.Iterable<java.lang.Byte> iterable)
MutableByteSet
MutableByteSetFactoryImpl. ofAll(ByteIterable items)
MutableByteSet
ByteHashSet. reject(BytePredicate predicate)
MutableByteSet
SynchronizedByteSet. reject(BytePredicate predicate)
MutableByteSet
UnmodifiableByteSet. reject(BytePredicate predicate)
MutableByteSet
SynchronizedByteSet. select(BytePredicate predicate)
MutableByteSet
UnmodifiableByteSet. select(BytePredicate predicate)
MutableByteSet
ByteHashSet.ImmutableByteHashSet. toSet()
MutableByteSet
ByteHashSet. toSet()
MutableByteSet
MutableByteSetFactoryImpl. with()
MutableByteSet
MutableByteSetFactoryImpl. with(byte... items)
MutableByteSet
MutableByteSetFactoryImpl. withAll(java.lang.Iterable<java.lang.Byte> iterable)
MutableByteSet
MutableByteSetFactoryImpl. withAll(ByteIterable items)
Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type MutableByteSet Modifier and Type Method Description static SynchronizedByteSet
SynchronizedByteSet. of(MutableByteSet set)
This method will take a MutableByteSet and wrap it directly in a SynchronizedByteSet.static SynchronizedByteSet
SynchronizedByteSet. of(MutableByteSet set, java.lang.Object lock)
This method will take a MutableByteSet and wrap it directly in a SynchronizedByteSet.static UnmodifiableByteSet
UnmodifiableByteSet. of(MutableByteSet set)
This method will take a MutableByteSet and wrap it directly in a UnmodifiableByteSet.Constructors in org.eclipse.collections.impl.set.mutable.primitive with parameters of type MutableByteSet Constructor Description SynchronizedByteSet(MutableByteSet set)
SynchronizedByteSet(MutableByteSet set, java.lang.Object newLock)
UnmodifiableByteSet(MutableByteSet set)
-
Uses of MutableByteSet in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return MutableByteSet Modifier and Type Method Description MutableByteSet
ImmutableByteEmptyStack. toSet()
MutableByteSet
ImmutableByteSingletonStack. toSet()
-
Uses of MutableByteSet in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return MutableByteSet Modifier and Type Method Description MutableByteSet
SynchronizedByteStack. toSet()
MutableByteSet
UnmodifiableByteStack. toSet()
-
Uses of MutableByteSet in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return MutableByteSet Modifier and Type Method Description MutableByteSet
AbstractByteStack. toSet()
-