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, toArrayiteratorequals, hashCode, listIterator, removeRange, subListcontainsAll, isEmpty, removeAll, retainAll, toStringfinalize, getClass, notify, notifyAll, wait, wait, waitcontainsAll, equals, hashCode, isEmpty, iterator, listIterator, removeAll, replaceAll, retainAll, sort, subListparallelStream, removeIf, streampublic 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 © 2020. All rights reserved.