Enum MultiReaderMutableListFactory
java.lang.Object
java.lang.Enum<MultiReaderMutableListFactory>
org.eclipse.collections.impl.list.mutable.MultiReaderMutableListFactory
- All Implemented Interfaces:
Serializable
,Comparable<MultiReaderMutableListFactory>
,java.lang.constant.Constable
,MultiReaderListFactory
public enum MultiReaderMutableListFactory extends Enum<MultiReaderMutableListFactory> implements MultiReaderListFactory
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description INSTANCE
-
Method Summary
Modifier and Type Method Description <T> MultiReaderList<T>
empty()
<T> MultiReaderList<T>
fromStream(Stream<? extends T> stream)
static MultiReaderMutableListFactory
valueOf(String name)
Returns the enum constant of this type with the specified name.static MultiReaderMutableListFactory[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.<T> MultiReaderList<T>
with(T... items)
<T> MultiReaderList<T>
withAll(Iterable<? extends T> iterable)
<T> MultiReaderList<T>
withInitialCapacity(int capacity)
Same asMultiReaderListFactory.empty()
.<T> MultiReaderList<T>
withNValues(int size, Function0<? extends T> factory)
Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
Methods inherited from interface org.eclipse.collections.api.factory.list.MultiReaderListFactory
of, of, ofAll, ofInitialCapacity, with
-
Enum Constant Details
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
empty
- Specified by:
empty
in interfaceMultiReaderListFactory
-
with
- Specified by:
with
in interfaceMultiReaderListFactory
-
withInitialCapacity
Description copied from interface:MultiReaderListFactory
Same asMultiReaderListFactory.empty()
. but takes in initial capacity.- Specified by:
withInitialCapacity
in interfaceMultiReaderListFactory
-
withAll
- Specified by:
withAll
in interfaceMultiReaderListFactory
-
fromStream
- Specified by:
fromStream
in interfaceMultiReaderListFactory
-
withNValues
- Specified by:
withNValues
in interfaceMultiReaderListFactory
-