org.ontobox.fast.util.primitive
Interface BooleanList

All Known Implementing Classes:
PCJBooleanList, StdBooleanList, TroveBooleanList

public interface BooleanList

Author:
Anton Malykh

Method Summary
 void add(boolean value)
           
 boolean forEach(BooleanProcessor processor)
           
 boolean get(int index)
           
 int indexOf(int index, boolean value)
           
 void insert(int index, boolean value)
           
 boolean isEmpty()
           
 void removeIndex(int index)
           
 int size()
           
 

Method Detail

add

void add(boolean value)

insert

void insert(int index,
            boolean value)

size

int size()

get

boolean get(int index)

indexOf

int indexOf(int index,
            boolean value)

removeIndex

void removeIndex(int index)

isEmpty

boolean isEmpty()

forEach

boolean forEach(BooleanProcessor processor)