T
- ArrayDeque
instead.@Deprecated public class ArrayListStack<T> extends ArrayList<T>
modCount
Constructor and Description |
---|
ArrayListStack()
Deprecated.
Construct.
|
ArrayListStack(Collection<T> collection)
Deprecated.
Construct.
|
ArrayListStack(int initialCapacity)
Deprecated.
Construct.
|
Modifier and Type | Method and Description |
---|---|
boolean |
empty()
Deprecated.
Tests if this stack is empty.
|
T |
peek()
Deprecated.
Looks at the object at the top of this stack without removing it.
|
T |
pop()
Deprecated.
Removes the object at the top of this stack and returns that object.
|
void |
push(T item)
Deprecated.
Pushes an item onto the top of this stack.
|
int |
search(T o)
Deprecated.
Returns the 1-based position where an object is on this stack.
|
add, add, addAll, addAll, clear, clone, contains, ensureCapacity, forEach, get, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeIf, removeRange, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray, trimToSize
equals, hashCode
containsAll, toString
finalize, getClass, notify, notifyAll, wait, wait, wait
containsAll, equals, hashCode
parallelStream, stream
public ArrayListStack(int initialCapacity)
initialCapacity
- Initial capacity of the stackpublic ArrayListStack()
public ArrayListStack(Collection<T> collection)
collection
- The collection to addpublic final void push(T item)
item
- the item to be pushed onto this stack.public final T pop()
EmptyStackException
- If this stack is empty.public final T peek()
EmptyStackException
- If this stack is empty.public final boolean empty()
true
if and only if this stack contains no items; false
otherwise.public final int search(T o)
o
- the desired object.-1
indicates that the object is not on the stack.Copyright © 2006–2022 Apache Software Foundation. All rights reserved.