org.ontobox.fast.util.primitive.impl.pcj
Class PCJBooleanList

java.lang.Object
  extended by org.ontobox.fast.util.primitive.impl.pcj.PCJBooleanList
All Implemented Interfaces:
BooleanList

public class PCJBooleanList
extends java.lang.Object
implements BooleanList

Author:
Anton Malykh

Constructor Summary
PCJBooleanList(int size)
           
 
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()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PCJBooleanList

public PCJBooleanList(int size)
Method Detail

add

public void add(boolean value)
Specified by:
add in interface BooleanList

size

public int size()
Specified by:
size in interface BooleanList

insert

public void insert(int index,
                   boolean value)
Specified by:
insert in interface BooleanList

indexOf

public int indexOf(int index,
                   boolean value)
Specified by:
indexOf in interface BooleanList

removeIndex

public void removeIndex(int index)
Specified by:
removeIndex in interface BooleanList

isEmpty

public boolean isEmpty()
Specified by:
isEmpty in interface BooleanList

get

public boolean get(int index)
Specified by:
get in interface BooleanList

forEach

public boolean forEach(BooleanProcessor processor)
Specified by:
forEach in interface BooleanList