Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,51 @@ public float getFloat(String varName, int index ){
return bank.getFloat(varName, indexList.get(index));
}

/**
* @param column
* @param index filtered index to retrieve
* @return value for the filtered index
*/
public int getByte(int column, int index ){
return bank.getByte(column, indexList.get(index));
}

/**
* @param column
* @param index filtered index to retrieve
* @return value for the filtered index
*/
public int getShort(int column, int index ){
return bank.getShort(column, indexList.get(index));
}

/**
* @param column
* @param index filtered index to retrieve
* @return value for the filtered index
*/
public int getInt(int column, int index ){
return bank.getInt(column, indexList.get(index));
}

/**
* @param column
* @param index filtered index to retrieve
* @return value for the filtered index
*/
public long getLong(int column, int index ){
return bank.getLong(column, indexList.get(index));
}

/**
* @param column
* @param index filtered index to retrieve
* @return value for the filtered index
*/
public float getFloat(int column , int index ){
return bank.getFloat(column, indexList.get(index));
}

/**
* @param index filtered index to retrieve
* @return true bank row index corresponding to the filtered index
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,51 @@ public float getFloat(String varName, int index ){
return dataBank.getFloat(varName, indexList.get(index));
}

/**
* @param index filtered index to retrieve
* @return value for the filtered index
*/
@Override
public int getByte(int column, int index ){
return dataBank.getByte(column, indexList.get(index));
}

/**
* @param index filtered index to retrieve
* @return value for the filtered index
*/
@Override
public int getShort(int column, int index ){
return dataBank.getShort(column, indexList.get(index));
}

/**
* @param index filtered index to retrieve
* @return value for the filtered index
*/
@Override
public int getInt(int column, int index ){
return dataBank.getInt(column, indexList.get(index));
}

/**
* @param index filtered index to retrieve
* @return value for the filtered index
*/
@Override
public long getLong(int column, int index ){
return dataBank.getLong(column, indexList.get(index));
}

/**
* @param index filtered index to retrieve
* @return value for the filtered index
*/
@Override
public float getFloat(int column, int index ){
return dataBank.getFloat(column, indexList.get(index));
}

public static void main(String[] args){

RawDataBank ftof = new RawDataBank("FTOF::adc");
Expand Down
Loading