public class CircularLinkedList<V> extends LinkedList<V>
modCount
Constructor and Description |
---|
CircularLinkedList(int maxSize) |
Modifier and Type | Method and Description |
---|---|
void |
add(int index,
V element) |
boolean |
add(V v) |
boolean |
addAll(Collection<? extends V> c) |
boolean |
addAll(int index,
Collection<? extends V> c) |
void |
addFirst(V v) |
void |
addLast(V v) |
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, subList
containsAll, isEmpty, removeAll, retainAll, toString
finalize, getClass, notify, notifyAll, wait, wait, wait
containsAll, equals, hashCode, isEmpty, iterator, listIterator, removeAll, replaceAll, retainAll, sort, subList
parallelStream, removeIf, stream
public void addFirst(V v)
public void addLast(V v)
public boolean add(V v)
public boolean addAll(Collection<? extends V> c)
addAll
in interface Collection<V>
addAll
in interface List<V>
addAll
in class LinkedList<V>
public boolean addAll(int index, Collection<? extends V> c)
Copyright © 2018. All rights reserved.