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

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

Subinterfaces of IntCollection in org.apache.commons.collections.primitives
 interface IntList
          An ordered collection of int values.
 

Classes in org.apache.commons.collections.primitives that implement IntCollection
 class AbstractIntCollection
          Abstract base class for IntCollections.
 class ArrayIntList
          An IntList backed by an array of ints.
 class ArrayUnsignedShortList
          An IntList backed by an array of unsigned short values.
 class RandomAccessIntList
          Abstract base class for IntLists backed by random access structures like arrays.
protected static class RandomAccessIntList.RandomAccessIntSubList
           
 

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

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

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

Classes in org.apache.commons.collections.primitives.adapters that implement IntCollection
 class CollectionIntCollection
          Adapts a Number-valued Collection to the IntCollection interface.
 class ListIntList
          Adapts a Number-valued List to the IntList interface.
 

Methods in org.apache.commons.collections.primitives.adapters that return IntCollection
protected  IntCollection IntCollectionCollection.getIntCollection()
           
static IntCollection Adapt.toIntCollection(Collection c)
           
static IntCollection CollectionIntCollection.wrap(Collection collection)
          Create an IntCollection wrapping the specified Collection.
 

Methods in org.apache.commons.collections.primitives.adapters with parameters of type IntCollection
static Collection Adapt.toCollection(IntCollection c)
           
static Collection IntCollectionCollection.wrap(IntCollection collection)
          Create a Collection wrapping the specified IntCollection.
 

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

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

Classes in org.apache.commons.collections.primitives.decorators that implement IntCollection
 class UnmodifiableIntList
           
 



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