this.inputFieldName = getConfigs().getString(config, "inputField");
String databaseFile = getConfigs().getString(config, "database", null);
int cacheCapacity = getConfigs().getInt(config, "cacheCapacity", 1000);
String nullReplacement = getConfigs().getString(config, "nullReplacement", "");
Parser parser;
try {
if (databaseFile == null) {
parser = new Parser();
} else {
InputStream in = new BufferedInputStream(new FileInputStream(databaseFile));
try {
parser = new Parser(in);
} finally {
Closeables.closeQuietly(in);
}
}
} catch (IOException e) {