Uses of Interface
zombie.util.IntCollection

Packages that use IntCollection
zombie.util   
zombie.util.list   
zombie.util.set   
 

Uses of IntCollection in zombie.util
 

Classes in zombie.util that implement IntCollection
 class AbstractIntCollection
          This class represents an abstract base for implementing collections of int values.
 

Methods in zombie.util with parameters of type IntCollection
 boolean IntCollection.addAll(IntCollection c)
          Adds all the elements of a specified collection to this collection.
 boolean AbstractIntCollection.addAll(IntCollection c)
           
 boolean IntCollection.containsAll(IntCollection c)
          Indicates whether all elements of a specified collection is contained in this collection.
 boolean AbstractIntCollection.containsAll(IntCollection c)
           
 boolean IntCollection.removeAll(IntCollection c)
          Removes all the elements of a specified collection from this collection.
 boolean AbstractIntCollection.removeAll(IntCollection c)
           
 boolean IntCollection.retainAll(IntCollection c)
          Retains only the elements of a specified collection in this collection.
 boolean AbstractIntCollection.retainAll(IntCollection c)
           
 

Uses of IntCollection in zombie.util.list
 

Subinterfaces of IntCollection in zombie.util.list
 interface IntList
          This interface represents lists of int values.
 

Classes in zombie.util.list that implement IntCollection
 class AbstractIntList
          This class represents an abstract base for implementing lists of int values.
 class IntArrayList
          This class represents an array implemenation of lists of int values.
 

Methods in zombie.util.list with parameters of type IntCollection
 boolean IntList.addAll(int index, IntCollection c)
          Adds all the elements of a specified collection to this list starting at a specified index.
 boolean AbstractIntList.addAll(int index, IntCollection c)
           
 

Constructors in zombie.util.list with parameters of type IntCollection
IntArrayList(IntCollection c)
          Creates a new array list with the same elements as a specified collection.
 

Uses of IntCollection in zombie.util.set
 

Subinterfaces of IntCollection in zombie.util.set
 interface IntSet
          This interface defines sets of int values.
 

Classes in zombie.util.set that implement IntCollection
 class AbstractIntSet
          This class represents an abstract base for implementing sets of int values.
 class IntOpenHashSet
          This class represents open addressing hash table based sets of int values.
 

Constructors in zombie.util.set with parameters of type IntCollection
IntOpenHashSet(IntCollection c)
          Creates a new hash set with the same elements as a specified collection.