| 程序包 | 说明 |
|---|---|
| net.dongliu.commons.collection |
| 限定符和类型 | 类和说明 |
|---|---|
class |
Array<T>
Array wrapper as collection
|
class |
ExArrayList<T>
Expanded ArrayList
|
class |
ExLinkedList<T>
Expanded linked list
|
| 限定符和类型 | 方法和说明 |
|---|---|
static <T> ExList<T> |
ExList.of()
Create mutable list
|
static <T> ExList<T> |
ExList.of(T... values)
create mutable list
|
static <T> ExList<T> |
ExList.of(T value)
Create mutable list
|
static <T> ExList<T> |
ExList.of(T value1,
T value2)
Create mutable list
|
static <T> ExList<T> |
ExList.of(T value1,
T value2,
T value3)
Create mutable list
|
static <T> ExList<T> |
ExList.of(T value1,
T value2,
T value3,
T value4)
Create mutable list
|
static <T> ExList<T> |
ExList.of(T value1,
T value2,
T value3,
T value4,
T value5)
Create mutable list
|
static <T> ExList<T> |
ExList.of(T value1,
T value2,
T value3,
T value4,
T value5,
T value6)
Create mutable list
|
static <T> ExList<T> |
ExList.of(T value1,
T value2,
T value3,
T value4,
T value5,
T value6,
T value7)
Create mutable list
|
ExList<T> |
ExList.subList(int fromIndex,
int toIndex) |
ExList<T> |
ExLinkedList.subList(int fromIndex,
int toIndex) |
ExList<T> |
ExArrayList.subList(int fromIndex,
int toIndex) |
ExList<T> |
Array.subList(int fromIndex,
int toIndex) |
default ExList<T> |
ExStream.toList()
Collect items to a list
|
static <T> ExList<T> |
ExList.wrap(List<T> list)
If list is not EnhancedList, wrap list to EnhancedList.
|
Copyright © 2015. All rights reserved.