Searched defs:propTable (Results 1 - 1 of 1) sorted by relevance

/forgerock/openidm-v4/openidm-repo-jdbc/src/main/java/org/forgerock/openidm/repo/jdbc/impl/
H A DGenericSQLQueryFilterVisitor.java86 * @param propTable the property table
91 Clause buildNumericValueClause(String propTable, String operand, String placeholder) { argument
92 return where(propTable + ".proptype = 'java.lang.Integer'")
93 .or(propTable + ".proptype = 'java.lang.Double'")
94 .and("CAST(" + propTable + ".propvalue AS DECIMAL) " + operand + " ${" + placeholder + "}");
100 * @param propTable the property table
105 Clause buildBooleanValueClause(String propTable, String operand, String placeholder) { argument
106 return where(propTable + ".proptype = 'java.lang.Boolean'")
107 .and(where(propTable + ".propvalue " + operand + " ${" + placeholder + "}"));
113 * @param propTable th
118 buildStringValueClause(String propTable, String operand, String placeholder) argument
[all...]

Completed in 111 milliseconds