Package zombie.util
Interface IntCollection
- All Known Implementing Classes:
AbstractIntCollection
,AbstractIntList
,AbstractIntSet
,IntArrayList
,IntOpenHashSet
public interface IntCollection
-
Method Summary
Modifier and Type Method Description boolean
add(int int1)
boolean
addAll(IntCollection intCollection)
void
clear()
boolean
contains(int int1)
boolean
containsAll(IntCollection intCollection)
boolean
equals(java.lang.Object object)
int
hashCode()
boolean
isEmpty()
IntIterator
iterator()
boolean
remove(int int1)
boolean
removeAll(IntCollection intCollection)
boolean
retainAll(IntCollection intCollection)
int
size()
int[]
toArray()
int[]
toArray(int[] intArray)
void
trimToSize()
-
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:
equals
in classjava.lang.Object
-
hashCode
int hashCode()- Overrides:
hashCode
in 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()
-