Serializable
, Comparable<MutableIntSetFactoryImpl>
, MutableIntSetFactory
public enum MutableIntSetFactoryImpl extends Enum<MutableIntSetFactoryImpl> implements MutableIntSetFactory
MutableIntSet
.
This file was automatically generated from template file mutablePrimitiveSetFactoryImpl.stg.Enum Constant | Description |
---|---|
INSTANCE |
Modifier and Type | Method | Description |
---|---|---|
MutableIntSet |
empty() |
|
MutableIntSet |
of() |
Same as
MutableIntSetFactory.empty() . |
MutableIntSet |
of(int... items) |
Same as
MutableIntSetFactory.with(int[]) . |
MutableIntSet |
ofAll(Iterable<Integer> iterable) |
Same as
#withAll(IterableInteger) . |
MutableIntSet |
ofAll(IntStream items) |
|
MutableIntSet |
ofAll(IntIterable items) |
|
static MutableIntSetFactoryImpl |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static MutableIntSetFactoryImpl[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
MutableIntSet |
with() |
Same as
MutableIntSetFactory.empty() . |
MutableIntSet |
with(int... items) |
|
MutableIntSet |
withAll(Iterable<Integer> iterable) |
|
MutableIntSet |
withAll(IntStream items) |
|
MutableIntSet |
withAll(IntIterable items) |
public static final MutableIntSetFactoryImpl INSTANCE
public static MutableIntSetFactoryImpl[] values()
for (MutableIntSetFactoryImpl c : MutableIntSetFactoryImpl.values()) System.out.println(c);
public static MutableIntSetFactoryImpl valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic MutableIntSet empty()
empty
in interface MutableIntSetFactory
public MutableIntSet of()
MutableIntSetFactory
MutableIntSetFactory.empty()
.of
in interface MutableIntSetFactory
public MutableIntSet with()
MutableIntSetFactory
MutableIntSetFactory.empty()
.with
in interface MutableIntSetFactory
public MutableIntSet of(int... items)
MutableIntSetFactory
MutableIntSetFactory.with(int[])
.of
in interface MutableIntSetFactory
public MutableIntSet with(int... items)
with
in interface MutableIntSetFactory
public MutableIntSet ofAll(IntIterable items)
MutableIntSetFactory
ofAll
in interface MutableIntSetFactory
public MutableIntSet withAll(IntIterable items)
withAll
in interface MutableIntSetFactory
public MutableIntSet ofAll(Iterable<Integer> iterable)
MutableIntSetFactory
#withAll(IterableInteger)
.ofAll
in interface MutableIntSetFactory
public MutableIntSet withAll(Iterable<Integer> iterable)
withAll
in interface MutableIntSetFactory
public MutableIntSet ofAll(IntStream items)
ofAll
in interface MutableIntSetFactory
public MutableIntSet withAll(IntStream items)
withAll
in interface MutableIntSetFactory
Copyright © 2004–2019. All rights reserved.