public class ExLinkedList<T> extends LinkedList<T> implements ExList<T>
modCount
构造器和说明 |
---|
ExLinkedList() |
ExLinkedList(Collection<? extends T> c) |
限定符和类型 | 方法和说明 |
---|---|
static <T> ExLinkedList<T> |
of(T... values)
Create mutable list
|
static <T> ExLinkedList<T> |
of(T value)
Create mutable list
|
static <T> ExLinkedList<T> |
of(T value1,
T value2)
Create mutable list
|
static <T> ExLinkedList<T> |
of(T value1,
T value2,
T value3)
Create mutable list
|
static <T> ExLinkedList<T> |
of(T value1,
T value2,
T value3,
T value4)
Create mutable list
|
static <T> ExLinkedList<T> |
of(T value1,
T value2,
T value3,
T value4,
T value5)
Create mutable list
|
static <T> ExLinkedList<T> |
of(T value1,
T value2,
T value3,
T value4,
T value5,
T value6)
Create mutable list
|
static <T> ExLinkedList<T> |
of(T value1,
T value2,
T value3,
T value4,
T value5,
T value6,
T value7)
Create mutable list
|
ExList<T> |
subList(int fromIndex,
int toIndex) |
add, add, addAll, addAll, addFirst, addLast, clear, clone, contains, descendingIterator, element, get, getFirst, getLast, indexOf, lastIndexOf, listIterator, offer, offerFirst, offerLast, peek, peekFirst, peekLast, poll, pollFirst, pollLast, pop, push, remove, remove, remove, removeFirst, removeFirstOccurrence, removeLast, removeLastOccurrence, set, size, spliterator, toArray, toArray
iterator
equals, hashCode, listIterator, removeRange
containsAll, isEmpty, removeAll, retainAll, toString
add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, size, sort, spliterator, toArray, toArray
addAll, filter, join, join, join, map, mapToDouble, mapToInt, mapToLong, parallelStream, stream, toArray, wrap
removeIf
public ExLinkedList()
public ExLinkedList(Collection<? extends T> c)
public static <T> ExLinkedList<T> of(T value)
public static <T> ExLinkedList<T> of(T value1, T value2)
public static <T> ExLinkedList<T> of(T value1, T value2, T value3)
public static <T> ExLinkedList<T> of(T value1, T value2, T value3, T value4)
public static <T> ExLinkedList<T> of(T value1, T value2, T value3, T value4, T value5)
public static <T> ExLinkedList<T> of(T value1, T value2, T value3, T value4, T value5, T value6)
public static <T> ExLinkedList<T> of(T value1, T value2, T value3, T value4, T value5, T value6, T value7)
@SafeVarargs public static <T> ExLinkedList<T> of(T... values)
ExList
Copyright © 2015. All rights reserved.