Interface LongList

All Superinterfaces:
Collection<Long>, Iterable<Long>, List<Long>, LongCollection
All Known Implementing Classes:
LongArrayList, SortedLongArrayList

public interface LongList extends LongCollection, List<Long>
A List that stores things using long[] instead of Object[]. null values are not supported.
See Also:
  • Method Details

    • indexOf

      int indexOf(long elem)
    • lastIndexOf

      int lastIndexOf(long elem)
    • getLong

      long getLong(int index)
    • set

      long set(int index, long element)
    • add

      void add(int index, long element)
    • removeAtIndex

      long removeAtIndex(int index)