edu.unh.sdb.datasource
Class IndexBlock

java.lang.Object
  extended by edu.unh.sdb.datasource.IndexBlock

public class IndexBlock
extends java.lang.Object


Constructor Summary
IndexBlock(float[] indexes, int low, int high)
          Constructor takes three arguments
 
Method Summary
 void getCellData(Indexable theData, Indexable pds)
          Get the data corresponding to the index block
 Datum[] getDatums(Indexable theData)
          Return Datums corresponding to the index block
 void getDatums(Indexable theData, Datum[] data)
          Get Datums corresponding to the index block
 int getHighIndex()
          Get the high index
 float[] getIndexes()
          Get the index block
 int getLowIndex()
          Get the low index
 void setHighIndex(int high)
          Set low index
 void setLowIndex(int low)
          Set low index
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

IndexBlock

public IndexBlock(float[] indexes,
                  int low,
                  int high)
Constructor takes three arguments

Method Detail

getIndexes

public float[] getIndexes()
Get the index block


getLowIndex

public int getLowIndex()
Get the low index


getHighIndex

public int getHighIndex()
Get the high index


setLowIndex

public void setLowIndex(int low)
Set low index


setHighIndex

public void setHighIndex(int high)
Set low index


getCellData

public void getCellData(Indexable theData,
                        Indexable pds)
Get the data corresponding to the index block


getDatums

public Datum[] getDatums(Indexable theData)
Return Datums corresponding to the index block


getDatums

public void getDatums(Indexable theData,
                      Datum[] data)
Get Datums corresponding to the index block