VCollections – Release 1
Uses of Interface org.violetlib.collections.ListBuilder
-
-
Modifier and Type |
Method and Description |
static <V> ListBuilder<V> |
IList.builder()
Return a new list builder that uses a general purpose representation for the created lists.
|
static <V> ListBuilder<V> |
IList.builder(ListUsage usage)
Return a new list builder that constructs lists supporting the specified usage.
|
static <V> ListBuilder<V> |
IList.builder(Option option)
Return a new list builder.
|
Modifier and Type |
Method and Description |
static <V> Collector<V,ListBuilder<V>,IList<V>> |
IList.collector()
Return a new list builder that uses a general purpose representation for the created lists.
|
static <V> Collector<V,ListBuilder<V>,IList<V>> |
IList.collector(ListUsage usage)
Return a new list builder that constructs lists supporting the specified usage.
|
static <V> Collector<V,ListBuilder<V>,IList<V>> |
IList.collector(Option option)
Return a new list builder.
|