

It inserts the specified element at the end of a list. It inserts the specified element at the front of a list.

It adds the specified element as the last element of a list. It is used to return a list-iterator of the elements in proper sequence, starting at the specified position in the list. It is used to return the index in a list of the last occurrence of the specified element, or -1 if the list does not contain any element. It is used to return the index in a list of the first occurrence of the specified element, or -1 if the list does not contain any element. It is used to return the last element in a list. It is used to return the first element in a list. It is used to return the element at the specified position in a list. It is used to retrieve the first element of a list. It is used to return an iterator over the elements in a deque in reverse sequential order. It is used to return true if a list contains a specified element.

It is used to return a shallow copy of an ArrayList. It is used to remove all the elements from a list. It is used to append the given element to the end of a list. It is used to insert the given element at the beginning of a list. It is used to append all the elements in the specified collection, starting at the specified position of the list. It is used to append all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's iterator. It is used to insert the specified element at the specified position index in a list. It is used to append the specified element to the end of a list. It is used to construct a list containing the elements of the specified collection, in the order, they are returned by the collection's iterator. Public class LinkedList extends AbstractSequentialList implements List, Deque, Cloneable, SerializableĬonstructors of Java LinkedList Constructor
