Collections Methods Flashcards
Collection boolean add(Element elem)
Adds elem into the underlying container
Collection void clear()
Removes all elements from the container
Collection boolean isEmpty()
Returns true if empty, false if not.
Collection Iterator iterator()
Returns an Iterator object for iterating over the container.
Collection int size()
Returns the number of elements in the container
Collection Object[] toArray()
Returns an array that has all elements in the container.
Collection boolean addAll(Collection extends element> coll)
Adds all the elements in coll into the underlying container
Collection boolean containsAll(Collection> coll)
Checks if all elements given in coll are present in the underlying container.
Collection boolean removeAll(Collection> coll)
Removes all elements from the underlying container that are also present in coll.
Collection boolean retainAll(Collection> coll)
Retains elements in the underlying container only if they are also present in coll; removes all other elements.
Iterator boolean hasNext()
Returns true if there are more elements to traverse.
Iterator E next()
Moves the iterator to the next element and returns that element.
Iterator void remove()
Removes the last visited element from the underlying container. next() must be called before calling remove, otherwise throws IllegalStateException.
ListIterator boolean hasPrevious()
Checks if the iterator has more elements to traverse in the previous direction.
ListIterator Element previous()
Moves the iterator to the next element and returns that next element in reverse direction()
ListIterator int nextIndex()
Returns the index of the next element in forward direction.
ListIterator int previousIndex()
Returns the index of the next element in reverse direction.
ListIterator void set(Element element)
Replaces the last element visited (using next or previous) with element.
ListIterator void add(Element element)
Adds the element to the list at the current iteration position.
Deque void addFirst(Element element)
Adds the element to the front of the deque. Raises Exception if full.
Deque void addLast(Element element)
Adds the element to the end of the deque. Raises Exception if full.
Deque Element removeFirst()
Removes an element from the front of the Deque and returns it. Raises NoSuchElementException if empty.
Deque Element removeLast()
Removes and returns the element at the end of the deque. Raises NoSuchElementException if empty.
Deque Element getFirst()
Returns the first element from the Deque, does not remove. Raises NoSuchElementException if empty.
Deque Element getLast()
Returns the last element from the Deque, does not remove. Raises NoSuchElementException if empty.
Deque boolean offerFirst(element)
Returns true if the element was added to the front, false if the deque is full.
Deque boolean offerLast(element)
Returns true if the element was added to the back, false if the deque is full.
Deque Element pollFirst()
Removes and returns an element from the front. Returns null if the deque is empty.
Deque Element pollLast()
Removes and returns an element from the back. Returns null if the deque is empty.
Deque Element peekFirst()
Returns but does not remove the first element. Returns null if the deque is empty.
Deque Element peekLast()
Returns but does not remove the last element. Returns null if the deque is empty.