public interface MutableCharListFactory
MutableCharList.
This file was automatically generated from template file mutablePrimitiveListFactory.stg.| Modifier and Type | Method and Description |
|---|---|
MutableCharList |
empty() |
MutableCharList |
of()
Same as
empty(). |
MutableCharList |
of(char... items)
Same as
with(char[]). |
MutableCharList |
ofAll(CharIterable items)
Same as
withAll(CharIterable). |
MutableCharList |
ofAll(Iterable<Character> iterable)
Same as
withAll(Iterable). |
MutableCharList |
with()
Same as
empty(). |
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) |
default MutableCharList |
withInitialCapacity(int capacity)
Same as
empty(). |
default MutableCharList |
wrapCopy(char... array)
Creates a new list by first copying the array passed in.
|
MutableCharList empty()
MutableCharList of()
empty().MutableCharList with()
empty().default MutableCharList withInitialCapacity(int capacity)
empty(). but takes in an initial capacityMutableCharList of(char... items)
with(char[]).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. !!!
default MutableCharList wrapCopy(char... array)
MutableCharList ofAll(CharIterable items)
withAll(CharIterable).MutableCharList withAll(CharIterable items)
MutableCharList ofAll(Iterable<Character> iterable)
withAll(Iterable).MutableCharList withAll(Iterable<Character> iterable)
Copyright © 2004–2020. All rights reserved.