de.julielab.xmlData.cli.QueryOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of costosys Show documentation
Show all versions of costosys Show documentation
A utility for managing documents stored in a PostgreSQL database. The documents are imported into a
PostgreSQL DB as full texts with the goal to be able to retrieve the documents by their PubMedID efficiently.
For more sophisticated tasks, a user configuration file can be delivered which can take control of the table
schema to use, the PostgreSQL schema to use and the actual database server to connect to as well as the concrete
database.
package de.julielab.xmlData.cli;
public class QueryOptions {
public String queryStr;
public String fileStr;
public String tableName;
public boolean useDelimiter;
public String xpath;
public String baseOutDirStr;
public String batchSizeStr;
public String limitStr;
public String whereClause;
public Integer numberRefHops;
public boolean pubmedArticleSet;
public String tableSchema;
@Override
public String toString() {
return "QueryOptions [queryStr=" + queryStr + ", fileStr=" + fileStr + ", tableName=" + tableName
+ ", useDelimiter=" + useDelimiter + ", xpath=" + xpath + ", baseOutDirStr=" + baseOutDirStr
+ ", batchSizeStr=" + batchSizeStr + ", limitStr=" + limitStr + ", whereClause=" + whereClause
+ ", numberRefHops=" + numberRefHops + ", pubmedArticleSet=" + pubmedArticleSet + "]";
}
}