Skip to content

Commit 79112a5

Browse files
committed
add missing method
1 parent e2e74ce commit 79112a5

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

common-tools/clas-utils/src/main/java/org/jlab/utils/groups/IndexedTable.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,10 @@ public void setIntValueByHash(Integer value, int column, long hash) {
167167
this.entries.getItemByHash(hash).setValue(column, value);
168168
}
169169

170+
public void setDoubleValueByHash(Double value, int column, long hash) {
171+
this.entries.getItemByHash(hash).setValue(column, value);
172+
}
173+
170174
public int getIntValueByHash(int index, long hash) {
171175
return entries.getItemByHash(hash).getValue(index).intValue();
172176
}

0 commit comments

Comments
 (0)