private static Map<String, RowParser> getParsers(String[] securityTypes) {
Map<String, RowParser> rowParsers = new HashMap<String, RowParser>();
if (securityTypes != null) {
for (String s : securityTypes) {
JodaBeanRowParser parser = JodaBeanRowParser.newJodaBeanRowParser(s);
if (parser != null) {
rowParsers.put(s, parser);
}
}
}