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

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

Introduction

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

The text is from its open source code.

Implementation

org.apache.commons.collections.Buffer has the following implementations.
Click this link to see all its implementation.

Method

booleanadd(E e)
Ensures that this collection contains the specified element (optional operation).
booleanaddAll(Collection c)
Adds all of the elements in the specified collection to this collection (optional operation).
voidclear()
Removes all of the elements from this collection (optional operation).
Objectget()
Gets the next object from the buffer without removing it.
booleanisEmpty()
Returns true if this collection contains no elements.
Iteratoriterator()
Returns an iterator over the elements in this collection.
Objectremove()
Gets and removes the next object from the buffer.
intsize()
Returns the number of elements in this collection.