Uses of Interface
org.eclipse.collections.api.set.primitive.ImmutableByteSet
-
Packages that use ImmutableByteSet Package Description 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.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. -
-
Uses of ImmutableByteSet in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return ImmutableByteSet Modifier and Type Method Description ImmutableByteSetImmutableByteBag. selectUnique()Returns all elements of the bag that have exactly one occurrence. -
Uses of ImmutableByteSet in org.eclipse.collections.api.factory.set.primitive
Methods in org.eclipse.collections.api.factory.set.primitive that return ImmutableByteSet Modifier and Type Method Description ImmutableByteSetImmutableByteSetFactory. empty()ImmutableByteSetImmutableByteSetFactory. of()Same asImmutableByteSetFactory.empty().ImmutableByteSetImmutableByteSetFactory. of(byte one)Same asImmutableByteSetFactory.with(byte).ImmutableByteSetImmutableByteSetFactory. of(byte... items)Same asImmutableByteSetFactory.with(byte[]).ImmutableByteSetImmutableByteSetFactory. ofAll(Iterable<Byte> iterable)ImmutableByteSetImmutableByteSetFactory. ofAll(ByteIterable items)ImmutableByteSetImmutableByteSetFactory. with()Same asImmutableByteSetFactory.empty().ImmutableByteSetImmutableByteSetFactory. with(byte one)ImmutableByteSetImmutableByteSetFactory. with(byte... items)ImmutableByteSetImmutableByteSetFactory. withAll(Iterable<Byte> iterable)ImmutableByteSetImmutableByteSetFactory. withAll(ByteIterable items) -
Uses of ImmutableByteSet in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set that return ImmutableByteSet Modifier and Type Method Description ImmutableByteSetImmutableSet. collectByte(ByteFunction<? super T> byteFunction) -
Uses of ImmutableByteSet in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive that return ImmutableByteSet Modifier and Type Method Description default ImmutableByteSetImmutableByteSet. difference(ByteSet set)Returns the set of all members ofthisthat are not members ofset.default ImmutableByteSetImmutableByteSet. intersect(ByteSet set)Returns the set of all objects that are members of boththisandset.ImmutableByteSetImmutableByteSet. newWith(byte element)ImmutableByteSetImmutableByteSet. newWithAll(ByteIterable elements)ImmutableByteSetImmutableByteSet. newWithout(byte element)ImmutableByteSetImmutableByteSet. newWithoutAll(ByteIterable elements)ImmutableByteSetImmutableByteSet. reject(BytePredicate predicate)ImmutableByteSetImmutableByteSet. select(BytePredicate predicate)default ImmutableByteSetImmutableByteSet. 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 ImmutableByteSetImmutableByteSet. tap(ByteProcedure procedure)ImmutableByteSetByteSet. toImmutable()Returns an immutable copy of this set.ImmutableByteSetMutableByteSet. toImmutable()Returns an immutable copy of this set.default ImmutableByteSetImmutableByteSet. union(ByteSet set)
-