to set the data in a location with a known schema @param location "where" to store the tuples @param schema the schema of the data @param data the tuples to store @throws ParserException if schema is invalid
(String location, String schema, Collection<Tuple> data)
| 271 | * @throws ParserException if schema is invalid |
| 272 | */ |
| 273 | public void set(String location, String schema, Collection<Tuple> data) throws ParserException { |
| 274 | set(location, Utils.getSchemaFromString(schema), data); |
| 275 | } |
| 276 | |
| 277 | /** |
| 278 | * to set the data in a location with a known schema |