13 lines
317 B
Java
13 lines
317 B
Java
package Scripts.CollectionGenericObjects;
|
|
|
|
public interface ICollectionGenericObjects<T>
|
|
{
|
|
int getCount();
|
|
void SetMaxCount(int count);
|
|
int Insert(T obj);
|
|
T Remove(int position);
|
|
T Get(int position);
|
|
CollectionType GetCollectionType();
|
|
Iterable<T> GetItems();
|
|
void ClearCollection();
|
|
} |