Package zombie.util
Interface IntCollection
- All Known Implementing Classes:
AbstractIntCollection,AbstractIntList,AbstractIntSet,IntArrayList,IntOpenHashSet
public interface IntCollection
-
Method Summary
Modifier and Type Method Description booleanadd(int int1)booleanaddAll(IntCollection intCollection)voidclear()booleancontains(int int1)booleancontainsAll(IntCollection intCollection)booleanequals(java.lang.Object object)inthashCode()booleanisEmpty()IntIteratoriterator()booleanremove(int int1)booleanremoveAll(IntCollection intCollection)booleanretainAll(IntCollection intCollection)intsize()int[]toArray()int[]toArray(int[] intArray)voidtrimToSize()
-
Method Details
-
add
boolean add(int int1) -
addAll
-
clear
void clear() -
contains
boolean contains(int int1) -
containsAll
-
equals
boolean equals(java.lang.Object object)- Overrides:
equalsin classjava.lang.Object
-
hashCode
int hashCode()- Overrides:
hashCodein classjava.lang.Object
-
isEmpty
boolean isEmpty() -
iterator
IntIterator iterator() -
remove
boolean remove(int int1) -
removeAll
-
retainAll
-
size
int size() -
toArray
int[] toArray() -
toArray
int[] toArray(int[] intArray) -
trimToSize
void trimToSize()
-