Package zombie.util

Interface IntCollection

All Known Subinterfaces:
IntList, IntSet
All Known Implementing Classes:
AbstractIntCollection, AbstractIntList, AbstractIntSet, IntArrayList, IntOpenHashSet

public interface IntCollection
  • Method Details

    • add

      boolean add​(int int1)
    • addAll

      boolean addAll​(IntCollection intCollection)
    • clear

      void clear()
    • contains

      boolean contains​(int int1)
    • containsAll

      boolean containsAll​(IntCollection intCollection)
    • equals

      boolean equals​(java.lang.Object object)
      Overrides:
      equals in class java.lang.Object
    • hashCode

      int hashCode()
      Overrides:
      hashCode in class java.lang.Object
    • isEmpty

      boolean isEmpty()
    • iterator

      IntIterator iterator()
    • remove

      boolean remove​(int int1)
    • removeAll

      boolean removeAll​(IntCollection intCollection)
    • retainAll

      boolean retainAll​(IntCollection intCollection)
    • size

      int size()
    • toArray

      int[] toArray()
    • toArray

      int[] toArray​(int[] intArray)
    • trimToSize

      void trimToSize()