/** * Creates a JSON dataset based on an inputstream * * @param is An inputstream pointing to a JSON dataset */ public JsonDataSet(InputStream is) { tables = tableParser.getTables(is); }
/** * Creates a JSON dataset based on a file * * @param file A JSON dataset file */ public JsonDataSet(File file) { tables = tableParser.getTables(file); }