◆ getRankingClause()
WhereClause org.turro.indicator.PostprocessClause.getRankingClause |
( |
| ) |
|
Definition at line 48 of file PostprocessClause.java.
49 WhereClause wc =
new WhereClause();
50 wc.addClause(
"select new org.turro.ranking.GenericRanking(");
51 wc.addClause(
"'" + entityPath +
"', concept, sum(ranking))");
52 wc.addClause(
"from " + table);
53 wc.addIn(
"where",
"entityPath", springPaths);
54 wc.addClause(
"group by concept");
55 wc.addClause(
"having sum(ranking) <> 0");
◆ load()
◆ setEntityPath()
PostprocessClause org.turro.indicator.PostprocessClause.setEntityPath |
( |
String |
entityPath | ) |
|
◆ setSpringPaths()
PostprocessClause org.turro.indicator.PostprocessClause.setSpringPaths |
( |
List< String > |
springPaths | ) |
|
The documentation for this class was generated from the following file: