Uses of Class
com.ibm.fhir.path.exception.FHIRPathException
-
Packages that use FHIRPathException Package Description com.ibm.fhir.path.evaluator com.ibm.fhir.path.util -
-
Uses of FHIRPathException in com.ibm.fhir.path.evaluator
Methods in com.ibm.fhir.path.evaluator that throw FHIRPathException Modifier and Type Method Description Collection<FHIRPathNode>
FHIRPathEvaluator. evaluate(Resource resource, String expr)
Evaluate a FHIRPath expression against aResource
Collection<FHIRPathNode>
FHIRPathEvaluator. evaluate(Element element, String expr)
Evaluate a FHIRPath expression against anElement
Collection<FHIRPathNode>
FHIRPathEvaluator. evaluate(Visitable resourceOrElement, String expr)
Collection<FHIRPathNode>
FHIRPathEvaluator. evaluate(FHIRPathEvaluator.EvaluationContext evaluationContext, String expr)
Evaluate a FHIRPath expression using an existing evaluation contextCollection<FHIRPathNode>
FHIRPathEvaluator. evaluate(FHIRPathEvaluator.EvaluationContext evaluationContext, String expr, FHIRPathNode node)
Evaluate a FHIRPath expression using an existing evaluation context against a FHIRPath nodeCollection<FHIRPathNode>
FHIRPathEvaluator. evaluate(FHIRPathEvaluator.EvaluationContext evaluationContext, String expr, Collection<FHIRPathNode> initialContext)
Evaluate a FHIRPathExpression using an existing EvaluationContext against a collection of FHIRPath nodesCollection<FHIRPathNode>
FHIRPathEvaluator. evaluate(String expr)
Evaluate a FHIRPath expression -
Uses of FHIRPathException in com.ibm.fhir.path.util
Methods in com.ibm.fhir.path.util that throw FHIRPathException Modifier and Type Method Description static <T extends Visitable>
TFHIRPathUtil. add(T elementOrResource, String fhirPath, String elementName, Visitable value)
The content will be appended to the element identified in the path, using the name specified.static <T extends Visitable>
TFHIRPathUtil. delete(T elementOrResource, String fhirPath)
Only a single element can be deletedstatic <T extends Visitable>
TFHIRPathUtil. insert(T elementOrResource, String fhirPath, int index, Visitable value)
The content will be inserted into the nominated list at the index specified (0 based).static <T extends Visitable>
TFHIRPathUtil. move(T elementOrResource, String fhirPath, int source, int target)
Move an element within a single liststatic <T extends Visitable>
TFHIRPathUtil. replace(T elementOrResource, String fhirPath, Visitable value)
-