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

Packages that use Buffer
org.apache.commons.collections Java Collections Framework extensions. 
 

Uses of Buffer in org.apache.commons.collections
 

Classes in org.apache.commons.collections that implement Buffer
 class ArrayStack
          An implementation of the Stack API that is based on an ArrayList instead of a Vector, so it is not synchronized to protect against multi-threaded access.
 class BinaryHeap
          Binary heap implementation of PriorityQueue and Buffer.
 class BoundedFifoBuffer
          The BoundedFifoBuffer is a very efficient implementation of Buffer that does not alter the size of the buffer at runtime.
 class UnboundedFifoBuffer
          UnboundedFifoBuffer is a very efficient buffer implementation.
 

Methods in org.apache.commons.collections that return Buffer
static Buffer BufferUtils.synchronizedBuffer(Buffer buffer)
          Returns a synchronized buffer backed by the given buffer.
static Buffer BufferUtils.blockingBuffer(Buffer buffer)
          Returns a synchronized buffer backed by the given buffer that will block on get() and remove() operations.
static Buffer BufferUtils.unmodifiableBuffer(Buffer buffer)
          Returns an unmodifiable buffer backed by the given buffer.
static Buffer BufferUtils.predicatedBuffer(Buffer buffer, Predicate predicate)
          Returns a predicated buffer backed by the given buffer.
 

Methods in org.apache.commons.collections with parameters of type Buffer
static Buffer BufferUtils.synchronizedBuffer(Buffer buffer)
          Returns a synchronized buffer backed by the given buffer.
static Buffer BufferUtils.blockingBuffer(Buffer buffer)
          Returns a synchronized buffer backed by the given buffer that will block on get() and remove() operations.
static Buffer BufferUtils.unmodifiableBuffer(Buffer buffer)
          Returns an unmodifiable buffer backed by the given buffer.
static Buffer BufferUtils.predicatedBuffer(Buffer buffer, Predicate predicate)
          Returns a predicated buffer backed by the given buffer.
 



Copyright © 2001-2004 The Apache Software Foundation. All Rights Reserved.