com.koloboke.collect.set.hash
Class HashByteSets

Object
  extended by com.koloboke.collect.set.hash.HashByteSets

public final class HashByteSets
extends Object

This class consists only of static factory methods to construct HashByteSets, and the default HashByteSetFactory static provider (getDefaultFactory()).

See Also:
HashByteSet, @KolobokeSet

Method Summary
static HashByteSetFactory getDefaultFactory()
          Returns the default implementation of HashByteSetFactory, to which all static methods in this class delegate.
static HashByteSet newImmutableSet(byte[] elements)
          Constructs a new immutable set of elements from the given array.
static HashByteSet newImmutableSet(Byte[] elements)
          Constructs a new immutable set of elements from the given array.
static HashByteSet newImmutableSet(byte[] elements, int expectedSize)
          Constructs a new immutable set of elements from the given array.
static HashByteSet newImmutableSet(Byte[] elements, int expectedSize)
          Constructs a new immutable set of elements from the given array.
static HashByteSet newImmutableSet(Consumer<ByteConsumer> elementsSupplier)
          Constructs a new immutable set of elements consumed by the callback within the given closure.
static HashByteSet newImmutableSet(Consumer<ByteConsumer> elementsSupplier, int expectedSize)
          Constructs a new immutable set of elements consumed by the callback within the given closure.
static HashByteSet newImmutableSet(Iterable<Byte> elements)
          Constructs a new immutable set containing the elements in the specified iterable.
static HashByteSet newImmutableSet(Iterable<Byte> elements, int expectedSize)
          Constructs a new immutable set containing the elements in the specified iterable.
static HashByteSet newImmutableSet(Iterable<Byte> elems1, Iterable<Byte> elems2)
          Constructs a new immutable set which merge the elements of the specified iterables.
static HashByteSet newImmutableSet(Iterable<Byte> elems1, Iterable<Byte> elems2, int expectedSize)
          Constructs a new immutable set which merge the elements of the specified iterables.
static HashByteSet newImmutableSet(Iterable<Byte> elems1, Iterable<Byte> elems2, Iterable<Byte> elems3)
          Constructs a new immutable set which merge the elements of the specified iterables.
static HashByteSet newImmutableSet(Iterable<Byte> elems1, Iterable<Byte> elems2, Iterable<Byte> elems3, int expectedSize)
          Constructs a new immutable set which merge the elements of the specified iterables.
static HashByteSet newImmutableSet(Iterable<Byte> elems1, Iterable<Byte> elems2, Iterable<Byte> elems3, Iterable<Byte> elems4)
          Constructs a new immutable set which merge the elements of the specified iterables.
static HashByteSet newImmutableSet(Iterable<Byte> elems1, Iterable<Byte> elems2, Iterable<Byte> elems3, Iterable<Byte> elems4, int expectedSize)
          Constructs a new immutable set which merge the elements of the specified iterables.
static HashByteSet newImmutableSet(Iterable<Byte> elems1, Iterable<Byte> elems2, Iterable<Byte> elems3, Iterable<Byte> elems4, Iterable<Byte> elems5)
          Constructs a new immutable set which merge the elements of the specified iterables.
static HashByteSet newImmutableSet(Iterable<Byte> elems1, Iterable<Byte> elems2, Iterable<Byte> elems3, Iterable<Byte> elems4, Iterable<Byte> elems5, int expectedSize)
          Constructs a new immutable set which merge the elements of the specified iterables.
static HashByteSet newImmutableSet(Iterator<Byte> elements)
          Constructs a new immutable set containing the elements traversed by the specified iterator.
static HashByteSet newImmutableSet(Iterator<Byte> elements, int expectedSize)
          Constructs a new immutable set containing the elements traversed by the specified iterator.
static HashByteSet newImmutableSetOf(byte e1)
          Constructs a new immutable singleton set of the given element.
static HashByteSet newImmutableSetOf(byte e1, byte e2)
          Constructs a new immutable set of the two specified elements.
static HashByteSet newImmutableSetOf(byte e1, byte e2, byte e3)
          Constructs a new immutable set of the three specified elements.
static HashByteSet newImmutableSetOf(byte e1, byte e2, byte e3, byte e4)
          Constructs a new immutable set of the four specified elements.
static HashByteSet newImmutableSetOf(byte e1, byte e2, byte e3, byte e4, byte e5, byte... restElements)
          Constructs a new immutable set of the specified elements.
static HashByteSet newMutableSet()
          Constructs a new empty mutable set of the default expected size.
static HashByteSet newMutableSet(byte[] elements)
          Constructs a new mutable set of elements from the given array.
static HashByteSet newMutableSet(Byte[] elements)
          Constructs a new mutable set of elements from the given array.
static HashByteSet newMutableSet(byte[] elements, int expectedSize)
          Constructs a new mutable set of elements from the given array.
static HashByteSet newMutableSet(Byte[] elements, int expectedSize)
          Constructs a new mutable set of elements from the given array.
static HashByteSet newMutableSet(Consumer<ByteConsumer> elementsSupplier)
          Constructs a new mutable set of elements consumed by the callback within the given closure.
static HashByteSet newMutableSet(Consumer<ByteConsumer> elementsSupplier, int expectedSize)
          Constructs a new mutable set of elements consumed by the callback within the given closure.
static HashByteSet newMutableSet(int expectedSize)
          Constructs a new empty mutable set of the given expected size.
static HashByteSet newMutableSet(Iterable<Byte> elements)
          Constructs a new mutable set containing the elements in the specified iterable.
static HashByteSet newMutableSet(Iterable<Byte> elements, int expectedSize)
          Constructs a new mutable set containing the elements in the specified iterable.
static HashByteSet newMutableSet(Iterable<Byte> elems1, Iterable<Byte> elems2)
          Constructs a new mutable set which merge the elements of the specified iterables.
static HashByteSet newMutableSet(Iterable<Byte> elems1, Iterable<Byte> elems2, int expectedSize)
          Constructs a new mutable set which merge the elements of the specified iterables.
static HashByteSet newMutableSet(Iterable<Byte> elems1, Iterable<Byte> elems2, Iterable<Byte> elems3)
          Constructs a new mutable set which merge the elements of the specified iterables.
static HashByteSet newMutableSet(Iterable<Byte> elems1, Iterable<Byte> elems2, Iterable<Byte> elems3, int expectedSize)
          Constructs a new mutable set which merge the elements of the specified iterables.
static HashByteSet newMutableSet(Iterable<Byte> elems1, Iterable<Byte> elems2, Iterable<Byte> elems3, Iterable<Byte> elems4)
          Constructs a new mutable set which merge the elements of the specified iterables.
static HashByteSet newMutableSet(Iterable<Byte> elems1, Iterable<Byte> elems2, Iterable<Byte> elems3, Iterable<Byte> elems4, int expectedSize)
          Constructs a new mutable set which merge the elements of the specified iterables.
static HashByteSet newMutableSet(Iterable<Byte> elems1, Iterable<Byte> elems2, Iterable<Byte> elems3, Iterable<Byte> elems4, Iterable<Byte> elems5)
          Constructs a new mutable set which merge the elements of the specified iterables.
static HashByteSet newMutableSet(Iterable<Byte> elems1, Iterable<Byte> elems2, Iterable<Byte> elems3, Iterable<Byte> elems4, Iterable<Byte> elems5, int expectedSize)
          Constructs a new mutable set which merge the elements of the specified iterables.
static HashByteSet newMutableSet(Iterator<Byte> elements)
          Constructs a new mutable set containing the elements traversed by the specified iterator.
static HashByteSet newMutableSet(Iterator<Byte> elements, int expectedSize)
          Constructs a new mutable set containing the elements traversed by the specified iterator.
static HashByteSet newMutableSetOf(byte e1)
          Constructs a new mutable singleton set of the given element.
static HashByteSet newMutableSetOf(byte e1, byte e2)
          Constructs a new mutable set of the two specified elements.
static HashByteSet newMutableSetOf(byte e1, byte e2, byte e3)
          Constructs a new mutable set of the three specified elements.
static HashByteSet newMutableSetOf(byte e1, byte e2, byte e3, byte e4)
          Constructs a new mutable set of the four specified elements.
static HashByteSet newMutableSetOf(byte e1, byte e2, byte e3, byte e4, byte e5, byte... restElements)
          Constructs a new mutable set of the specified elements.
static HashByteSet newUpdatableSet()
          Constructs a new empty updatable set of the default expected size.
static HashByteSet newUpdatableSet(byte[] elements)
          Constructs a new updatable set of elements from the given array.
static HashByteSet newUpdatableSet(Byte[] elements)
          Constructs a new updatable set of elements from the given array.
static HashByteSet newUpdatableSet(byte[] elements, int expectedSize)
          Constructs a new updatable set of elements from the given array.
static HashByteSet newUpdatableSet(Byte[] elements, int expectedSize)
          Constructs a new updatable set of elements from the given array.
static HashByteSet newUpdatableSet(Consumer<ByteConsumer> elementsSupplier)
          Constructs a new updatable set of elements consumed by the callback within the given closure.
static HashByteSet newUpdatableSet(Consumer<ByteConsumer> elementsSupplier, int expectedSize)
          Constructs a new updatable set of elements consumed by the callback within the given closure.
static HashByteSet newUpdatableSet(int expectedSize)
          Constructs a new empty updatable set of the given expected size.
static HashByteSet newUpdatableSet(Iterable<Byte> elements)
          Constructs a new updatable set containing the elements in the specified iterable.
static HashByteSet newUpdatableSet(Iterable<Byte> elements, int expectedSize)
          Constructs a new updatable set containing the elements in the specified iterable.
static HashByteSet newUpdatableSet(Iterable<Byte> elems1, Iterable<Byte> elems2)
          Constructs a new updatable set which merge the elements of the specified iterables.
static HashByteSet newUpdatableSet(Iterable<Byte> elems1, Iterable<Byte> elems2, int expectedSize)
          Constructs a new updatable set which merge the elements of the specified iterables.
static HashByteSet newUpdatableSet(Iterable<Byte> elems1, Iterable<Byte> elems2, Iterable<Byte> elems3)
          Constructs a new updatable set which merge the elements of the specified iterables.
static HashByteSet newUpdatableSet(Iterable<Byte> elems1, Iterable<Byte> elems2, Iterable<Byte> elems3, int expectedSize)
          Constructs a new updatable set which merge the elements of the specified iterables.
static HashByteSet newUpdatableSet(Iterable<Byte> elems1, Iterable<Byte> elems2, Iterable<Byte> elems3, Iterable<Byte> elems4)
          Constructs a new updatable set which merge the elements of the specified iterables.
static HashByteSet newUpdatableSet(Iterable<Byte> elems1, Iterable<Byte> elems2, Iterable<Byte> elems3, Iterable<Byte> elems4, int expectedSize)
          Constructs a new updatable set which merge the elements of the specified iterables.
static HashByteSet newUpdatableSet(Iterable<Byte> elems1, Iterable<Byte> elems2, Iterable<Byte> elems3, Iterable<Byte> elems4, Iterable<Byte> elems5)
          Constructs a new updatable set which merge the elements of the specified iterables.
static HashByteSet newUpdatableSet(Iterable<Byte> elems1, Iterable<Byte> elems2, Iterable<Byte> elems3, Iterable<Byte> elems4, Iterable<Byte> elems5, int expectedSize)
          Constructs a new updatable set which merge the elements of the specified iterables.
static HashByteSet newUpdatableSet(Iterator<Byte> elements)
          Constructs a new updatable set containing the elements traversed by the specified iterator.
static HashByteSet newUpdatableSet(Iterator<Byte> elements, int expectedSize)
          Constructs a new updatable set containing the elements traversed by the specified iterator.
static HashByteSet newUpdatableSetOf(byte e1)
          Constructs a new updatable singleton set of the given element.
static HashByteSet newUpdatableSetOf(byte e1, byte e2)
          Constructs a new updatable set of the two specified elements.
static HashByteSet newUpdatableSetOf(byte e1, byte e2, byte e3)
          Constructs a new updatable set of the three specified elements.
static HashByteSet newUpdatableSetOf(byte e1, byte e2, byte e3, byte e4)
          Constructs a new updatable set of the four specified elements.
static HashByteSet newUpdatableSetOf(byte e1, byte e2, byte e3, byte e4, byte e5, byte... restElements)
          Constructs a new updatable set of the specified elements.
 
Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getDefaultFactory

@Nonnull
public static HashByteSetFactory getDefaultFactory()
Returns the default implementation of HashByteSetFactory, to which all static methods in this class delegate.

Returns:
the default implementation of HashByteSetFactory
Throws:
RuntimeException - if no implementations of HashByteSetFactory are provided

newMutableSet

@Nonnull
public static HashByteSet newMutableSet()
Constructs a new empty mutable set of the default expected size.

This method simply delegates to getDefaultFactory().newMutableSet().

Returns:
a new empty mutable set

newMutableSet

@Nonnull
public static HashByteSet newMutableSet(int expectedSize)
Constructs a new empty mutable set of the given expected size.

This method simply delegates to getDefaultFactory().newMutableSet(expectedSize).

Parameters:
expectedSize - the expected size of the returned set
Returns:
a new empty mutable set of the given expected size

newMutableSet

@Nonnull
public static HashByteSet newMutableSet(@Nonnull
                                                Iterable<Byte> elements,
                                                int expectedSize)
Constructs a new mutable set containing the elements in the specified iterable.

If the specified iterable is a Set the expectedSize argument is ignored.

This method simply delegates to getDefaultFactory().newMutableSet(elements, expectedSize).

Parameters:
elements - the iterable whose elements are to be placed into the returned set
expectedSize - the expected size of the returned set
Returns:
a new mutable set of the elements of the specified iterable

newMutableSet

@Nonnull
public static HashByteSet newMutableSet(@Nonnull
                                                Iterable<Byte> elems1,
                                                @Nonnull
                                                Iterable<Byte> elems2,
                                                int expectedSize)
Constructs a new mutable set which merge the elements of the specified iterables.

This method simply delegates to getDefaultFactory().newMutableSet(elems1, elems2, expectedSize).

Parameters:
elems1 - the first source of elements for the returned set
elems2 - the second source of elements for the returned set
expectedSize - the expected size of the returned set
Returns:
a new mutable set which merge the elements of the specified iterables

newMutableSet

@Nonnull
public static HashByteSet newMutableSet(@Nonnull
                                                Iterable<Byte> elems1,
                                                @Nonnull
                                                Iterable<Byte> elems2,
                                                @Nonnull
                                                Iterable<Byte> elems3,
                                                int expectedSize)
Constructs a new mutable set which merge the elements of the specified iterables.

This method simply delegates to getDefaultFactory().newMutableSet(elems1, elems2, elems3, expectedSize).

Parameters:
elems1 - the first source of elements for the returned set
elems2 - the second source of elements for the returned set
elems3 - the third source of elements for the returned set
expectedSize - the expected size of the returned set
Returns:
a new mutable set which merge the elements of the specified iterables

newMutableSet

@Nonnull
public static HashByteSet newMutableSet(@Nonnull
                                                Iterable<Byte> elems1,
                                                @Nonnull
                                                Iterable<Byte> elems2,
                                                @Nonnull
                                                Iterable<Byte> elems3,
                                                @Nonnull
                                                Iterable<Byte> elems4,
                                                int expectedSize)
Constructs a new mutable set which merge the elements of the specified iterables.

This method simply delegates to getDefaultFactory().newMutableSet(elems1, elems2, elems3, elems4, expectedSize).

Parameters:
elems1 - the first source of elements for the returned set
elems2 - the second source of elements for the returned set
elems3 - the third source of elements for the returned set
elems4 - the fourth source of elements for the returned set
expectedSize - the expected size of the returned set
Returns:
a new mutable set which merge the elements of the specified iterables

newMutableSet

@Nonnull
public static HashByteSet newMutableSet(@Nonnull
                                                Iterable<Byte> elems1,
                                                @Nonnull
                                                Iterable<Byte> elems2,
                                                @Nonnull
                                                Iterable<Byte> elems3,
                                                @Nonnull
                                                Iterable<Byte> elems4,
                                                @Nonnull
                                                Iterable<Byte> elems5,
                                                int expectedSize)
Constructs a new mutable set which merge the elements of the specified iterables.

This method simply delegates to getDefaultFactory().newMutableSet(elems1, elems2, elems3, elems4, elems5, expectedSize).

Parameters:
elems1 - the first source of elements for the returned set
elems2 - the second source of elements for the returned set
elems3 - the third source of elements for the returned set
elems4 - the fourth source of elements for the returned set
elems5 - the fifth source of elements for the returned set
expectedSize - the expected size of the returned set
Returns:
a new mutable set which merge the elements of the specified iterables

newMutableSet

@Nonnull
public static HashByteSet newMutableSet(@Nonnull
                                                Iterator<Byte> elements,
                                                int expectedSize)
Constructs a new mutable set containing the elements traversed by the specified iterator.

This method simply delegates to getDefaultFactory().newMutableSet(elements, expectedSize).

Parameters:
elements - the iterator from which elements are to be placed into the returned set
expectedSize - the expected size of the returned set
Returns:
a new mutable set containing the elements traversed by the specified iterator

newMutableSet

@Nonnull
public static HashByteSet newMutableSet(@Nonnull
                                                Consumer<ByteConsumer> elementsSupplier,
                                                int expectedSize)
Constructs a new mutable set of elements consumed by the callback within the given closure.

Example: TODO

This method simply delegates to getDefaultFactory().newMutableSet(elementsSupplier, expectedSize).

Parameters:
elementsSupplier - the function which supply mappings for the returned set via the callback passed in
expectedSize - the expected size of the returned set
Returns:
a new mutable set of elements consumed by the callback within the given closure

newMutableSet

@Nonnull
public static HashByteSet newMutableSet(@Nonnull
                                                byte[] elements,
                                                int expectedSize)
Constructs a new mutable set of elements from the given array.

This method simply delegates to getDefaultFactory().newMutableSet(elements, expectedSize).

Parameters:
elements - the array whose elements are to be placed into the returned set
expectedSize - the expected size of the returned set
Returns:
a new mutable set of elements from the given array

newMutableSet

@Nonnull
public static HashByteSet newMutableSet(@Nonnull
                                                Byte[] elements,
                                                int expectedSize)
Constructs a new mutable set of elements from the given array.

This method simply delegates to getDefaultFactory().newMutableSet(elements, expectedSize).

Parameters:
elements - the array whose elements are to be placed into the returned set
expectedSize - the expected size of the returned set
Returns:
a new mutable set of elements from the given array
Throws:
NullPointerException - if elements array contain null elements

newMutableSet

@Nonnull
public static HashByteSet newMutableSet(@Nonnull
                                                Iterable<Byte> elements)
Constructs a new mutable set containing the elements in the specified iterable.

This method simply delegates to getDefaultFactory().newMutableSet(elements).

Parameters:
elements - the iterable whose elements are to be placed into the returned set
Returns:
a new mutable set of the elements of the specified iterable

newMutableSet

@Nonnull
public static HashByteSet newMutableSet(@Nonnull
                                                Iterable<Byte> elems1,
                                                @Nonnull
                                                Iterable<Byte> elems2)
Constructs a new mutable set which merge the elements of the specified iterables.

This method simply delegates to getDefaultFactory().newMutableSet(elems1, elems2).

Parameters:
elems1 - the first source of elements for the returned set
elems2 - the second source of elements for the returned set
Returns:
a new mutable set which merge the elements of the specified iterables

newMutableSet

@Nonnull
public static HashByteSet newMutableSet(@Nonnull
                                                Iterable<Byte> elems1,
                                                @Nonnull
                                                Iterable<Byte> elems2,
                                                @Nonnull
                                                Iterable<Byte> elems3)
Constructs a new mutable set which merge the elements of the specified iterables.

This method simply delegates to getDefaultFactory().newMutableSet(elems1, elems2, elems3).

Parameters:
elems1 - the first source of elements for the returned set
elems2 - the second source of elements for the returned set
elems3 - the third source of elements for the returned set
Returns:
a new mutable set which merge the elements of the specified iterables

newMutableSet

@Nonnull
public static HashByteSet newMutableSet(@Nonnull
                                                Iterable<Byte> elems1,
                                                @Nonnull
                                                Iterable<Byte> elems2,
                                                @Nonnull
                                                Iterable<Byte> elems3,
                                                @Nonnull
                                                Iterable<Byte> elems4)
Constructs a new mutable set which merge the elements of the specified iterables.

This method simply delegates to getDefaultFactory().newMutableSet(elems1, elems2, elems3, elems4).

Parameters:
elems1 - the first source of elements for the returned set
elems2 - the second source of elements for the returned set
elems3 - the third source of elements for the returned set
elems4 - the fourth source of elements for the returned set
Returns:
a new mutable set which merge the elements of the specified iterables

newMutableSet

@Nonnull
public static HashByteSet newMutableSet(@Nonnull
                                                Iterable<Byte> elems1,
                                                @Nonnull
                                                Iterable<Byte> elems2,
                                                @Nonnull
                                                Iterable<Byte> elems3,
                                                @Nonnull
                                                Iterable<Byte> elems4,
                                                @Nonnull
                                                Iterable<Byte> elems5)
Constructs a new mutable set which merge the elements of the specified iterables.

This method simply delegates to getDefaultFactory().newMutableSet(elems1, elems2, elems3, elems4, elems5).

Parameters:
elems1 - the first source of elements for the returned set
elems2 - the second source of elements for the returned set
elems3 - the third source of elements for the returned set
elems4 - the fourth source of elements for the returned set
elems5 - the fifth source of elements for the returned set
Returns:
a new mutable set which merge the elements of the specified iterables

newMutableSet

@Nonnull
public static HashByteSet newMutableSet(@Nonnull
                                                Iterator<Byte> elements)
Constructs a new mutable set containing the elements traversed by the specified iterator.

This method simply delegates to getDefaultFactory().newMutableSet(elements).

Parameters:
elements - the iterator from which elements are to be placed into the returned set
Returns:
a new mutable set containing the elements traversed by the specified iterator

newMutableSet

@Nonnull
public static HashByteSet newMutableSet(@Nonnull
                                                Consumer<ByteConsumer> elementsSupplier)
Constructs a new mutable set of elements consumed by the callback within the given closure.

Example: TODO

This method simply delegates to getDefaultFactory().newMutableSet(elementsSupplier).

Parameters:
elementsSupplier - the function which supply mappings for the returned set via the callback passed in
Returns:
a new mutable set of elements consumed by the callback within the given closure

newMutableSet

@Nonnull
public static HashByteSet newMutableSet(@Nonnull
                                                byte[] elements)
Constructs a new mutable set of elements from the given array.

This method simply delegates to getDefaultFactory().newMutableSet(elements).

Parameters:
elements - the array whose elements are to be placed into the returned set
Returns:
a new mutable set of elements from the given array

newMutableSet

@Nonnull
public static HashByteSet newMutableSet(@Nonnull
                                                Byte[] elements)
Constructs a new mutable set of elements from the given array.

This method simply delegates to getDefaultFactory().newMutableSet(elements).

Parameters:
elements - the array whose elements are to be placed into the returned set
Returns:
a new mutable set of elements from the given array
Throws:
NullPointerException - if elements array contain null elements

newMutableSetOf

@Nonnull
public static HashByteSet newMutableSetOf(byte e1)
Constructs a new mutable singleton set of the given element.

This method simply delegates to getDefaultFactory().newMutableSetOf(e1).

Parameters:
e1 - the sole element
Returns:
a new mutable singleton set of the given element

newMutableSetOf

@Nonnull
public static HashByteSet newMutableSetOf(byte e1,
                                                  byte e2)
Constructs a new mutable set of the two specified elements.

This method simply delegates to getDefaultFactory().newMutableSetOf(e1, e2).

Parameters:
e1 - the first element
e2 - the second element
Returns:
a new mutable set of the two specified elements

newMutableSetOf

@Nonnull
public static HashByteSet newMutableSetOf(byte e1,
                                                  byte e2,
                                                  byte e3)
Constructs a new mutable set of the three specified elements.

This method simply delegates to getDefaultFactory().newMutableSetOf(e1, e2, e3).

Parameters:
e1 - the first element
e2 - the second element
e3 - the third element
Returns:
a new mutable set of the three specified elements

newMutableSetOf

@Nonnull
public static HashByteSet newMutableSetOf(byte e1,
                                                  byte e2,
                                                  byte e3,
                                                  byte e4)
Constructs a new mutable set of the four specified elements.

This method simply delegates to getDefaultFactory().newMutableSetOf(e1, e2, e3, e4).

Parameters:
e1 - the first element
e2 - the second element
e3 - the third element
e4 - the fourth element
Returns:
a new mutable set of the four specified elements

newMutableSetOf

@Nonnull
public static HashByteSet newMutableSetOf(byte e1,
                                                  byte e2,
                                                  byte e3,
                                                  byte e4,
                                                  byte e5,
                                                  byte... restElements)
Constructs a new mutable set of the specified elements.

This method simply delegates to getDefaultFactory().newMutableSetOf(e1, e2, e3, e4, e5, restElements).

Parameters:
e1 - the first element
e2 - the second element
e3 - the third element
e4 - the fourth element
e5 - the fifth element
restElements - the rest elements to be placed into the set
Returns:
a new mutable set of the specified elements

newUpdatableSet

@Nonnull
public static HashByteSet newUpdatableSet()
Constructs a new empty updatable set of the default expected size.

This method simply delegates to getDefaultFactory().newUpdatableSet().

Returns:
a new empty updatable set

newUpdatableSet

@Nonnull
public static HashByteSet newUpdatableSet(int expectedSize)
Constructs a new empty updatable set of the given expected size.

This method simply delegates to getDefaultFactory().newUpdatableSet(expectedSize).

Parameters:
expectedSize - the expected size of the returned set
Returns:
a new empty updatable set of the given expected size

newUpdatableSet

@Nonnull
public static HashByteSet newUpdatableSet(@Nonnull
                                                  Iterable<Byte> elements,
                                                  int expectedSize)
Constructs a new updatable set containing the elements in the specified iterable.

If the specified iterable is a Set the expectedSize argument is ignored.

This method simply delegates to getDefaultFactory().newUpdatableSet(elements, expectedSize).

Parameters:
elements - the iterable whose elements are to be placed into the returned set
expectedSize - the expected size of the returned set
Returns:
a new updatable set of the elements of the specified iterable

newUpdatableSet

@Nonnull
public static HashByteSet newUpdatableSet(@Nonnull
                                                  Iterable<Byte> elems1,
                                                  @Nonnull
                                                  Iterable<Byte> elems2,
                                                  int expectedSize)
Constructs a new updatable set which merge the elements of the specified iterables.

This method simply delegates to getDefaultFactory().newUpdatableSet(elems1, elems2, expectedSize).

Parameters:
elems1 - the first source of elements for the returned set
elems2 - the second source of elements for the returned set
expectedSize - the expected size of the returned set
Returns:
a new updatable set which merge the elements of the specified iterables

newUpdatableSet

@Nonnull
public static HashByteSet newUpdatableSet(@Nonnull
                                                  Iterable<Byte> elems1,
                                                  @Nonnull
                                                  Iterable<Byte> elems2,
                                                  @Nonnull
                                                  Iterable<Byte> elems3,
                                                  int expectedSize)
Constructs a new updatable set which merge the elements of the specified iterables.

This method simply delegates to getDefaultFactory().newUpdatableSet(elems1, elems2, elems3, expectedSize).

Parameters:
elems1 - the first source of elements for the returned set
elems2 - the second source of elements for the returned set
elems3 - the third source of elements for the returned set
expectedSize - the expected size of the returned set
Returns:
a new updatable set which merge the elements of the specified iterables

newUpdatableSet

@Nonnull
public static HashByteSet newUpdatableSet(@Nonnull
                                                  Iterable<Byte> elems1,
                                                  @Nonnull
                                                  Iterable<Byte> elems2,
                                                  @Nonnull
                                                  Iterable<Byte> elems3,
                                                  @Nonnull
                                                  Iterable<Byte> elems4,
                                                  int expectedSize)
Constructs a new updatable set which merge the elements of the specified iterables.

This method simply delegates to getDefaultFactory().newUpdatableSet(elems1, elems2, elems3, elems4, expectedSize).

Parameters:
elems1 - the first source of elements for the returned set
elems2 - the second source of elements for the returned set
elems3 - the third source of elements for the returned set
elems4 - the fourth source of elements for the returned set
expectedSize - the expected size of the returned set
Returns:
a new updatable set which merge the elements of the specified iterables

newUpdatableSet

@Nonnull
public static HashByteSet newUpdatableSet(@Nonnull
                                                  Iterable<Byte> elems1,
                                                  @Nonnull
                                                  Iterable<Byte> elems2,
                                                  @Nonnull
                                                  Iterable<Byte> elems3,
                                                  @Nonnull
                                                  Iterable<Byte> elems4,
                                                  @Nonnull
                                                  Iterable<Byte> elems5,
                                                  int expectedSize)
Constructs a new updatable set which merge the elements of the specified iterables.

This method simply delegates to getDefaultFactory().newUpdatableSet(elems1, elems2, elems3, elems4, elems5, expectedSize).

Parameters:
elems1 - the first source of elements for the returned set
elems2 - the second source of elements for the returned set
elems3 - the third source of elements for the returned set
elems4 - the fourth source of elements for the returned set
elems5 - the fifth source of elements for the returned set
expectedSize - the expected size of the returned set
Returns:
a new updatable set which merge the elements of the specified iterables

newUpdatableSet

@Nonnull
public static HashByteSet newUpdatableSet(@Nonnull
                                                  Iterator<Byte> elements,
                                                  int expectedSize)
Constructs a new updatable set containing the elements traversed by the specified iterator.

This method simply delegates to getDefaultFactory().newUpdatableSet(elements, expectedSize).

Parameters:
elements - the iterator from which elements are to be placed into the returned set
expectedSize - the expected size of the returned set
Returns:
a new updatable set containing the elements traversed by the specified iterator

newUpdatableSet

@Nonnull
public static HashByteSet newUpdatableSet(@Nonnull
                                                  Consumer<ByteConsumer> elementsSupplier,
                                                  int expectedSize)
Constructs a new updatable set of elements consumed by the callback within the given closure.

Example: TODO

This method simply delegates to getDefaultFactory().newUpdatableSet(elementsSupplier, expectedSize).

Parameters:
elementsSupplier - the function which supply mappings for the returned set via the callback passed in
expectedSize - the expected size of the returned set
Returns:
a new updatable set of elements consumed by the callback within the given closure

newUpdatableSet

@Nonnull
public static HashByteSet newUpdatableSet(@Nonnull
                                                  byte[] elements,
                                                  int expectedSize)
Constructs a new updatable set of elements from the given array.

This method simply delegates to getDefaultFactory().newUpdatableSet(elements, expectedSize).

Parameters:
elements - the array whose elements are to be placed into the returned set
expectedSize - the expected size of the returned set
Returns:
a new updatable set of elements from the given array

newUpdatableSet

@Nonnull
public static HashByteSet newUpdatableSet(@Nonnull
                                                  Byte[] elements,
                                                  int expectedSize)
Constructs a new updatable set of elements from the given array.

This method simply delegates to getDefaultFactory().newUpdatableSet(elements, expectedSize).

Parameters:
elements - the array whose elements are to be placed into the returned set
expectedSize - the expected size of the returned set
Returns:
a new updatable set of elements from the given array
Throws:
NullPointerException - if elements array contain null elements

newUpdatableSet

@Nonnull
public static HashByteSet newUpdatableSet(@Nonnull
                                                  Iterable<Byte> elements)
Constructs a new updatable set containing the elements in the specified iterable.

This method simply delegates to getDefaultFactory().newUpdatableSet(elements).

Parameters:
elements - the iterable whose elements are to be placed into the returned set
Returns:
a new updatable set of the elements of the specified iterable

newUpdatableSet

@Nonnull
public static HashByteSet newUpdatableSet(@Nonnull
                                                  Iterable<Byte> elems1,
                                                  @Nonnull
                                                  Iterable<Byte> elems2)
Constructs a new updatable set which merge the elements of the specified iterables.

This method simply delegates to getDefaultFactory().newUpdatableSet(elems1, elems2).

Parameters:
elems1 - the first source of elements for the returned set
elems2 - the second source of elements for the returned set
Returns:
a new updatable set which merge the elements of the specified iterables

newUpdatableSet

@Nonnull
public static HashByteSet newUpdatableSet(@Nonnull
                                                  Iterable<Byte> elems1,
                                                  @Nonnull
                                                  Iterable<Byte> elems2,
                                                  @Nonnull
                                                  Iterable<Byte> elems3)
Constructs a new updatable set which merge the elements of the specified iterables.

This method simply delegates to getDefaultFactory().newUpdatableSet(elems1, elems2, elems3).

Parameters:
elems1 - the first source of elements for the returned set
elems2 - the second source of elements for the returned set
elems3 - the third source of elements for the returned set
Returns:
a new updatable set which merge the elements of the specified iterables

newUpdatableSet

@Nonnull
public static HashByteSet newUpdatableSet(@Nonnull
                                                  Iterable<Byte> elems1,
                                                  @Nonnull
                                                  Iterable<Byte> elems2,
                                                  @Nonnull
                                                  Iterable<Byte> elems3,
                                                  @Nonnull
                                                  Iterable<Byte> elems4)
Constructs a new updatable set which merge the elements of the specified iterables.

This method simply delegates to getDefaultFactory().newUpdatableSet(elems1, elems2, elems3, elems4).

Parameters:
elems1 - the first source of elements for the returned set
elems2 - the second source of elements for the returned set
elems3 - the third source of elements for the returned set
elems4 - the fourth source of elements for the returned set
Returns:
a new updatable set which merge the elements of the specified iterables

newUpdatableSet

@Nonnull
public static HashByteSet newUpdatableSet(@Nonnull
                                                  Iterable<Byte> elems1,
                                                  @Nonnull
                                                  Iterable<Byte> elems2,
                                                  @Nonnull
                                                  Iterable<Byte> elems3,
                                                  @Nonnull
                                                  Iterable<Byte> elems4,
                                                  @Nonnull
                                                  Iterable<Byte> elems5)
Constructs a new updatable set which merge the elements of the specified iterables.

This method simply delegates to getDefaultFactory().newUpdatableSet(elems1, elems2, elems3, elems4, elems5).

Parameters:
elems1 - the first source of elements for the returned set
elems2 - the second source of elements for the returned set
elems3 - the third source of elements for the returned set
elems4 - the fourth source of elements for the returned set
elems5 - the fifth source of elements for the returned set
Returns:
a new updatable set which merge the elements of the specified iterables

newUpdatableSet

@Nonnull
public static HashByteSet newUpdatableSet(@Nonnull
                                                  Iterator<Byte> elements)
Constructs a new updatable set containing the elements traversed by the specified iterator.

This method simply delegates to getDefaultFactory().newUpdatableSet(elements).

Parameters:
elements - the iterator from which elements are to be placed into the returned set
Returns:
a new updatable set containing the elements traversed by the specified iterator

newUpdatableSet

@Nonnull
public static HashByteSet newUpdatableSet(@Nonnull
                                                  Consumer<ByteConsumer> elementsSupplier)
Constructs a new updatable set of elements consumed by the callback within the given closure.

Example: TODO

This method simply delegates to getDefaultFactory().newUpdatableSet(elementsSupplier).

Parameters:
elementsSupplier - the function which supply mappings for the returned set via the callback passed in
Returns:
a new updatable set of elements consumed by the callback within the given closure

newUpdatableSet

@Nonnull
public static HashByteSet newUpdatableSet(@Nonnull
                                                  byte[] elements)
Constructs a new updatable set of elements from the given array.

This method simply delegates to getDefaultFactory().newUpdatableSet(elements).

Parameters:
elements - the array whose elements are to be placed into the returned set
Returns:
a new updatable set of elements from the given array

newUpdatableSet

@Nonnull
public static HashByteSet newUpdatableSet(@Nonnull
                                                  Byte[] elements)
Constructs a new updatable set of elements from the given array.

This method simply delegates to getDefaultFactory().newUpdatableSet(elements).

Parameters:
elements - the array whose elements are to be placed into the returned set
Returns:
a new updatable set of elements from the given array
Throws:
NullPointerException - if elements array contain null elements

newUpdatableSetOf

@Nonnull
public static HashByteSet newUpdatableSetOf(byte e1)
Constructs a new updatable singleton set of the given element.

This method simply delegates to getDefaultFactory().newUpdatableSetOf(e1).

Parameters:
e1 - the sole element
Returns:
a new updatable singleton set of the given element

newUpdatableSetOf

@Nonnull
public static HashByteSet newUpdatableSetOf(byte e1,
                                                    byte e2)
Constructs a new updatable set of the two specified elements.

This method simply delegates to getDefaultFactory().newUpdatableSetOf(e1, e2).

Parameters:
e1 - the first element
e2 - the second element
Returns:
a new updatable set of the two specified elements

newUpdatableSetOf

@Nonnull
public static HashByteSet newUpdatableSetOf(byte e1,
                                                    byte e2,
                                                    byte e3)
Constructs a new updatable set of the three specified elements.

This method simply delegates to getDefaultFactory().newUpdatableSetOf(e1, e2, e3).

Parameters:
e1 - the first element
e2 - the second element
e3 - the third element
Returns:
a new updatable set of the three specified elements

newUpdatableSetOf

@Nonnull
public static HashByteSet newUpdatableSetOf(byte e1,
                                                    byte e2,
                                                    byte e3,
                                                    byte e4)
Constructs a new updatable set of the four specified elements.

This method simply delegates to getDefaultFactory().newUpdatableSetOf(e1, e2, e3, e4).

Parameters:
e1 - the first element
e2 - the second element
e3 - the third element
e4 - the fourth element
Returns:
a new updatable set of the four specified elements

newUpdatableSetOf

@Nonnull
public static HashByteSet newUpdatableSetOf(byte e1,
                                                    byte e2,
                                                    byte e3,
                                                    byte e4,
                                                    byte e5,
                                                    byte... restElements)
Constructs a new updatable set of the specified elements.

This method simply delegates to getDefaultFactory().newUpdatableSetOf(e1, e2, e3, e4, e5, restElements).

Parameters:
e1 - the first element
e2 - the second element
e3 - the third element
e4 - the fourth element
e5 - the fifth element
restElements - the rest elements to be placed into the set
Returns:
a new updatable set of the specified elements

newImmutableSet

@Nonnull
public static HashByteSet newImmutableSet(@Nonnull
                                                  Iterable<Byte> elements,
                                                  int expectedSize)
Constructs a new immutable set containing the elements in the specified iterable.

If the specified iterable is a Set the expectedSize argument is ignored.

This method simply delegates to getDefaultFactory().newImmutableSet(elements, expectedSize).

Parameters:
elements - the iterable whose elements are to be placed into the returned set
expectedSize - the expected size of the returned set
Returns:
a new immutable set of the elements of the specified iterable

newImmutableSet

@Nonnull
public static HashByteSet newImmutableSet(@Nonnull
                                                  Iterable<Byte> elems1,
                                                  @Nonnull
                                                  Iterable<Byte> elems2,
                                                  int expectedSize)
Constructs a new immutable set which merge the elements of the specified iterables.

This method simply delegates to getDefaultFactory().newImmutableSet(elems1, elems2, expectedSize).

Parameters:
elems1 - the first source of elements for the returned set
elems2 - the second source of elements for the returned set
expectedSize - the expected size of the returned set
Returns:
a new immutable set which merge the elements of the specified iterables

newImmutableSet

@Nonnull
public static HashByteSet newImmutableSet(@Nonnull
                                                  Iterable<Byte> elems1,
                                                  @Nonnull
                                                  Iterable<Byte> elems2,
                                                  @Nonnull
                                                  Iterable<Byte> elems3,
                                                  int expectedSize)
Constructs a new immutable set which merge the elements of the specified iterables.

This method simply delegates to getDefaultFactory().newImmutableSet(elems1, elems2, elems3, expectedSize).

Parameters:
elems1 - the first source of elements for the returned set
elems2 - the second source of elements for the returned set
elems3 - the third source of elements for the returned set
expectedSize - the expected size of the returned set
Returns:
a new immutable set which merge the elements of the specified iterables

newImmutableSet

@Nonnull
public static HashByteSet newImmutableSet(@Nonnull
                                                  Iterable<Byte> elems1,
                                                  @Nonnull
                                                  Iterable<Byte> elems2,
                                                  @Nonnull
                                                  Iterable<Byte> elems3,
                                                  @Nonnull
                                                  Iterable<Byte> elems4,
                                                  int expectedSize)
Constructs a new immutable set which merge the elements of the specified iterables.

This method simply delegates to getDefaultFactory().newImmutableSet(elems1, elems2, elems3, elems4, expectedSize).

Parameters:
elems1 - the first source of elements for the returned set
elems2 - the second source of elements for the returned set
elems3 - the third source of elements for the returned set
elems4 - the fourth source of elements for the returned set
expectedSize - the expected size of the returned set
Returns:
a new immutable set which merge the elements of the specified iterables

newImmutableSet

@Nonnull
public static HashByteSet newImmutableSet(@Nonnull
                                                  Iterable<Byte> elems1,
                                                  @Nonnull
                                                  Iterable<Byte> elems2,
                                                  @Nonnull
                                                  Iterable<Byte> elems3,
                                                  @Nonnull
                                                  Iterable<Byte> elems4,
                                                  @Nonnull
                                                  Iterable<Byte> elems5,
                                                  int expectedSize)
Constructs a new immutable set which merge the elements of the specified iterables.

This method simply delegates to getDefaultFactory().newImmutableSet(elems1, elems2, elems3, elems4, elems5, expectedSize).

Parameters:
elems1 - the first source of elements for the returned set
elems2 - the second source of elements for the returned set
elems3 - the third source of elements for the returned set
elems4 - the fourth source of elements for the returned set
elems5 - the fifth source of elements for the returned set
expectedSize - the expected size of the returned set
Returns:
a new immutable set which merge the elements of the specified iterables

newImmutableSet

@Nonnull
public static HashByteSet newImmutableSet(@Nonnull
                                                  Iterator<Byte> elements,
                                                  int expectedSize)
Constructs a new immutable set containing the elements traversed by the specified iterator.

This method simply delegates to getDefaultFactory().newImmutableSet(elements, expectedSize).

Parameters:
elements - the iterator from which elements are to be placed into the returned set
expectedSize - the expected size of the returned set
Returns:
a new immutable set containing the elements traversed by the specified iterator

newImmutableSet

@Nonnull
public static HashByteSet newImmutableSet(@Nonnull
                                                  Consumer<ByteConsumer> elementsSupplier,
                                                  int expectedSize)
Constructs a new immutable set of elements consumed by the callback within the given closure.

Example: TODO

This method simply delegates to getDefaultFactory().newImmutableSet(elementsSupplier, expectedSize).

Parameters:
elementsSupplier - the function which supply mappings for the returned set via the callback passed in
expectedSize - the expected size of the returned set
Returns:
a new immutable set of elements consumed by the callback within the given closure

newImmutableSet

@Nonnull
public static HashByteSet newImmutableSet(@Nonnull
                                                  byte[] elements,
                                                  int expectedSize)
Constructs a new immutable set of elements from the given array.

This method simply delegates to getDefaultFactory().newImmutableSet(elements, expectedSize).

Parameters:
elements - the array whose elements are to be placed into the returned set
expectedSize - the expected size of the returned set
Returns:
a new immutable set of elements from the given array

newImmutableSet

@Nonnull
public static HashByteSet newImmutableSet(@Nonnull
                                                  Byte[] elements,
                                                  int expectedSize)
Constructs a new immutable set of elements from the given array.

This method simply delegates to getDefaultFactory().newImmutableSet(elements, expectedSize).

Parameters:
elements - the array whose elements are to be placed into the returned set
expectedSize - the expected size of the returned set
Returns:
a new immutable set of elements from the given array
Throws:
NullPointerException - if elements array contain null elements

newImmutableSet

@Nonnull
public static HashByteSet newImmutableSet(@Nonnull
                                                  Iterable<Byte> elements)
Constructs a new immutable set containing the elements in the specified iterable.

This method simply delegates to getDefaultFactory().newImmutableSet(elements).

Parameters:
elements - the iterable whose elements are to be placed into the returned set
Returns:
a new immutable set of the elements of the specified iterable

newImmutableSet

@Nonnull
public static HashByteSet newImmutableSet(@Nonnull
                                                  Iterable<Byte> elems1,
                                                  @Nonnull
                                                  Iterable<Byte> elems2)
Constructs a new immutable set which merge the elements of the specified iterables.

This method simply delegates to getDefaultFactory().newImmutableSet(elems1, elems2).

Parameters:
elems1 - the first source of elements for the returned set
elems2 - the second source of elements for the returned set
Returns:
a new immutable set which merge the elements of the specified iterables

newImmutableSet

@Nonnull
public static HashByteSet newImmutableSet(@Nonnull
                                                  Iterable<Byte> elems1,
                                                  @Nonnull
                                                  Iterable<Byte> elems2,
                                                  @Nonnull
                                                  Iterable<Byte> elems3)
Constructs a new immutable set which merge the elements of the specified iterables.

This method simply delegates to getDefaultFactory().newImmutableSet(elems1, elems2, elems3).

Parameters:
elems1 - the first source of elements for the returned set
elems2 - the second source of elements for the returned set
elems3 - the third source of elements for the returned set
Returns:
a new immutable set which merge the elements of the specified iterables

newImmutableSet

@Nonnull
public static HashByteSet newImmutableSet(@Nonnull
                                                  Iterable<Byte> elems1,
                                                  @Nonnull
                                                  Iterable<Byte> elems2,
                                                  @Nonnull
                                                  Iterable<Byte> elems3,
                                                  @Nonnull
                                                  Iterable<Byte> elems4)
Constructs a new immutable set which merge the elements of the specified iterables.

This method simply delegates to getDefaultFactory().newImmutableSet(elems1, elems2, elems3, elems4).

Parameters:
elems1 - the first source of elements for the returned set
elems2 - the second source of elements for the returned set
elems3 - the third source of elements for the returned set
elems4 - the fourth source of elements for the returned set
Returns:
a new immutable set which merge the elements of the specified iterables

newImmutableSet

@Nonnull
public static HashByteSet newImmutableSet(@Nonnull
                                                  Iterable<Byte> elems1,
                                                  @Nonnull
                                                  Iterable<Byte> elems2,
                                                  @Nonnull
                                                  Iterable<Byte> elems3,
                                                  @Nonnull
                                                  Iterable<Byte> elems4,
                                                  @Nonnull
                                                  Iterable<Byte> elems5)
Constructs a new immutable set which merge the elements of the specified iterables.

This method simply delegates to getDefaultFactory().newImmutableSet(elems1, elems2, elems3, elems4, elems5).

Parameters:
elems1 - the first source of elements for the returned set
elems2 - the second source of elements for the returned set
elems3 - the third source of elements for the returned set
elems4 - the fourth source of elements for the returned set
elems5 - the fifth source of elements for the returned set
Returns:
a new immutable set which merge the elements of the specified iterables

newImmutableSet

@Nonnull
public static HashByteSet newImmutableSet(@Nonnull
                                                  Iterator<Byte> elements)
Constructs a new immutable set containing the elements traversed by the specified iterator.

This method simply delegates to getDefaultFactory().newImmutableSet(elements).

Parameters:
elements - the iterator from which elements are to be placed into the returned set
Returns:
a new immutable set containing the elements traversed by the specified iterator

newImmutableSet

@Nonnull
public static HashByteSet newImmutableSet(@Nonnull
                                                  Consumer<ByteConsumer> elementsSupplier)
Constructs a new immutable set of elements consumed by the callback within the given closure.

Example: TODO

This method simply delegates to getDefaultFactory().newImmutableSet(elementsSupplier).

Parameters:
elementsSupplier - the function which supply mappings for the returned set via the callback passed in
Returns:
a new immutable set of elements consumed by the callback within the given closure

newImmutableSet

@Nonnull
public static HashByteSet newImmutableSet(@Nonnull
                                                  byte[] elements)
Constructs a new immutable set of elements from the given array.

This method simply delegates to getDefaultFactory().newImmutableSet(elements).

Parameters:
elements - the array whose elements are to be placed into the returned set
Returns:
a new immutable set of elements from the given array

newImmutableSet

@Nonnull
public static HashByteSet newImmutableSet(@Nonnull
                                                  Byte[] elements)
Constructs a new immutable set of elements from the given array.

This method simply delegates to getDefaultFactory().newImmutableSet(elements).

Parameters:
elements - the array whose elements are to be placed into the returned set
Returns:
a new immutable set of elements from the given array
Throws:
NullPointerException - if elements array contain null elements

newImmutableSetOf

@Nonnull
public static HashByteSet newImmutableSetOf(byte e1)
Constructs a new immutable singleton set of the given element.

This method simply delegates to getDefaultFactory().newImmutableSetOf(e1).

Parameters:
e1 - the sole element
Returns:
a new immutable singleton set of the given element

newImmutableSetOf

@Nonnull
public static HashByteSet newImmutableSetOf(byte e1,
                                                    byte e2)
Constructs a new immutable set of the two specified elements.

This method simply delegates to getDefaultFactory().newImmutableSetOf(e1, e2).

Parameters:
e1 - the first element
e2 - the second element
Returns:
a new immutable set of the two specified elements

newImmutableSetOf

@Nonnull
public static HashByteSet newImmutableSetOf(byte e1,
                                                    byte e2,
                                                    byte e3)
Constructs a new immutable set of the three specified elements.

This method simply delegates to getDefaultFactory().newImmutableSetOf(e1, e2, e3).

Parameters:
e1 - the first element
e2 - the second element
e3 - the third element
Returns:
a new immutable set of the three specified elements

newImmutableSetOf

@Nonnull
public static HashByteSet newImmutableSetOf(byte e1,
                                                    byte e2,
                                                    byte e3,
                                                    byte e4)
Constructs a new immutable set of the four specified elements.

This method simply delegates to getDefaultFactory().newImmutableSetOf(e1, e2, e3, e4).

Parameters:
e1 - the first element
e2 - the second element
e3 - the third element
e4 - the fourth element
Returns:
a new immutable set of the four specified elements

newImmutableSetOf

@Nonnull
public static HashByteSet newImmutableSetOf(byte e1,
                                                    byte e2,
                                                    byte e3,
                                                    byte e4,
                                                    byte e5,
                                                    byte... restElements)
Constructs a new immutable set of the specified elements.

This method simply delegates to getDefaultFactory().newImmutableSetOf(e1, e2, e3, e4, e5, restElements).

Parameters:
e1 - the first element
e2 - the second element
e3 - the third element
e4 - the fourth element
e5 - the fifth element
restElements - the rest elements to be placed into the set
Returns:
a new immutable set of the specified elements