MutableLongSetFactory
public enum MutableLongSetFactoryImpl extends java.lang.Enum<MutableLongSetFactoryImpl> implements MutableLongSetFactory
MutableLongSet
.
This file was automatically generated from template file mutablePrimitiveSetFactoryImpl.stg.Enum Constant | Description |
---|---|
INSTANCE |
Modifier and Type | Method | Description |
---|---|---|
MutableLongSet |
empty() |
|
MutableLongSet |
of() |
Same as
MutableLongSetFactory.empty() . |
MutableLongSet |
of(long... items) |
Same as
MutableLongSetFactory.with(long[]) . |
MutableLongSet |
ofAll(java.util.stream.LongStream items) |
|
MutableLongSet |
ofAll(LongIterable items) |
|
static MutableLongSetFactoryImpl |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static MutableLongSetFactoryImpl[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
MutableLongSet |
with() |
Same as
MutableLongSetFactory.empty() . |
MutableLongSet |
with(long... items) |
|
MutableLongSet |
withAll(java.util.stream.LongStream items) |
|
MutableLongSet |
withAll(LongIterable items) |
public static final MutableLongSetFactoryImpl INSTANCE
public static MutableLongSetFactoryImpl[] values()
for (MutableLongSetFactoryImpl c : MutableLongSetFactoryImpl.values()) System.out.println(c);
public static MutableLongSetFactoryImpl valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic MutableLongSet empty()
empty
in interface MutableLongSetFactory
public MutableLongSet of()
MutableLongSetFactory
MutableLongSetFactory.empty()
.of
in interface MutableLongSetFactory
public MutableLongSet with()
MutableLongSetFactory
MutableLongSetFactory.empty()
.with
in interface MutableLongSetFactory
public MutableLongSet of(long... items)
MutableLongSetFactory
MutableLongSetFactory.with(long[])
.of
in interface MutableLongSetFactory
public MutableLongSet with(long... items)
with
in interface MutableLongSetFactory
public MutableLongSet ofAll(LongIterable items)
MutableLongSetFactory
ofAll
in interface MutableLongSetFactory
public MutableLongSet withAll(LongIterable items)
withAll
in interface MutableLongSetFactory
public MutableLongSet ofAll(java.util.stream.LongStream items)
ofAll
in interface MutableLongSetFactory
public MutableLongSet withAll(java.util.stream.LongStream items)
withAll
in interface MutableLongSetFactory
Copyright © 2004–2017. All rights reserved.