- Objects - Class in java.util
-
This class consists of static
utility methods for operating on objects.
- offer(E) - Method in class java.util.ArrayDeque
-
Inserts the specified element at the end of this deque.
- offer(E) - Method in interface java.util.Deque
-
Inserts the specified element into the queue represented by this deque (in other words, at the tail of this
deque) if it is possible to do so immediately without violating capacity restrictions, returning true
upon success and false if no space is currently available.
- offer(E) - Method in class java.util.LinkedList
-
Adds the specified element as the tail (last element) of this list.
- offer(E) - Method in interface java.util.Queue
-
Inserts the specified element into this queue if it is possible to do so immediately without violating capacity
restrictions.
- offerFirst(E) - Method in class java.util.ArrayDeque
-
Inserts the specified element at the front of this deque.
- offerFirst(E) - Method in interface java.util.Deque
-
Inserts the specified element at the front of this deque unless it would violate capacity restrictions.
- offerFirst(E) - Method in class java.util.LinkedList
-
Inserts the specified element at the front of this list.
- offerLast(E) - Method in class java.util.ArrayDeque
-
Inserts the specified element at the end of this deque.
- offerLast(E) - Method in interface java.util.Deque
-
Inserts the specified element at the end of this deque unless it would violate capacity restrictions.
- offerLast(E) - Method in class java.util.LinkedList
-
Inserts the specified element at the end of this list.