System.Collections.Generic
Interface ICollection<T>

All Superinterfaces:
IEnumerable<T>, java.lang.Iterable<T>
All Known Subinterfaces:
IList<T>
All Known Implementing Classes:
TouchCollection

public interface ICollection<T>
extends IEnumerable<T>

Defines methods to manipulate generic collections.

Author:
Halofreak1990

Method Summary
 void Add(T item)
           
 void Clear()
           
 boolean Contains(T item)
           
 void CopyTo(T[] array, int arrayIndex)
           
 int Count()
           
 boolean IsReadOnly()
           
 boolean Remove(T item)
           
 
Methods inherited from interface System.Collections.Generic.IEnumerable
GetEnumerator
 
Methods inherited from interface java.lang.Iterable
iterator
 

Method Detail

Add

void Add(T item)

Clear

void Clear()

Contains

boolean Contains(T item)

CopyTo

void CopyTo(T[] array,
            int arrayIndex)

Remove

boolean Remove(T item)

Count

int Count()

IsReadOnly

boolean IsReadOnly()