Class NewUriModifierUtil
- java.lang.Object
-
- com.ibm.fhir.persistence.jdbc.util.NewUriModifierUtil
-
public class NewUriModifierUtil extends Object
Encapsulates logic for building an expression for handling URI matching according to the FHIR R4 specification. Modifier: uri:above
FHIR Specification: Search uri:above
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidgenerateAboveValuesQuery(WhereFragment expression, String paramAlias, String tableColumnName, String searchValue, Operator operator)generates the uri:above querystatic voidgenerateBelowValuesQuery(WhereFragment expression, String tableColumnName, String value1, String value2)generates the uri:below query
-
-
-
Method Detail
-
generateAboveValuesQuery
public static void generateAboveValuesQuery(WhereFragment expression, String paramAlias, String tableColumnName, String searchValue, Operator operator)
generates the uri:above query- Parameters:
expression-paramAlias-tableColumnName-searchValue-operator-
-
generateBelowValuesQuery
public static void generateBelowValuesQuery(WhereFragment expression, String tableColumnName, String value1, String value2)
generates the uri:below query- Parameters:
expression-tableColumnName-value1-value2-
-
-