Uses of Interface
org.apache.commons.collections.primitives.ByteCollection

Packages that use ByteCollection
org.apache.commons.collections.primitives Collections of primitive values. 
org.apache.commons.collections.primitives.adapters Adapters for converting between the primitive and object based versions of the collections framework. 
org.apache.commons.collections.primitives.decorators Decorators of primitive collections. 
 

Uses of ByteCollection in org.apache.commons.collections.primitives
 

Subinterfaces of ByteCollection in org.apache.commons.collections.primitives
 interface ByteList
          An ordered collection of byte values.
 

Classes in org.apache.commons.collections.primitives that implement ByteCollection
 class AbstractByteCollection
          Abstract base class for ByteCollections.
 class ArrayByteList
          An ByteList backed by an array of bytes.
 class RandomAccessByteList
          Abstract base class for ByteLists backed by random access structures like arrays.
protected static class RandomAccessByteList.RandomAccessByteSubList
           
 

Methods in org.apache.commons.collections.primitives with parameters of type ByteCollection
 boolean RandomAccessByteList.addAll(int index, ByteCollection collection)
           
 boolean AbstractByteCollection.addAll(ByteCollection c)
           
 boolean AbstractByteCollection.containsAll(ByteCollection c)
           
 boolean AbstractByteCollection.removeAll(ByteCollection c)
           
 boolean AbstractByteCollection.retainAll(ByteCollection c)
           
 boolean ByteList.addAll(int index, ByteCollection collection)
          Inserts all of the elements in the specified collection into me, at the specified position (optional operation).
 boolean ByteCollection.addAll(ByteCollection c)
          Adds all of the elements in the specified collection to me (optional operation).
 boolean ByteCollection.containsAll(ByteCollection c)
          Returns true iff I contain all of the elements in the given collection.
 boolean ByteCollection.removeAll(ByteCollection c)
          Removes all of my elements that are contained in the specified collection (optional operation).
 boolean ByteCollection.retainAll(ByteCollection c)
          Removes all of my elements that are not contained in the specified collection (optional operation).
 

Constructors in org.apache.commons.collections.primitives with parameters of type ByteCollection
ArrayByteList(ByteCollection that)
          Constructs a list containing the elements of the given collection, in the order they are returned by that collection's iterator.
 

Uses of ByteCollection in org.apache.commons.collections.primitives.adapters
 

Classes in org.apache.commons.collections.primitives.adapters that implement ByteCollection
(package private)  class org.apache.commons.collections.primitives.adapters.AbstractCollectionByteCollection
           
(package private)  class org.apache.commons.collections.primitives.adapters.AbstractListByteList
           
 class CollectionByteCollection
          Adapts a Number-valued Collection to the ByteCollection interface.
 class ListByteList
          Adapts a Number-valued List to the ByteList interface.
 

Methods in org.apache.commons.collections.primitives.adapters that return ByteCollection
static ByteCollection CollectionByteCollection.wrap(Collection collection)
          Create an ByteCollection wrapping the specified Collection.
protected  ByteCollection ByteCollectionCollection.getByteCollection()
           
 

Methods in org.apache.commons.collections.primitives.adapters with parameters of type ByteCollection
static Collection ByteCollectionCollection.wrap(ByteCollection collection)
          Create a Collection wrapping the specified ByteCollection.
 

Constructors in org.apache.commons.collections.primitives.adapters with parameters of type ByteCollection
ByteCollectionCollection(ByteCollection collection)
          Creates a Collection wrapping the specified ByteCollection.
 

Uses of ByteCollection in org.apache.commons.collections.primitives.decorators
 

Classes in org.apache.commons.collections.primitives.decorators that implement ByteCollection
(package private)  class org.apache.commons.collections.primitives.decorators.BaseProxyByteCollection
           
(package private)  class org.apache.commons.collections.primitives.decorators.BaseProxyByteList
           
(package private)  class org.apache.commons.collections.primitives.decorators.BaseUnmodifiableByteList
           
 class UnmodifiableByteList
           
 



Copyright © 2002-2003 Apache Software Foundation. All Rights Reserved.