PropertyTable table = new PropertyTableHashMapImpl();
return fillPropertyTable(table, csvFilePath);
}
public static PropertyTable buildPropetyTableArrayImplFromCsv(String csvFilePath) {
PropertyTable table = createEmptyPropertyTableArrayImpl(csvFilePath);
return fillPropertyTable(table, csvFilePath);
}