org.ontobox.fast.util.primitive
Interface LongList

All Superinterfaces:
LongCollection
All Known Implementing Classes:
PCJLongList, StdLongList, TroveLongList

public interface LongList
extends LongCollection

Author:
Anton Malykh

Method Summary
 long get(int index)
           
 int indexOf(int index, long value)
           
 void insert(int index, long value)
           
 void removeIndex(int index)
           
 
Methods inherited from interface org.ontobox.fast.util.primitive.LongCollection
add, addAll, clear, contains, forEach, isEmpty, size, toArray
 

Method Detail

insert

void insert(int index,
            long value)

indexOf

int indexOf(int index,
            long value)
Parameters:
index - the offset at which to start the linear search (inclusive)
value -
Returns:

get

long get(int index)

removeIndex

void removeIndex(int index)