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