Uses of Class
com.ibm.fhir.database.utils.query.node.BindMarkerNode
-
Packages that use BindMarkerNode Package Description com.ibm.fhir.database.utils.query com.ibm.fhir.database.utils.query.expression com.ibm.fhir.database.utils.query.node -
-
Uses of BindMarkerNode in com.ibm.fhir.database.utils.query
Methods in com.ibm.fhir.database.utils.query with parameters of type BindMarkerNode Modifier and Type Method Description TBaseWhereAdapter. eq(BindMarkerNode bindMarker)Add a bind marker and value to the expressionTBaseWhereAdapter. escape(BindMarkerNode bindMarker)Add ESCAPE ? to the expressionTBaseWhereAdapter. gt(BindMarkerNode bindMarker)Add a bind marker and its value to the expressionTBaseWhereAdapter. gte(BindMarkerNode bindMarker)Add >= {bindMarker} to the expressionTBaseWhereAdapter. like(BindMarkerNode bindMarker)Add LIKE ? to the expressionTBaseWhereAdapter. lt(BindMarkerNode bindMarker)Add < {bindMarker} to the expressionTBaseWhereAdapter. lte(BindMarkerNode bindMarker)Add <= {bindMarker} to the expressionTBaseWhereAdapter. neq(BindMarkerNode bindMarker)Add a bind marker and its value to the expression -
Uses of BindMarkerNode in com.ibm.fhir.database.utils.query.expression
Methods in com.ibm.fhir.database.utils.query.expression that return BindMarkerNode Modifier and Type Method Description static BindMarkerNodeExpressionSupport. bind(Double value)Factory function to create a BindMarkerNode with the given valuestatic BindMarkerNodeExpressionSupport. bind(Integer value)Factory function to create a BindMarkerNode with the given valuestatic BindMarkerNodeExpressionSupport. bind(Long value)Factory function to create a BindMarkerNode with the given valuestatic BindMarkerNodeExpressionSupport. bind(String value)Factory function for creating a BindMarkerNode instancestatic BindMarkerNodeExpressionSupport. bind(BigDecimal value)Factory function to create a BindMarkerNode with the given valuestatic BindMarkerNodeExpressionSupport. bind(Instant value)Factory function to create a BindMarkerNode with the given valueConstructor parameters in com.ibm.fhir.database.utils.query.expression with type arguments of type BindMarkerNode Constructor Description StringExpNodeVisitor(IDatabaseTranslator translator, List<BindMarkerNode> collectBindMarkersInto, boolean pretty)Collect the bind marker values into the given listStringStatementRenderer(IDatabaseTranslator translator, List<BindMarkerNode> collectBindMarkersInto, boolean pretty)Public constructor -
Uses of BindMarkerNode in com.ibm.fhir.database.utils.query.node
Subclasses of BindMarkerNode in com.ibm.fhir.database.utils.query.node Modifier and Type Class Description classBigDecimalBindMarkerNodeA bind marker representing a BigDecimal valueclassDoubleBindMarkerNodeA bind marker representing a Double valueclassInstantBindMarkerNodeA bind marker representing a Instant valueclassIntegerBindMarkerNodeA bind marker representing an Integer valueclassLongBindMarkerNodeA bind marker representing a nullable Long valueclassStringBindMarkerNodeA bind marker representing a String valueMethods in com.ibm.fhir.database.utils.query.node with parameters of type BindMarkerNode Modifier and Type Method Description voidPredicateParser. bindMarker(BindMarkerNode node)Add a bind marker ? and its value to the expression
-