Uses of Interface org.apache.commons.collections.Buffer

Uses in package org.apache.commons.collections.buffer

Classes implementing org.apache.commons.collections.Buffer

class
Decorates another Buffer to provide additional behaviour.
class
Decorates another Buffer to make get() and remove() block when the Buffer is empty.
class
The BoundedFifoBuffer is a very efficient implementation of Buffer that does not alter the size of the buffer at runtime.
class
CircularFifoBuffer is a first in first out buffer with a fixed size that replaces its oldest element if full.
class
Decorates another Buffer to validate that additions match a specified predicate.
class
Binary heap implementation of Buffer that provides for removal based on Comparator ordering.
class
Decorates another Buffer to synchronize its behaviour for a multi-threaded environment.
class
Decorates another Buffer to transform objects that are added.
class
UnboundedFifoBuffer is a very efficient buffer implementation.
class
Decorates another Buffer to ensure it can't be altered.

Constructors with parameter type org.apache.commons.collections.Buffer

Constructor that wraps (not copies).
Constructor that wraps (not copies).
Constructor that wraps (not copies).
Constructor that wraps (not copies).
Constructor that wraps (not copies).
Constructor that wraps (not copies).

Methods with parameter type org.apache.commons.collections.Buffer

Buffer
Factory method to create a blocking buffer.
Buffer
Factory method to create a synchronized buffer.
Buffer
Factory method to create an unmodifiable buffer.
Buffer
TypedBuffer.decorate(Buffer buffer, Class type)
Factory method to create a typed list.
Buffer
Factory method to create a predicated (validating) buffer.
Buffer
Factory method to create a transforming buffer.

Methods with return type org.apache.commons.collections.Buffer

Buffer
Factory method to create a blocking buffer.
Buffer
Factory method to create a synchronized buffer.
Buffer
Factory method to create an unmodifiable buffer.
Buffer
TypedBuffer.decorate(Buffer buffer, Class type)
Factory method to create a typed list.
Buffer
Factory method to create a predicated (validating) buffer.
Buffer
Factory method to create a transforming buffer.
Buffer
Gets the buffer being decorated.
Buffer
Gets the buffer being decorated.
Buffer
Gets the buffer being decorated.
Buffer
Gets the decorated buffer.

Uses in package org.apache.commons.collections

Classes implementing org.apache.commons.collections.Buffer

class
An implementation of the java.util.Stack API that is based on an ArrayList instead of a Vector, so it is not synchronized to protect against multi-threaded access.
class
Binary heap implementation of PriorityQueue.
class
The BoundedFifoBuffer is a very efficient implementation of Buffer that does not alter the size of the buffer at runtime.
class
UnboundedFifoBuffer is a very efficient buffer implementation.

Fields of type org.apache.commons.collections.Buffer

Buffer
An empty unmodifiable buffer.

Methods with parameter type org.apache.commons.collections.Buffer

Buffer
Returns a synchronized buffer backed by the given buffer that will block on Buffer.get() and Buffer.remove() operations.
Buffer
Returns a predicated (validating) buffer backed by the given buffer.
Buffer
Returns a synchronized buffer backed by the given buffer.
Buffer
Returns a transformed buffer backed by the given buffer.
Buffer
BufferUtils.typedBuffer(Buffer buffer, Class type)
Returns a typed buffer backed by the given buffer.
Buffer
Returns an unmodifiable buffer backed by the given buffer.

Methods with return type org.apache.commons.collections.Buffer

Buffer
Returns a synchronized buffer backed by the given buffer that will block on Buffer.get() and Buffer.remove() operations.
Buffer
Returns a predicated (validating) buffer backed by the given buffer.
Buffer
Returns a synchronized buffer backed by the given buffer.
Buffer
Returns a transformed buffer backed by the given buffer.
Buffer
BufferUtils.typedBuffer(Buffer buffer, Class type)
Returns a typed buffer backed by the given buffer.
Buffer
Returns an unmodifiable buffer backed by the given buffer.

Copyright © 2001-2006 Apache Software Foundation. All Rights Reserved.