public final class HashIntSets extends Object
HashIntSet
s, and
the default HashIntSetFactory
static provider (getDefaultFactory()
).HashIntSet
,
@KolobokeSet
Modifier and Type | Method and Description |
---|---|
static HashIntSetFactory |
getDefaultFactory()
Returns the default implementation of
HashIntSetFactory , to which all static methods
in this class delegate. |
static HashIntSet |
newImmutableSet(Consumer<IntConsumer> elementsSupplier)
Constructs a new immutable set of elements consumed by the callback within the given closure.
|
static HashIntSet |
newImmutableSet(Consumer<IntConsumer> elementsSupplier,
int expectedSize)
Constructs a new immutable set of elements consumed by the callback within the given closure.
|
static HashIntSet |
newImmutableSet(int[] elements)
Constructs a new immutable set of elements from the given array.
|
static HashIntSet |
newImmutableSet(int[] elements,
int expectedSize)
Constructs a new immutable set of elements from the given array.
|
static HashIntSet |
newImmutableSet(Integer[] elements)
Constructs a new immutable set of elements from the given array.
|
static HashIntSet |
newImmutableSet(Integer[] elements,
int expectedSize)
Constructs a new immutable set of elements from the given array.
|
static HashIntSet |
newImmutableSet(Iterable<Integer> elements)
Constructs a new immutable set containing the elements in the specified iterable.
|
static HashIntSet |
newImmutableSet(Iterable<Integer> elements,
int expectedSize)
Constructs a new immutable set containing the elements in the specified iterable.
|
static HashIntSet |
newImmutableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2)
Constructs a new immutable set which merge the elements of the specified iterables.
|
static HashIntSet |
newImmutableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
int expectedSize)
Constructs a new immutable set which merge the elements of the specified iterables.
|
static HashIntSet |
newImmutableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3)
Constructs a new immutable set which merge the elements of the specified iterables.
|
static HashIntSet |
newImmutableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3,
int expectedSize)
Constructs a new immutable set which merge the elements of the specified iterables.
|
static HashIntSet |
newImmutableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3,
Iterable<Integer> elems4)
Constructs a new immutable set which merge the elements of the specified iterables.
|
static HashIntSet |
newImmutableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3,
Iterable<Integer> elems4,
int expectedSize)
Constructs a new immutable set which merge the elements of the specified iterables.
|
static HashIntSet |
newImmutableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3,
Iterable<Integer> elems4,
Iterable<Integer> elems5)
Constructs a new immutable set which merge the elements of the specified iterables.
|
static HashIntSet |
newImmutableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3,
Iterable<Integer> elems4,
Iterable<Integer> elems5,
int expectedSize)
Constructs a new immutable set which merge the elements of the specified iterables.
|
static HashIntSet |
newImmutableSet(Iterator<Integer> elements)
Constructs a new immutable set containing the elements traversed by the specified iterator.
|
static HashIntSet |
newImmutableSet(Iterator<Integer> elements,
int expectedSize)
Constructs a new immutable set containing the elements traversed by the specified iterator.
|
static HashIntSet |
newImmutableSetOf(int e1)
Constructs a new immutable singleton set of the given element.
|
static HashIntSet |
newImmutableSetOf(int e1,
int e2)
Constructs a new immutable set of the two specified elements.
|
static HashIntSet |
newImmutableSetOf(int e1,
int e2,
int e3)
Constructs a new immutable set of the three specified elements.
|
static HashIntSet |
newImmutableSetOf(int e1,
int e2,
int e3,
int e4)
Constructs a new immutable set of the four specified elements.
|
static HashIntSet |
newImmutableSetOf(int e1,
int e2,
int e3,
int e4,
int e5,
int... restElements)
Constructs a new immutable set of the specified elements.
|
static HashIntSet |
newMutableSet()
Constructs a new empty mutable set of the default expected size.
|
static HashIntSet |
newMutableSet(Consumer<IntConsumer> elementsSupplier)
Constructs a new mutable set of elements consumed by the callback within the given closure.
|
static HashIntSet |
newMutableSet(Consumer<IntConsumer> elementsSupplier,
int expectedSize)
Constructs a new mutable set of elements consumed by the callback within the given closure.
|
static HashIntSet |
newMutableSet(int expectedSize)
Constructs a new empty mutable set of the given expected size.
|
static HashIntSet |
newMutableSet(int[] elements)
Constructs a new mutable set of elements from the given array.
|
static HashIntSet |
newMutableSet(int[] elements,
int expectedSize)
Constructs a new mutable set of elements from the given array.
|
static HashIntSet |
newMutableSet(Integer[] elements)
Constructs a new mutable set of elements from the given array.
|
static HashIntSet |
newMutableSet(Integer[] elements,
int expectedSize)
Constructs a new mutable set of elements from the given array.
|
static HashIntSet |
newMutableSet(Iterable<Integer> elements)
Constructs a new mutable set containing the elements in the specified iterable.
|
static HashIntSet |
newMutableSet(Iterable<Integer> elements,
int expectedSize)
Constructs a new mutable set containing the elements in the specified iterable.
|
static HashIntSet |
newMutableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2)
Constructs a new mutable set which merge the elements of the specified iterables.
|
static HashIntSet |
newMutableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
int expectedSize)
Constructs a new mutable set which merge the elements of the specified iterables.
|
static HashIntSet |
newMutableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3)
Constructs a new mutable set which merge the elements of the specified iterables.
|
static HashIntSet |
newMutableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3,
int expectedSize)
Constructs a new mutable set which merge the elements of the specified iterables.
|
static HashIntSet |
newMutableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3,
Iterable<Integer> elems4)
Constructs a new mutable set which merge the elements of the specified iterables.
|
static HashIntSet |
newMutableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3,
Iterable<Integer> elems4,
int expectedSize)
Constructs a new mutable set which merge the elements of the specified iterables.
|
static HashIntSet |
newMutableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3,
Iterable<Integer> elems4,
Iterable<Integer> elems5)
Constructs a new mutable set which merge the elements of the specified iterables.
|
static HashIntSet |
newMutableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3,
Iterable<Integer> elems4,
Iterable<Integer> elems5,
int expectedSize)
Constructs a new mutable set which merge the elements of the specified iterables.
|
static HashIntSet |
newMutableSet(Iterator<Integer> elements)
Constructs a new mutable set containing the elements traversed by the specified iterator.
|
static HashIntSet |
newMutableSet(Iterator<Integer> elements,
int expectedSize)
Constructs a new mutable set containing the elements traversed by the specified iterator.
|
static HashIntSet |
newMutableSetOf(int e1)
Constructs a new mutable singleton set of the given element.
|
static HashIntSet |
newMutableSetOf(int e1,
int e2)
Constructs a new mutable set of the two specified elements.
|
static HashIntSet |
newMutableSetOf(int e1,
int e2,
int e3)
Constructs a new mutable set of the three specified elements.
|
static HashIntSet |
newMutableSetOf(int e1,
int e2,
int e3,
int e4)
Constructs a new mutable set of the four specified elements.
|
static HashIntSet |
newMutableSetOf(int e1,
int e2,
int e3,
int e4,
int e5,
int... restElements)
Constructs a new mutable set of the specified elements.
|
static HashIntSet |
newUpdatableSet()
Constructs a new empty updatable set of the default expected size.
|
static HashIntSet |
newUpdatableSet(Consumer<IntConsumer> elementsSupplier)
Constructs a new updatable set of elements consumed by the callback within the given closure.
|
static HashIntSet |
newUpdatableSet(Consumer<IntConsumer> elementsSupplier,
int expectedSize)
Constructs a new updatable set of elements consumed by the callback within the given closure.
|
static HashIntSet |
newUpdatableSet(int expectedSize)
Constructs a new empty updatable set of the given expected size.
|
static HashIntSet |
newUpdatableSet(int[] elements)
Constructs a new updatable set of elements from the given array.
|
static HashIntSet |
newUpdatableSet(int[] elements,
int expectedSize)
Constructs a new updatable set of elements from the given array.
|
static HashIntSet |
newUpdatableSet(Integer[] elements)
Constructs a new updatable set of elements from the given array.
|
static HashIntSet |
newUpdatableSet(Integer[] elements,
int expectedSize)
Constructs a new updatable set of elements from the given array.
|
static HashIntSet |
newUpdatableSet(Iterable<Integer> elements)
Constructs a new updatable set containing the elements in the specified iterable.
|
static HashIntSet |
newUpdatableSet(Iterable<Integer> elements,
int expectedSize)
Constructs a new updatable set containing the elements in the specified iterable.
|
static HashIntSet |
newUpdatableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2)
Constructs a new updatable set which merge the elements of the specified iterables.
|
static HashIntSet |
newUpdatableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
int expectedSize)
Constructs a new updatable set which merge the elements of the specified iterables.
|
static HashIntSet |
newUpdatableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3)
Constructs a new updatable set which merge the elements of the specified iterables.
|
static HashIntSet |
newUpdatableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3,
int expectedSize)
Constructs a new updatable set which merge the elements of the specified iterables.
|
static HashIntSet |
newUpdatableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3,
Iterable<Integer> elems4)
Constructs a new updatable set which merge the elements of the specified iterables.
|
static HashIntSet |
newUpdatableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3,
Iterable<Integer> elems4,
int expectedSize)
Constructs a new updatable set which merge the elements of the specified iterables.
|
static HashIntSet |
newUpdatableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3,
Iterable<Integer> elems4,
Iterable<Integer> elems5)
Constructs a new updatable set which merge the elements of the specified iterables.
|
static HashIntSet |
newUpdatableSet(Iterable<Integer> elems1,
Iterable<Integer> elems2,
Iterable<Integer> elems3,
Iterable<Integer> elems4,
Iterable<Integer> elems5,
int expectedSize)
Constructs a new updatable set which merge the elements of the specified iterables.
|
static HashIntSet |
newUpdatableSet(Iterator<Integer> elements)
Constructs a new updatable set containing the elements traversed by the specified iterator.
|
static HashIntSet |
newUpdatableSet(Iterator<Integer> elements,
int expectedSize)
Constructs a new updatable set containing the elements traversed by the specified iterator.
|
static HashIntSet |
newUpdatableSetOf(int e1)
Constructs a new updatable singleton set of the given element.
|
static HashIntSet |
newUpdatableSetOf(int e1,
int e2)
Constructs a new updatable set of the two specified elements.
|
static HashIntSet |
newUpdatableSetOf(int e1,
int e2,
int e3)
Constructs a new updatable set of the three specified elements.
|
static HashIntSet |
newUpdatableSetOf(int e1,
int e2,
int e3,
int e4)
Constructs a new updatable set of the four specified elements.
|
static HashIntSet |
newUpdatableSetOf(int e1,
int e2,
int e3,
int e4,
int e5,
int... restElements)
Constructs a new updatable set of the specified elements.
|
@Nonnull public static HashIntSetFactory getDefaultFactory()
HashIntSetFactory
, to which all static methods
in this class delegate.HashIntSetFactory
RuntimeException
- if no implementations of HashIntSetFactory
are provided@Nonnull public static HashIntSet newMutableSet()
This method simply delegates to getDefaultFactory()
.newMutableSet()
.
@Nonnull public static HashIntSet newMutableSet(int expectedSize)
This method simply delegates to getDefaultFactory()
.newMutableSet(expectedSize)
.
expectedSize
- the expected size of the returned set@Nonnull public static HashIntSet newMutableSet(@Nonnull Iterable<Integer> elements, int expectedSize)
If the specified iterable is a Set
the expectedSize
argument is ignored.
This method simply delegates to getDefaultFactory()
.newMutableSet(elements, expectedSize)
.
elements
- the iterable whose elements are to be placed into the returned setexpectedSize
- the expected size of the returned set@Nonnull public static HashIntSet newMutableSet(@Nonnull Iterable<Integer> elems1, @Nonnull Iterable<Integer> elems2, int expectedSize)
This method simply delegates to getDefaultFactory()
.newMutableSet(elems1, elems2, expectedSize)
.
elems1
- the first source of elements for the returned setelems2
- the second source of elements for the returned setexpectedSize
- the expected size of the returned set@Nonnull public static HashIntSet newMutableSet(@Nonnull Iterable<Integer> elems1, @Nonnull Iterable<Integer> elems2, @Nonnull Iterable<Integer> elems3, int expectedSize)
This method simply delegates to getDefaultFactory()
.newMutableSet(elems1, elems2, elems3, expectedSize)
.
elems1
- the first source of elements for the returned setelems2
- the second source of elements for the returned setelems3
- the third source of elements for the returned setexpectedSize
- the expected size of the returned set@Nonnull public static HashIntSet newMutableSet(@Nonnull Iterable<Integer> elems1, @Nonnull Iterable<Integer> elems2, @Nonnull Iterable<Integer> elems3, @Nonnull Iterable<Integer> elems4, int expectedSize)
This method simply delegates to getDefaultFactory()
.newMutableSet(elems1, elems2, elems3, elems4, expectedSize)
.
elems1
- the first source of elements for the returned setelems2
- the second source of elements for the returned setelems3
- the third source of elements for the returned setelems4
- the fourth source of elements for the returned setexpectedSize
- the expected size of the returned set@Nonnull public static HashIntSet newMutableSet(@Nonnull Iterable<Integer> elems1, @Nonnull Iterable<Integer> elems2, @Nonnull Iterable<Integer> elems3, @Nonnull Iterable<Integer> elems4, @Nonnull Iterable<Integer> elems5, int expectedSize)
This method simply delegates to getDefaultFactory()
.newMutableSet(elems1, elems2, elems3, elems4, elems5, expectedSize)
.
elems1
- the first source of elements for the returned setelems2
- the second source of elements for the returned setelems3
- the third source of elements for the returned setelems4
- the fourth source of elements for the returned setelems5
- the fifth source of elements for the returned setexpectedSize
- the expected size of the returned set@Nonnull public static HashIntSet newMutableSet(@Nonnull Iterator<Integer> elements, int expectedSize)
This method simply delegates to getDefaultFactory()
.newMutableSet(elements, expectedSize)
.
elements
- the iterator from which elements are to be placed into the returned setexpectedSize
- the expected size of the returned set@Nonnull public static HashIntSet newMutableSet(@Nonnull Consumer<IntConsumer> elementsSupplier, int expectedSize)
Example: TODO
This method simply delegates to getDefaultFactory()
.newMutableSet(elementsSupplier, expectedSize)
.
elementsSupplier
- the function which supply mappings for the returned set via
the callback passed inexpectedSize
- the expected size of the returned set@Nonnull public static HashIntSet newMutableSet(@Nonnull int[] elements, int expectedSize)
This method simply delegates to getDefaultFactory()
.newMutableSet(elements, expectedSize)
.
elements
- the array whose elements are to be placed into the returned setexpectedSize
- the expected size of the returned set@Nonnull public static HashIntSet newMutableSet(@Nonnull Integer[] elements, int expectedSize)
This method simply delegates to getDefaultFactory()
.newMutableSet(elements, expectedSize)
.
elements
- the array whose elements are to be placed into the returned setexpectedSize
- the expected size of the returned setNullPointerException
- if elements
array contain null
elements@Nonnull public static HashIntSet newMutableSet(@Nonnull Iterable<Integer> elements)
This method simply delegates to getDefaultFactory()
.newMutableSet(elements)
.
elements
- the iterable whose elements are to be placed into the returned set@Nonnull public static HashIntSet newMutableSet(@Nonnull Iterable<Integer> elems1, @Nonnull Iterable<Integer> elems2)
This method simply delegates to getDefaultFactory()
.newMutableSet(elems1, elems2)
.
elems1
- the first source of elements for the returned setelems2
- the second source of elements for the returned set@Nonnull public static HashIntSet newMutableSet(@Nonnull Iterable<Integer> elems1, @Nonnull Iterable<Integer> elems2, @Nonnull Iterable<Integer> elems3)
This method simply delegates to getDefaultFactory()
.newMutableSet(elems1, elems2, elems3)
.
elems1
- the first source of elements for the returned setelems2
- the second source of elements for the returned setelems3
- the third source of elements for the returned set@Nonnull public static HashIntSet newMutableSet(@Nonnull Iterable<Integer> elems1, @Nonnull Iterable<Integer> elems2, @Nonnull Iterable<Integer> elems3, @Nonnull Iterable<Integer> elems4)
This method simply delegates to getDefaultFactory()
.newMutableSet(elems1, elems2, elems3, elems4)
.
elems1
- the first source of elements for the returned setelems2
- the second source of elements for the returned setelems3
- the third source of elements for the returned setelems4
- the fourth source of elements for the returned set@Nonnull public static HashIntSet newMutableSet(@Nonnull Iterable<Integer> elems1, @Nonnull Iterable<Integer> elems2, @Nonnull Iterable<Integer> elems3, @Nonnull Iterable<Integer> elems4, @Nonnull Iterable<Integer> elems5)
This method simply delegates to getDefaultFactory()
.newMutableSet(elems1, elems2, elems3, elems4, elems5)
.
elems1
- the first source of elements for the returned setelems2
- the second source of elements for the returned setelems3
- the third source of elements for the returned setelems4
- the fourth source of elements for the returned setelems5
- the fifth source of elements for the returned set@Nonnull public static HashIntSet newMutableSet(@Nonnull Iterator<Integer> elements)
This method simply delegates to getDefaultFactory()
.newMutableSet(elements)
.
elements
- the iterator from which elements are to be placed into the returned set@Nonnull public static HashIntSet newMutableSet(@Nonnull Consumer<IntConsumer> elementsSupplier)
Example: TODO
This method simply delegates to getDefaultFactory()
.newMutableSet(elementsSupplier)
.
elementsSupplier
- the function which supply mappings for the returned set via
the callback passed in@Nonnull public static HashIntSet newMutableSet(@Nonnull int[] elements)
This method simply delegates to getDefaultFactory()
.newMutableSet(elements)
.
elements
- the array whose elements are to be placed into the returned set@Nonnull public static HashIntSet newMutableSet(@Nonnull Integer[] elements)
This method simply delegates to getDefaultFactory()
.newMutableSet(elements)
.
elements
- the array whose elements are to be placed into the returned setNullPointerException
- if elements
array contain null
elements@Nonnull public static HashIntSet newMutableSetOf(int e1)
This method simply delegates to getDefaultFactory()
.newMutableSetOf(e1)
.
e1
- the sole element@Nonnull public static HashIntSet newMutableSetOf(int e1, int e2)
This method simply delegates to getDefaultFactory()
.newMutableSetOf(e1, e2)
.
e1
- the first elemente2
- the second element@Nonnull public static HashIntSet newMutableSetOf(int e1, int e2, int e3)
This method simply delegates to getDefaultFactory()
.newMutableSetOf(e1, e2, e3)
.
e1
- the first elemente2
- the second elemente3
- the third element@Nonnull public static HashIntSet newMutableSetOf(int e1, int e2, int e3, int e4)
This method simply delegates to getDefaultFactory()
.newMutableSetOf(e1, e2, e3, e4)
.
e1
- the first elemente2
- the second elemente3
- the third elemente4
- the fourth element@Nonnull public static HashIntSet newMutableSetOf(int e1, int e2, int e3, int e4, int e5, int... restElements)
This method simply delegates to getDefaultFactory()
.newMutableSetOf(e1, e2, e3, e4, e5, restElements)
.
e1
- the first elemente2
- the second elemente3
- the third elemente4
- the fourth elemente5
- the fifth elementrestElements
- the rest elements to be placed into the set@Nonnull public static HashIntSet newUpdatableSet()
This method simply delegates to getDefaultFactory()
.newUpdatableSet()
.
@Nonnull public static HashIntSet newUpdatableSet(int expectedSize)
This method simply delegates to getDefaultFactory()
.newUpdatableSet(expectedSize)
.
expectedSize
- the expected size of the returned set@Nonnull public static HashIntSet newUpdatableSet(@Nonnull Iterable<Integer> elements, int expectedSize)
If the specified iterable is a Set
the expectedSize
argument is ignored.
This method simply delegates to getDefaultFactory()
.newUpdatableSet(elements, expectedSize)
.
elements
- the iterable whose elements are to be placed into the returned setexpectedSize
- the expected size of the returned set@Nonnull public static HashIntSet newUpdatableSet(@Nonnull Iterable<Integer> elems1, @Nonnull Iterable<Integer> elems2, int expectedSize)
This method simply delegates to getDefaultFactory()
.newUpdatableSet(elems1, elems2, expectedSize)
.
elems1
- the first source of elements for the returned setelems2
- the second source of elements for the returned setexpectedSize
- the expected size of the returned set@Nonnull public static HashIntSet newUpdatableSet(@Nonnull Iterable<Integer> elems1, @Nonnull Iterable<Integer> elems2, @Nonnull Iterable<Integer> elems3, int expectedSize)
This method simply delegates to getDefaultFactory()
.newUpdatableSet(elems1, elems2, elems3, expectedSize)
.
elems1
- the first source of elements for the returned setelems2
- the second source of elements for the returned setelems3
- the third source of elements for the returned setexpectedSize
- the expected size of the returned set@Nonnull public static HashIntSet newUpdatableSet(@Nonnull Iterable<Integer> elems1, @Nonnull Iterable<Integer> elems2, @Nonnull Iterable<Integer> elems3, @Nonnull Iterable<Integer> elems4, int expectedSize)
This method simply delegates to getDefaultFactory()
.newUpdatableSet(elems1, elems2, elems3, elems4, expectedSize)
.
elems1
- the first source of elements for the returned setelems2
- the second source of elements for the returned setelems3
- the third source of elements for the returned setelems4
- the fourth source of elements for the returned setexpectedSize
- the expected size of the returned set@Nonnull public static HashIntSet newUpdatableSet(@Nonnull Iterable<Integer> elems1, @Nonnull Iterable<Integer> elems2, @Nonnull Iterable<Integer> elems3, @Nonnull Iterable<Integer> elems4, @Nonnull Iterable<Integer> elems5, int expectedSize)
This method simply delegates to getDefaultFactory()
.newUpdatableSet(elems1, elems2, elems3, elems4, elems5, expectedSize)
.
elems1
- the first source of elements for the returned setelems2
- the second source of elements for the returned setelems3
- the third source of elements for the returned setelems4
- the fourth source of elements for the returned setelems5
- the fifth source of elements for the returned setexpectedSize
- the expected size of the returned set@Nonnull public static HashIntSet newUpdatableSet(@Nonnull Iterator<Integer> elements, int expectedSize)
This method simply delegates to getDefaultFactory()
.newUpdatableSet(elements, expectedSize)
.
elements
- the iterator from which elements are to be placed into the returned setexpectedSize
- the expected size of the returned set@Nonnull public static HashIntSet newUpdatableSet(@Nonnull Consumer<IntConsumer> elementsSupplier, int expectedSize)
Example: TODO
This method simply delegates to getDefaultFactory()
.newUpdatableSet(elementsSupplier, expectedSize)
.
elementsSupplier
- the function which supply mappings for the returned set via
the callback passed inexpectedSize
- the expected size of the returned set@Nonnull public static HashIntSet newUpdatableSet(@Nonnull int[] elements, int expectedSize)
This method simply delegates to getDefaultFactory()
.newUpdatableSet(elements, expectedSize)
.
elements
- the array whose elements are to be placed into the returned setexpectedSize
- the expected size of the returned set@Nonnull public static HashIntSet newUpdatableSet(@Nonnull Integer[] elements, int expectedSize)
This method simply delegates to getDefaultFactory()
.newUpdatableSet(elements, expectedSize)
.
elements
- the array whose elements are to be placed into the returned setexpectedSize
- the expected size of the returned setNullPointerException
- if elements
array contain null
elements@Nonnull public static HashIntSet newUpdatableSet(@Nonnull Iterable<Integer> elements)
This method simply delegates to getDefaultFactory()
.newUpdatableSet(elements)
.
elements
- the iterable whose elements are to be placed into the returned set@Nonnull public static HashIntSet newUpdatableSet(@Nonnull Iterable<Integer> elems1, @Nonnull Iterable<Integer> elems2)
This method simply delegates to getDefaultFactory()
.newUpdatableSet(elems1, elems2)
.
elems1
- the first source of elements for the returned setelems2
- the second source of elements for the returned set@Nonnull public static HashIntSet newUpdatableSet(@Nonnull Iterable<Integer> elems1, @Nonnull Iterable<Integer> elems2, @Nonnull Iterable<Integer> elems3)
This method simply delegates to getDefaultFactory()
.newUpdatableSet(elems1, elems2, elems3)
.
elems1
- the first source of elements for the returned setelems2
- the second source of elements for the returned setelems3
- the third source of elements for the returned set@Nonnull public static HashIntSet newUpdatableSet(@Nonnull Iterable<Integer> elems1, @Nonnull Iterable<Integer> elems2, @Nonnull Iterable<Integer> elems3, @Nonnull Iterable<Integer> elems4)
This method simply delegates to getDefaultFactory()
.newUpdatableSet(elems1, elems2, elems3, elems4)
.
elems1
- the first source of elements for the returned setelems2
- the second source of elements for the returned setelems3
- the third source of elements for the returned setelems4
- the fourth source of elements for the returned set@Nonnull public static HashIntSet newUpdatableSet(@Nonnull Iterable<Integer> elems1, @Nonnull Iterable<Integer> elems2, @Nonnull Iterable<Integer> elems3, @Nonnull Iterable<Integer> elems4, @Nonnull Iterable<Integer> elems5)
This method simply delegates to getDefaultFactory()
.newUpdatableSet(elems1, elems2, elems3, elems4, elems5)
.
elems1
- the first source of elements for the returned setelems2
- the second source of elements for the returned setelems3
- the third source of elements for the returned setelems4
- the fourth source of elements for the returned setelems5
- the fifth source of elements for the returned set@Nonnull public static HashIntSet newUpdatableSet(@Nonnull Iterator<Integer> elements)
This method simply delegates to getDefaultFactory()
.newUpdatableSet(elements)
.
elements
- the iterator from which elements are to be placed into the returned set@Nonnull public static HashIntSet newUpdatableSet(@Nonnull Consumer<IntConsumer> elementsSupplier)
Example: TODO
This method simply delegates to getDefaultFactory()
.newUpdatableSet(elementsSupplier)
.
elementsSupplier
- the function which supply mappings for the returned set via
the callback passed in@Nonnull public static HashIntSet newUpdatableSet(@Nonnull int[] elements)
This method simply delegates to getDefaultFactory()
.newUpdatableSet(elements)
.
elements
- the array whose elements are to be placed into the returned set@Nonnull public static HashIntSet newUpdatableSet(@Nonnull Integer[] elements)
This method simply delegates to getDefaultFactory()
.newUpdatableSet(elements)
.
elements
- the array whose elements are to be placed into the returned setNullPointerException
- if elements
array contain null
elements@Nonnull public static HashIntSet newUpdatableSetOf(int e1)
This method simply delegates to getDefaultFactory()
.newUpdatableSetOf(e1)
.
e1
- the sole element@Nonnull public static HashIntSet newUpdatableSetOf(int e1, int e2)
This method simply delegates to getDefaultFactory()
.newUpdatableSetOf(e1, e2)
.
e1
- the first elemente2
- the second element@Nonnull public static HashIntSet newUpdatableSetOf(int e1, int e2, int e3)
This method simply delegates to getDefaultFactory()
.newUpdatableSetOf(e1, e2, e3)
.
e1
- the first elemente2
- the second elemente3
- the third element@Nonnull public static HashIntSet newUpdatableSetOf(int e1, int e2, int e3, int e4)
This method simply delegates to getDefaultFactory()
.newUpdatableSetOf(e1, e2, e3, e4)
.
e1
- the first elemente2
- the second elemente3
- the third elemente4
- the fourth element@Nonnull public static HashIntSet newUpdatableSetOf(int e1, int e2, int e3, int e4, int e5, int... restElements)
This method simply delegates to getDefaultFactory()
.newUpdatableSetOf(e1, e2, e3, e4, e5, restElements)
.
e1
- the first elemente2
- the second elemente3
- the third elemente4
- the fourth elemente5
- the fifth elementrestElements
- the rest elements to be placed into the set@Nonnull public static HashIntSet newImmutableSet(@Nonnull Iterable<Integer> elements, int expectedSize)
If the specified iterable is a Set
the expectedSize
argument is ignored.
This method simply delegates to getDefaultFactory()
.newImmutableSet(elements, expectedSize)
.
elements
- the iterable whose elements are to be placed into the returned setexpectedSize
- the expected size of the returned set@Nonnull public static HashIntSet newImmutableSet(@Nonnull Iterable<Integer> elems1, @Nonnull Iterable<Integer> elems2, int expectedSize)
This method simply delegates to getDefaultFactory()
.newImmutableSet(elems1, elems2, expectedSize)
.
elems1
- the first source of elements for the returned setelems2
- the second source of elements for the returned setexpectedSize
- the expected size of the returned set@Nonnull public static HashIntSet newImmutableSet(@Nonnull Iterable<Integer> elems1, @Nonnull Iterable<Integer> elems2, @Nonnull Iterable<Integer> elems3, int expectedSize)
This method simply delegates to getDefaultFactory()
.newImmutableSet(elems1, elems2, elems3, expectedSize)
.
elems1
- the first source of elements for the returned setelems2
- the second source of elements for the returned setelems3
- the third source of elements for the returned setexpectedSize
- the expected size of the returned set@Nonnull public static HashIntSet newImmutableSet(@Nonnull Iterable<Integer> elems1, @Nonnull Iterable<Integer> elems2, @Nonnull Iterable<Integer> elems3, @Nonnull Iterable<Integer> elems4, int expectedSize)
This method simply delegates to getDefaultFactory()
.newImmutableSet(elems1, elems2, elems3, elems4, expectedSize)
.
elems1
- the first source of elements for the returned setelems2
- the second source of elements for the returned setelems3
- the third source of elements for the returned setelems4
- the fourth source of elements for the returned setexpectedSize
- the expected size of the returned set@Nonnull public static HashIntSet newImmutableSet(@Nonnull Iterable<Integer> elems1, @Nonnull Iterable<Integer> elems2, @Nonnull Iterable<Integer> elems3, @Nonnull Iterable<Integer> elems4, @Nonnull Iterable<Integer> elems5, int expectedSize)
This method simply delegates to getDefaultFactory()
.newImmutableSet(elems1, elems2, elems3, elems4, elems5, expectedSize)
.
elems1
- the first source of elements for the returned setelems2
- the second source of elements for the returned setelems3
- the third source of elements for the returned setelems4
- the fourth source of elements for the returned setelems5
- the fifth source of elements for the returned setexpectedSize
- the expected size of the returned set@Nonnull public static HashIntSet newImmutableSet(@Nonnull Iterator<Integer> elements, int expectedSize)
This method simply delegates to getDefaultFactory()
.newImmutableSet(elements, expectedSize)
.
elements
- the iterator from which elements are to be placed into the returned setexpectedSize
- the expected size of the returned set@Nonnull public static HashIntSet newImmutableSet(@Nonnull Consumer<IntConsumer> elementsSupplier, int expectedSize)
Example: TODO
This method simply delegates to getDefaultFactory()
.newImmutableSet(elementsSupplier, expectedSize)
.
elementsSupplier
- the function which supply mappings for the returned set via
the callback passed inexpectedSize
- the expected size of the returned set@Nonnull public static HashIntSet newImmutableSet(@Nonnull int[] elements, int expectedSize)
This method simply delegates to getDefaultFactory()
.newImmutableSet(elements, expectedSize)
.
elements
- the array whose elements are to be placed into the returned setexpectedSize
- the expected size of the returned set@Nonnull public static HashIntSet newImmutableSet(@Nonnull Integer[] elements, int expectedSize)
This method simply delegates to getDefaultFactory()
.newImmutableSet(elements, expectedSize)
.
elements
- the array whose elements are to be placed into the returned setexpectedSize
- the expected size of the returned setNullPointerException
- if elements
array contain null
elements@Nonnull public static HashIntSet newImmutableSet(@Nonnull Iterable<Integer> elements)
This method simply delegates to getDefaultFactory()
.newImmutableSet(elements)
.
elements
- the iterable whose elements are to be placed into the returned set@Nonnull public static HashIntSet newImmutableSet(@Nonnull Iterable<Integer> elems1, @Nonnull Iterable<Integer> elems2)
This method simply delegates to getDefaultFactory()
.newImmutableSet(elems1, elems2)
.
elems1
- the first source of elements for the returned setelems2
- the second source of elements for the returned set@Nonnull public static HashIntSet newImmutableSet(@Nonnull Iterable<Integer> elems1, @Nonnull Iterable<Integer> elems2, @Nonnull Iterable<Integer> elems3)
This method simply delegates to getDefaultFactory()
.newImmutableSet(elems1, elems2, elems3)
.
elems1
- the first source of elements for the returned setelems2
- the second source of elements for the returned setelems3
- the third source of elements for the returned set@Nonnull public static HashIntSet newImmutableSet(@Nonnull Iterable<Integer> elems1, @Nonnull Iterable<Integer> elems2, @Nonnull Iterable<Integer> elems3, @Nonnull Iterable<Integer> elems4)
This method simply delegates to getDefaultFactory()
.newImmutableSet(elems1, elems2, elems3, elems4)
.
elems1
- the first source of elements for the returned setelems2
- the second source of elements for the returned setelems3
- the third source of elements for the returned setelems4
- the fourth source of elements for the returned set@Nonnull public static HashIntSet newImmutableSet(@Nonnull Iterable<Integer> elems1, @Nonnull Iterable<Integer> elems2, @Nonnull Iterable<Integer> elems3, @Nonnull Iterable<Integer> elems4, @Nonnull Iterable<Integer> elems5)
This method simply delegates to getDefaultFactory()
.newImmutableSet(elems1, elems2, elems3, elems4, elems5)
.
elems1
- the first source of elements for the returned setelems2
- the second source of elements for the returned setelems3
- the third source of elements for the returned setelems4
- the fourth source of elements for the returned setelems5
- the fifth source of elements for the returned set@Nonnull public static HashIntSet newImmutableSet(@Nonnull Iterator<Integer> elements)
This method simply delegates to getDefaultFactory()
.newImmutableSet(elements)
.
elements
- the iterator from which elements are to be placed into the returned set@Nonnull public static HashIntSet newImmutableSet(@Nonnull Consumer<IntConsumer> elementsSupplier)
Example: TODO
This method simply delegates to getDefaultFactory()
.newImmutableSet(elementsSupplier)
.
elementsSupplier
- the function which supply mappings for the returned set via
the callback passed in@Nonnull public static HashIntSet newImmutableSet(@Nonnull int[] elements)
This method simply delegates to getDefaultFactory()
.newImmutableSet(elements)
.
elements
- the array whose elements are to be placed into the returned set@Nonnull public static HashIntSet newImmutableSet(@Nonnull Integer[] elements)
This method simply delegates to getDefaultFactory()
.newImmutableSet(elements)
.
elements
- the array whose elements are to be placed into the returned setNullPointerException
- if elements
array contain null
elements@Nonnull public static HashIntSet newImmutableSetOf(int e1)
This method simply delegates to getDefaultFactory()
.newImmutableSetOf(e1)
.
e1
- the sole element@Nonnull public static HashIntSet newImmutableSetOf(int e1, int e2)
This method simply delegates to getDefaultFactory()
.newImmutableSetOf(e1, e2)
.
e1
- the first elemente2
- the second element@Nonnull public static HashIntSet newImmutableSetOf(int e1, int e2, int e3)
This method simply delegates to getDefaultFactory()
.newImmutableSetOf(e1, e2, e3)
.
e1
- the first elemente2
- the second elemente3
- the third element@Nonnull public static HashIntSet newImmutableSetOf(int e1, int e2, int e3, int e4)
This method simply delegates to getDefaultFactory()
.newImmutableSetOf(e1, e2, e3, e4)
.
e1
- the first elemente2
- the second elemente3
- the third elemente4
- the fourth element@Nonnull public static HashIntSet newImmutableSetOf(int e1, int e2, int e3, int e4, int e5, int... restElements)
This method simply delegates to getDefaultFactory()
.newImmutableSetOf(e1, e2, e3, e4, e5, restElements)
.
e1
- the first elemente2
- the second elemente3
- the third elemente4
- the fourth elemente5
- the fifth elementrestElements
- the rest elements to be placed into the set