Java org.apache.commons.collections ArrayStack fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.collections ArrayStack fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.collections ArrayStack.

The text is from its open source code.

Subclass

org.apache.commons.collections.ArrayStack has subclasses.
Click this link to see all its subclasses.

Constructor

ArrayStack()
Constructs a new empty ArrayStack.

Method

booleanisEmpty()
Returns true if this list contains no elements.
Objectpeek()
Returns the top item off of this stack without removing it.
Objectpop()
Pops the top item off of this stack and return it.
Objectpush(Object item)
Pushes a new item onto the top of this stack.
intsize()
Returns the number of elements in this list.