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

Packages that use ByteList
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 ByteList in org.apache.commons.collections.primitives
 

Classes in org.apache.commons.collections.primitives that implement ByteList
 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
           
 

Fields in org.apache.commons.collections.primitives declared as ByteList
static ByteList ByteCollections.EMPTY_BYTE_LIST
          An unmodifiable, empty ByteList
 

Methods in org.apache.commons.collections.primitives that return ByteList
static ByteList ByteCollections.getEmptyByteList()
          Returns an unmodifiable, empty ByteList.
static ByteList ByteCollections.singletonByteList(byte value)
          Returns an unmodifiable ByteList containing only the specified element.
 ByteList ByteList.subList(int fromIndex, int toIndex)
          Returns a view of the elements within me between the specified fromIndex, inclusive, and toIndex, exclusive.
 ByteList RandomAccessByteList.subList(int fromIndex, int toIndex)
           
static ByteList ByteCollections.unmodifiableByteList(ByteList list)
          Returns an unmodifiable version of the given non-null ByteList.
 

Methods in org.apache.commons.collections.primitives with parameters of type ByteList
static ByteList ByteCollections.unmodifiableByteList(ByteList list)
          Returns an unmodifiable version of the given non-null ByteList.
 

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

Classes in org.apache.commons.collections.primitives.adapters that implement ByteList
 class ListByteList
          Adapts a Number-valued List to the ByteList interface.
 

Methods in org.apache.commons.collections.primitives.adapters that return ByteList
protected  ByteList ByteListList.getByteList()
           
static ByteList Adapt.toByteList(List c)
           
static ByteList ListByteList.wrap(List list)
          Create an ByteList wrapping the specified List.
 

Methods in org.apache.commons.collections.primitives.adapters with parameters of type ByteList
static List Adapt.toList(ByteList c)
           
static List ByteListList.wrap(ByteList list)
          Create a List wrapping the specified ByteList.
 

Constructors in org.apache.commons.collections.primitives.adapters with parameters of type ByteList
ByteListList(ByteList list)
          Creates a List wrapping the specified ByteList.
 

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

Classes in org.apache.commons.collections.primitives.decorators that implement ByteList
 class UnmodifiableByteList
           
 

Methods in org.apache.commons.collections.primitives.decorators that return ByteList
protected  ByteList UnmodifiableByteList.getProxiedList()
           
static ByteList UnmodifiableByteList.wrap(ByteList list)
           
 

Methods in org.apache.commons.collections.primitives.decorators with parameters of type ByteList
static ByteList UnmodifiableByteList.wrap(ByteList list)
           
 



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