-
- 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 usingint[]instead ofObject[]. null values are not supported.- See Also:
List
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidadd(int index, int element)intgetInt(int index)intindexOf(int elem)intlastIndexOf(int elem)intremoveAtIndex(int index)intset(int index, int element)-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
Methods inherited from interface com.aoapps.collections.IntCollection
add, contains, removeByValue, toArrayInt
-
Methods inherited from interface java.util.List
add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray
-
-