public interface MutableCharSetFactory
MutableCharSet.
This file was automatically generated from template file mutablePrimitiveSetFactory.stg.| Modifier and Type | Method and Description |
|---|---|
MutableCharSet |
empty() |
MutableCharSet |
of()
Same as
empty(). |
MutableCharSet |
of(char... items)
Same as
with(char[]). |
MutableCharSet |
ofAll(CharIterable items)
Same as
withAll(CharIterable). |
MutableCharSet |
ofAll(Iterable<Character> iterable)
Same as
withAll(Iterable). |
MutableCharSet |
with()
Same as
empty(). |
MutableCharSet |
with(char... items) |
MutableCharSet |
withAll(CharIterable items) |
MutableCharSet |
withAll(Iterable<Character> iterable) |
default MutableCharSet |
withInitialCapacity(int capacity)
Same as
empty(). |
MutableCharSet empty()
MutableCharSet of()
empty().MutableCharSet with()
empty().default MutableCharSet withInitialCapacity(int capacity)
empty(). but takes in an initial capacityMutableCharSet of(char... items)
with(char[]).MutableCharSet with(char... items)
MutableCharSet ofAll(CharIterable items)
withAll(CharIterable).MutableCharSet withAll(CharIterable items)
MutableCharSet ofAll(Iterable<Character> iterable)
withAll(Iterable).MutableCharSet withAll(Iterable<Character> iterable)
Copyright © 2004–2021. All rights reserved.