public class MutableCharListFactoryImpl extends Object implements MutableCharListFactory
MutableCharList.
This file was automatically generated from template file mutablePrimitiveListFactoryImpl.stg.| Modifier and Type | Field and Description |
|---|---|
static MutableCharListFactory |
INSTANCE |
| Constructor and Description |
|---|
MutableCharListFactoryImpl() |
| Modifier and Type | Method and Description |
|---|---|
MutableCharList |
empty() |
MutableCharList |
of() |
MutableCharList |
of(char... items) |
MutableCharList |
ofAll(CharIterable items) |
MutableCharList |
ofAll(Iterable<Character> iterable) |
MutableCharList |
with() |
MutableCharList |
with(char... items)
Creates a new list using the passed
items argument as the backing store. |
MutableCharList |
withAll(CharIterable items) |
MutableCharList |
withAll(Iterable<Character> iterable) |
MutableCharList |
withInitialCapacity(int capacity) |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitwrapCopypublic static final MutableCharListFactory INSTANCE
public MutableCharList empty()
empty in interface MutableCharListFactorypublic MutableCharList of()
of in interface MutableCharListFactorypublic MutableCharList with()
with in interface MutableCharListFactorypublic MutableCharList withInitialCapacity(int capacity)
withInitialCapacity in interface MutableCharListFactorypublic MutableCharList of(char... items)
of in interface MutableCharListFactorypublic MutableCharList with(char... items)
items 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. !!!
with in interface MutableCharListFactorypublic MutableCharList ofAll(CharIterable items)
ofAll in interface MutableCharListFactorypublic MutableCharList withAll(CharIterable items)
withAll in interface MutableCharListFactorypublic MutableCharList ofAll(Iterable<Character> iterable)
ofAll in interface MutableCharListFactorypublic MutableCharList withAll(Iterable<Character> iterable)
withAll in interface MutableCharListFactoryCopyright © 2004–2022. All rights reserved.