Interface MutableCharListFactory
-
public interface MutableCharListFactoryA factory which creates instances of typeMutableCharList. This file was automatically generated from template file mutablePrimitiveListFactory.stg.- Since:
- 6.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description MutableCharListempty()MutableCharListof()Same asempty().MutableCharListof(char... items)Same aswith(char[]).MutableCharListofAll(Iterable<Character> iterable)Same aswithAll(Iterable).MutableCharListofAll(CharIterable items)Same aswithAll(CharIterable).MutableCharListwith()Same asempty().MutableCharListwith(char... items)Creates a new list using the passeditemsargument as the backing store.MutableCharListwithAll(Iterable<Character> iterable)MutableCharListwithAll(CharIterable items)default MutableCharListwithInitialCapacity(int capacity)Same asempty().default MutableCharListwrapCopy(char... array)Creates a new list by first copying the array passed in.
-
-
-
Method Detail
-
empty
MutableCharList empty()
-
of
MutableCharList of()
Same asempty().
-
with
MutableCharList with()
Same asempty().
-
withInitialCapacity
default MutableCharList withInitialCapacity(int capacity)
Same asempty(). but takes in an initial capacity- Since:
- 10.3
-
of
MutableCharList of(char... items)
Same aswith(char[]).
-
with
MutableCharList with(char... items)
Creates a new list using the passeditemsargument 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. !!!
-
wrapCopy
default MutableCharList wrapCopy(char... array)
Creates a new list by first copying the array passed in.
-
ofAll
MutableCharList ofAll(CharIterable items)
Same aswithAll(CharIterable).
-
withAll
MutableCharList withAll(CharIterable items)
-
ofAll
MutableCharList ofAll(Iterable<Character> iterable)
Same aswithAll(Iterable).
-
withAll
MutableCharList withAll(Iterable<Character> iterable)
-
-