Class MutableCharListFactoryImpl
java.lang.Object
org.eclipse.collections.impl.list.mutable.primitive.MutableCharListFactoryImpl
- All Implemented Interfaces:
MutableCharListFactory
MutableCharListFactoryImpl is a factory implementation which creates instances of type
MutableCharList
.
This file was automatically generated from template file mutablePrimitiveListFactoryImpl.stg.- Since:
- 6.0.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionempty()
of()
Same asMutableCharListFactory.empty()
.of
(char... items) Same asMutableCharListFactory.with(char[])
.ofAll
(CharIterable items) with()
Same asMutableCharListFactory.empty()
.with
(char... items) Creates a new list using the passeditems
argument as the backing store.withAll
(CharIterable items) withInitialCapacity
(int capacity) Same asMutableCharListFactory.empty()
.Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.eclipse.collections.api.factory.list.primitive.MutableCharListFactory
wrapCopy
-
Field Details
-
INSTANCE
-
-
Constructor Details
-
MutableCharListFactoryImpl
public MutableCharListFactoryImpl()
-
-
Method Details
-
empty
- Specified by:
empty
in interfaceMutableCharListFactory
-
of
Description copied from interface:MutableCharListFactory
Same asMutableCharListFactory.empty()
.- Specified by:
of
in interfaceMutableCharListFactory
-
with
Description copied from interface:MutableCharListFactory
Same asMutableCharListFactory.empty()
.- Specified by:
with
in interfaceMutableCharListFactory
-
withInitialCapacity
Description copied from interface:MutableCharListFactory
Same asMutableCharListFactory.empty()
. but takes in an initial capacity- Specified by:
withInitialCapacity
in interfaceMutableCharListFactory
-
of
Description copied from interface:MutableCharListFactory
Same asMutableCharListFactory.with(char[])
.- Specified by:
of
in interfaceMutableCharListFactory
-
with
Creates a new list using the passeditems
argument as the backing store.!!! WARNING: This method uses the passed in array, so can be very unsafe if the original array is held onto anywhere else. !!!
- Specified by:
with
in interfaceMutableCharListFactory
-
ofAll
Description copied from interface:MutableCharListFactory
- Specified by:
ofAll
in interfaceMutableCharListFactory
-
withAll
- Specified by:
withAll
in interfaceMutableCharListFactory
-
ofAll
Description copied from interface:MutableCharListFactory
- Specified by:
ofAll
in interfaceMutableCharListFactory
- Since:
- 10.0
-
withAll
- Specified by:
withAll
in interfaceMutableCharListFactory
- Since:
- 10.0
-