Interface IntList

All Superinterfaces:
Collection<Integer>, IntCollection, Iterable<Integer>, List<Integer>
All Known Implementing Classes:
IntArrayList, SortedIntArrayList

public interface IntList extends IntCollection, List<Integer>
A List that stores things using int[] instead of Object[]. null values are not supported.
See Also:
  • Method Details

    • indexOf

      int indexOf(int elem)
    • lastIndexOf

      int lastIndexOf(int elem)
    • getInt

      int getInt(int index)
    • set

      int set(int index, int element)
    • add

      void add(int index, int element)
    • removeAtIndex

      int removeAtIndex(int index)