Uses of Class
org.linuxforhealth.fhir.path.exception.FHIRPathException
-
Packages that use FHIRPathException Package Description org.linuxforhealth.fhir.path.evaluator org.linuxforhealth.fhir.path.util -
-
Uses of FHIRPathException in org.linuxforhealth.fhir.path.evaluator
Methods in org.linuxforhealth.fhir.path.evaluator that throw FHIRPathException Modifier and Type Method Description java.util.Collection<FHIRPathNode>
FHIRPathEvaluator. evaluate(java.lang.String expr)
Evaluate a FHIRPath expressionjava.util.Collection<FHIRPathNode>
FHIRPathEvaluator. evaluate(Resource resource, java.lang.String expr)
Evaluate a FHIRPath expression against aResource
java.util.Collection<FHIRPathNode>
FHIRPathEvaluator. evaluate(Element element, java.lang.String expr)
Evaluate a FHIRPath expression against anElement
java.util.Collection<FHIRPathNode>
FHIRPathEvaluator. evaluate(Visitable resourceOrElement, java.lang.String expr)
java.util.Collection<FHIRPathNode>
FHIRPathEvaluator. evaluate(FHIRPathEvaluator.EvaluationContext evaluationContext, java.lang.String expr)
Evaluate a FHIRPath expression using an existing evaluation contextjava.util.Collection<FHIRPathNode>
FHIRPathEvaluator. evaluate(FHIRPathEvaluator.EvaluationContext evaluationContext, java.lang.String expr, java.util.Collection<FHIRPathNode> initialContext)
Evaluate a FHIRPathExpression using an existing EvaluationContext against a collection of FHIRPath nodesjava.util.Collection<FHIRPathNode>
FHIRPathEvaluator. evaluate(FHIRPathEvaluator.EvaluationContext evaluationContext, java.lang.String expr, FHIRPathNode node)
Evaluate a FHIRPath expression using an existing evaluation context against a FHIRPath node -
Uses of FHIRPathException in org.linuxforhealth.fhir.path.util
Methods in org.linuxforhealth.fhir.path.util that throw FHIRPathException Modifier and Type Method Description static <T extends Visitable>
TFHIRPathUtil. add(T elementOrResource, java.lang.String fhirPath, java.lang.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, java.lang.String fhirPath)
Only a single element can be deletedstatic <T extends Visitable>
TFHIRPathUtil. insert(T elementOrResource, java.lang.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, java.lang.String fhirPath, int source, int target)
Move an element within a single liststatic <T extends Visitable>
TFHIRPathUtil. replace(T elementOrResource, java.lang.String fhirPath, Visitable value)
-