org.ontobox.fast.util.primitive
Interface IntList

All Superinterfaces:
IntCollection
All Known Implementing Classes:
PCJIntList, StdIntList, TroveIntList

public interface IntList
extends IntCollection

Author:
Anton Malykh

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

Method Detail

insert

void insert(int index,
            int value)

indexOf

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

get

int get(int index)

removeIndex

void removeIndex(int index)