(LookupType lookupType, Object lookupValue)
| 314 | } |
| 315 | |
| 316 | private Object[] getRow(LookupType lookupType, Object lookupValue) |
| 317 | { |
| 318 | Function<? super Map<Object, Object[]>, Object[]> p = lookupType.getRowFor(lookupValue); |
| 319 | return p.apply(dataByRow); |
| 320 | } |
| 321 | |
| 322 | /** |
| 323 | * Trims this DataTable to reduce memory usage. Similar to trim() in |