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 MutableByteSetByteIterable. 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 MutableByteSetMutableByteBag. 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 MutableByteSetMutableByteSetFactory. empty()MutableByteSetMutableByteSetFactory. of()Same asMutableByteSetFactory.empty().MutableByteSetMutableByteSetFactory. of(byte... items)Same asMutableByteSetFactory.with(byte[]).MutableByteSetMutableByteSetFactory. ofAll(java.lang.Iterable<java.lang.Byte> iterable)MutableByteSetMutableByteSetFactory. ofAll(ByteIterable items)MutableByteSetMutableByteSetFactory. with()Same asMutableByteSetFactory.empty().MutableByteSetMutableByteSetFactory. with(byte... items)MutableByteSetMutableByteSetFactory. withAll(java.lang.Iterable<java.lang.Byte> iterable)MutableByteSetMutableByteSetFactory. 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 MutableByteSetByteBooleanMap. keySet()Returns a set containing all the keys in this map.MutableByteSetByteByteMap. keySet()Returns a set containing all the keys in this map.MutableByteSetByteCharMap. keySet()Returns a set containing all the keys in this map.MutableByteSetByteDoubleMap. keySet()Returns a set containing all the keys in this map.MutableByteSetByteFloatMap. keySet()Returns a set containing all the keys in this map.MutableByteSetByteIntMap. keySet()Returns a set containing all the keys in this map.MutableByteSetByteLongMap. keySet()Returns a set containing all the keys in this map.MutableByteSetByteObjectMap. keySet()Returns a set containing all the keys in this map.MutableByteSetByteShortMap. 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 MutableByteSetMutableSet. 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 MutableByteSetMutableByteSet. asSynchronized()MutableByteSetMutableByteSet. asUnmodifiable()default MutableByteSetMutableByteSet. difference(ByteSet set)Returns the set of all members ofthisthat are not members ofset.default MutableByteSetMutableByteSet. intersect(ByteSet set)Returns the set of all objects that are members of boththisandset.default MutableByteSetMutableByteSet. newEmpty()Creates a new empty mutable version of the same Set type.MutableByteSetMutableByteSet. reject(BytePredicate predicate)MutableByteSetMutableByteSet. select(BytePredicate predicate)default MutableByteSetMutableByteSet. symmetricDifference(ByteSet set)Returns the set of all objects that are a member of exactly one ofthisandset(elements which are in one of the sets, but not in both).default MutableByteSetMutableByteSet. tap(ByteProcedure procedure)default MutableByteSetMutableByteSet. union(ByteSet set)MutableByteSetMutableByteSet. with(byte element)MutableByteSetMutableByteSet. withAll(ByteIterable elements)MutableByteSetMutableByteSet. without(byte element)MutableByteSetMutableByteSet. 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 MutableByteSetImmutableByteEmptyBag. toSet()MutableByteSetImmutableByteHashBag. toSet()MutableByteSetImmutableByteSingletonBag. 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 MutableByteSetByteHashBag. selectUnique()MutableByteSetSynchronizedByteBag. selectUnique()MutableByteSetUnmodifiableByteBag. 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 MutableByteSetAbstractSynchronizedByteCollection. toSet()MutableByteSetAbstractUnmodifiableByteCollection. 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 MutableByteSetAbstractLazyByteIterable. toSet()MutableByteSetCollectByteIterable. toSet()MutableByteSetLazyByteIterableAdapter. toSet()MutableByteSetReverseByteIterable. toSet()MutableByteSetSelectByteIterable. 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 MutableByteSetImmutableByteArrayList. toSet()MutableByteSetImmutableByteEmptyList. toSet()MutableByteSetImmutableByteSingletonList. 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 MutableByteSetImmutableByteBooleanEmptyMap. keySet()MutableByteSetImmutableByteBooleanHashMap. keySet()MutableByteSetImmutableByteBooleanSingletonMap. keySet()MutableByteSetImmutableByteByteEmptyMap. keySet()MutableByteSetImmutableByteByteHashMap. keySet()MutableByteSetImmutableByteByteSingletonMap. keySet()MutableByteSetImmutableByteCharEmptyMap. keySet()MutableByteSetImmutableByteCharHashMap. keySet()MutableByteSetImmutableByteCharSingletonMap. keySet()MutableByteSetImmutableByteDoubleEmptyMap. keySet()MutableByteSetImmutableByteDoubleHashMap. keySet()MutableByteSetImmutableByteDoubleSingletonMap. keySet()MutableByteSetImmutableByteFloatEmptyMap. keySet()MutableByteSetImmutableByteFloatHashMap. keySet()MutableByteSetImmutableByteFloatSingletonMap. keySet()MutableByteSetImmutableByteIntEmptyMap. keySet()MutableByteSetImmutableByteIntHashMap. keySet()MutableByteSetImmutableByteIntSingletonMap. keySet()MutableByteSetImmutableByteLongEmptyMap. keySet()MutableByteSetImmutableByteLongHashMap. keySet()MutableByteSetImmutableByteLongSingletonMap. keySet()MutableByteSetImmutableByteObjectEmptyMap. keySet()MutableByteSetImmutableByteObjectHashMap. keySet()MutableByteSetImmutableByteObjectSingletonMap. keySet()MutableByteSetImmutableByteShortEmptyMap. keySet()MutableByteSetImmutableByteShortHashMap. keySet()MutableByteSetImmutableByteShortSingletonMap. keySet()MutableByteSetImmutableByteByteEmptyMap. toSet()MutableByteSetImmutableByteByteHashMap. toSet()MutableByteSetImmutableByteByteSingletonMap. toSet()MutableByteSetImmutableCharByteEmptyMap. toSet()MutableByteSetImmutableCharByteHashMap. toSet()MutableByteSetImmutableCharByteSingletonMap. toSet()MutableByteSetImmutableDoubleByteEmptyMap. toSet()MutableByteSetImmutableDoubleByteHashMap. toSet()MutableByteSetImmutableDoubleByteSingletonMap. toSet()MutableByteSetImmutableFloatByteEmptyMap. toSet()MutableByteSetImmutableFloatByteHashMap. toSet()MutableByteSetImmutableFloatByteSingletonMap. toSet()MutableByteSetImmutableIntByteEmptyMap. toSet()MutableByteSetImmutableIntByteHashMap. toSet()MutableByteSetImmutableIntByteSingletonMap. toSet()MutableByteSetImmutableLongByteEmptyMap. toSet()MutableByteSetImmutableLongByteHashMap. toSet()MutableByteSetImmutableLongByteSingletonMap. toSet()MutableByteSetImmutableObjectByteEmptyMap. toSet()MutableByteSetImmutableObjectByteHashMap. toSet()MutableByteSetImmutableObjectByteSingletonMap. toSet()MutableByteSetImmutableShortByteEmptyMap. toSet()MutableByteSetImmutableShortByteHashMap. toSet()MutableByteSetImmutableShortByteSingletonMap. 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 classAbstractMutableByteKeySetThis file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.private classByteBooleanHashMap.KeySetprivate classByteByteHashMap.KeySetprivate classByteCharHashMap.KeySetprivate classByteDoubleHashMap.KeySetprivate classByteFloatHashMap.KeySetprivate classByteIntHashMap.KeySetprivate classByteLongHashMap.KeySetprivate classByteObjectHashMap.KeySetprivate classByteShortHashMap.KeySetMethods in org.eclipse.collections.impl.map.mutable.primitive that return MutableByteSet Modifier and Type Method Description MutableByteSetAbstractMutableByteKeySet. asSynchronized()MutableByteSetAbstractMutableByteKeySet. asUnmodifiable()MutableByteSetByteBooleanHashMap. keySet()MutableByteSetByteByteHashMap. keySet()MutableByteSetByteCharHashMap. keySet()MutableByteSetByteDoubleHashMap. keySet()MutableByteSetByteFloatHashMap. keySet()MutableByteSetByteIntHashMap. keySet()MutableByteSetByteLongHashMap. keySet()MutableByteSetByteObjectHashMap. keySet()MutableByteSetByteShortHashMap. keySet()MutableByteSetSynchronizedByteBooleanMap. keySet()MutableByteSetSynchronizedByteByteMap. keySet()MutableByteSetSynchronizedByteCharMap. keySet()MutableByteSetSynchronizedByteDoubleMap. keySet()MutableByteSetSynchronizedByteFloatMap. keySet()MutableByteSetSynchronizedByteIntMap. keySet()MutableByteSetSynchronizedByteLongMap. keySet()MutableByteSetSynchronizedByteObjectMap. keySet()MutableByteSetSynchronizedByteShortMap. keySet()MutableByteSetUnmodifiableByteBooleanMap. keySet()MutableByteSetUnmodifiableByteByteMap. keySet()MutableByteSetUnmodifiableByteCharMap. keySet()MutableByteSetUnmodifiableByteDoubleMap. keySet()MutableByteSetUnmodifiableByteFloatMap. keySet()MutableByteSetUnmodifiableByteIntMap. keySet()MutableByteSetUnmodifiableByteLongMap. keySet()MutableByteSetUnmodifiableByteObjectMap. keySet()MutableByteSetUnmodifiableByteShortMap. keySet()MutableByteSetByteBooleanHashMap.KeySet. newEmpty()MutableByteSetByteByteHashMap.KeySet. newEmpty()MutableByteSetByteCharHashMap.KeySet. newEmpty()MutableByteSetByteDoubleHashMap.KeySet. newEmpty()MutableByteSetByteFloatHashMap.KeySet. newEmpty()MutableByteSetByteIntHashMap.KeySet. newEmpty()MutableByteSetByteLongHashMap.KeySet. newEmpty()MutableByteSetByteObjectHashMap.KeySet. newEmpty()MutableByteSetByteShortHashMap.KeySet. newEmpty()MutableByteSetAbstractMutableByteKeySet. reject(BytePredicate predicate)MutableByteSetAbstractMutableByteKeySet. select(BytePredicate predicate)MutableByteSetAbstractMutableByteKeySet. toSet()MutableByteSetAbstractMutableByteValuesMap.AbstractByteValuesCollection. toSet()MutableByteSetByteBooleanHashMap.KeysView. toSet()MutableByteSetObjectByteHashMap. toSet()MutableByteSetObjectByteHashMap.ValuesCollection. toSet()MutableByteSetObjectByteHashMapWithHashingStrategy. toSet()MutableByteSetObjectByteHashMapWithHashingStrategy.ValuesCollection. toSet()MutableByteSetSynchronizedByteByteMap. toSet()MutableByteSetSynchronizedCharByteMap. toSet()MutableByteSetSynchronizedDoubleByteMap. toSet()MutableByteSetSynchronizedFloatByteMap. toSet()MutableByteSetSynchronizedIntByteMap. toSet()MutableByteSetSynchronizedLongByteMap. toSet()MutableByteSetSynchronizedObjectByteMap. toSet()MutableByteSetSynchronizedShortByteMap. toSet()MutableByteSetUnmodifiableByteByteMap. toSet()MutableByteSetUnmodifiableCharByteMap. toSet()MutableByteSetUnmodifiableDoubleByteMap. toSet()MutableByteSetUnmodifiableFloatByteMap. toSet()MutableByteSetUnmodifiableIntByteMap. toSet()MutableByteSetUnmodifiableLongByteMap. toSet()MutableByteSetUnmodifiableObjectByteMap. toSet()MutableByteSetUnmodifiableShortByteMap. toSet()MutableByteSetAbstractMutableByteKeySet. with(byte element)MutableByteSetAbstractMutableByteKeySet. withAll(ByteIterable elements)MutableByteSetAbstractMutableByteKeySet. without(byte element)MutableByteSetAbstractMutableByteKeySet. 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 MutableByteSetAbstractByteIterable. toSet()MutableByteSetSynchronizedByteIterable. 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 MutableByteSetImmutableByteEmptySet. toSet()MutableByteSetImmutableByteSingletonSet. 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 MutableByteSetMultiReaderUnifiedSet. collectByte(ByteFunction<? super T> byteFunction)MutableByteSetMultiReaderUnifiedSet.UntouchableMutableSet. collectByte(ByteFunction<? super T> byteFunction)MutableByteSetSynchronizedMutableSet. collectByte(ByteFunction<? super T> byteFunction)MutableByteSetUnmodifiableMutableSet. 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 classByteHashSetclassSynchronizedByteSetA synchronized view of aMutableByteSet.classUnmodifiableByteSetThis file was automatically generated from template file unmodifiablePrimitiveSet.stg.Fields in org.eclipse.collections.impl.set.mutable.primitive declared as MutableByteSet Modifier and Type Field Description private MutableByteSetBoxedMutableByteSet. delegateMethods in org.eclipse.collections.impl.set.mutable.primitive that return MutableByteSet Modifier and Type Method Description MutableByteSetByteHashSet. asSynchronized()MutableByteSetSynchronizedByteSet. asSynchronized()MutableByteSetUnmodifiableByteSet. asSynchronized()MutableByteSetByteHashSet. asUnmodifiable()MutableByteSetSynchronizedByteSet. asUnmodifiable()MutableByteSetUnmodifiableByteSet. asUnmodifiable()MutableByteSetMutableByteSetFactoryImpl. empty()private MutableByteSetSynchronizedByteSet. getMutableByteSet()private MutableByteSetUnmodifiableByteSet. getMutableByteSet()MutableByteSetSynchronizedByteSet. newEmpty()MutableByteSetUnmodifiableByteSet. newEmpty()MutableByteSetMutableByteSetFactoryImpl. of()MutableByteSetMutableByteSetFactoryImpl. of(byte... items)MutableByteSetMutableByteSetFactoryImpl. ofAll(java.lang.Iterable<java.lang.Byte> iterable)MutableByteSetMutableByteSetFactoryImpl. ofAll(ByteIterable items)MutableByteSetByteHashSet. reject(BytePredicate predicate)MutableByteSetSynchronizedByteSet. reject(BytePredicate predicate)MutableByteSetUnmodifiableByteSet. reject(BytePredicate predicate)MutableByteSetSynchronizedByteSet. select(BytePredicate predicate)MutableByteSetUnmodifiableByteSet. select(BytePredicate predicate)MutableByteSetByteHashSet.ImmutableByteHashSet. toSet()MutableByteSetByteHashSet. toSet()MutableByteSetMutableByteSetFactoryImpl. with()MutableByteSetMutableByteSetFactoryImpl. with(byte... items)MutableByteSetMutableByteSetFactoryImpl. withAll(java.lang.Iterable<java.lang.Byte> iterable)MutableByteSetMutableByteSetFactoryImpl. withAll(ByteIterable items)Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type MutableByteSet Modifier and Type Method Description static SynchronizedByteSetSynchronizedByteSet. of(MutableByteSet set)This method will take a MutableByteSet and wrap it directly in a SynchronizedByteSet.static SynchronizedByteSetSynchronizedByteSet. of(MutableByteSet set, java.lang.Object lock)This method will take a MutableByteSet and wrap it directly in a SynchronizedByteSet.static UnmodifiableByteSetUnmodifiableByteSet. 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 BoxedMutableByteSet(MutableByteSet delegate)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 MutableByteSetImmutableByteEmptyStack. toSet()MutableByteSetImmutableByteSingletonStack. 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 MutableByteSetSynchronizedByteStack. toSet()MutableByteSetUnmodifiableByteStack. 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 MutableByteSetAbstractByteStack. toSet()
-