- last() - Method in interface java.util.SortedSet
-
Returns the last (highest) element currently in this set.
- last() - Method in class java.util.TreeSet
-
- lastEntry() - Method in interface java.util.NavigableMap
-
Returns a key-value mapping associated with the greatest key in this map, or null
if the map is empty.
- lastEntry() - Method in class java.util.TreeMap
-
- lastIndexOf(Object) - Method in class java.util.LinkedList
-
Returns the index of the last occurrence of the specified element in this list, or -1 if this list does not
contain the element.
- lastIndexOfSubList(List<?>, List<?>) - Static method in class java.util.Collections
-
Returns the starting position of the last occurrence of the specified target list within the specified source
list, or -1 if there is no such occurrence.
- lastKey() - Method in interface java.util.SortedMap
-
Returns the last (highest) key currently in this map.
- lastKey() - Method in class java.util.TreeMap
-
- LinkedList<E> - Class in java.util
-
Doubly-linked list implementation of the List
and Deque
interfaces.
- LinkedList() - Constructor for class java.util.LinkedList
-
Constructs an empty list.
- LinkedList(Collection<? extends E>) - Constructor for class java.util.LinkedList
-
Constructs a list containing the elements of the specified collection, in the order they are returned by the
collection's iterator.
- list(Enumeration<T>) - Static method in class java.util.Collections
-
Returns an array list containing the elements returned by the specified enumeration in the order they are
returned by the enumeration.
- listIterator(int) - Method in class java.util.AbstractSequentialList
-
Returns a list iterator over the elements in this list (in proper sequence).
- listIterator(int) - Method in class java.util.LinkedList
-
Returns a list-iterator of the elements in this list (in proper sequence), starting at the specified position in
the list.
- lower(E) - Method in interface java.util.NavigableSet
-
Returns the greatest element in this set strictly less than the given element, or null
if there is no
such element.
- lower(E) - Method in class java.util.TreeSet
-
- lowerEntry(K) - Method in interface java.util.NavigableMap
-
Returns a key-value mapping associated with the greatest key strictly less than the given key, or null
if
there is no such key.
- lowerEntry(K) - Method in class java.util.TreeMap
-
- lowerKey(K) - Method in interface java.util.NavigableMap
-
Returns the greatest key strictly less than the given key, or null
if there is no such key.
- lowerKey(K) - Method in class java.util.TreeMap
-