@param location @return the data in this location
(String location)
| 359 | * @return the data in this location |
| 360 | */ |
| 361 | public List<Tuple> get(String location) { |
| 362 | if (!locationToData.containsKey(location)) { |
| 363 | throw new RuntimeException("No data for location '" + location + "'"); |
| 364 | } |
| 365 | return locationToData.get(location).getAll(); |
| 366 | } |
| 367 | |
| 368 | /** |
| 369 | * |