Uses of Class
org.linuxforhealth.fhir.model.patch.exception.FHIRPatchException
-
Packages that use FHIRPatchException Package Description org.linuxforhealth.fhir.model.patch org.linuxforhealth.fhir.path.patch org.linuxforhealth.fhir.path.util -
-
Uses of FHIRPatchException in org.linuxforhealth.fhir.model.patch
Methods in org.linuxforhealth.fhir.model.patch that throw FHIRPatchException Modifier and Type Method Description <T extends Resource>
TFHIRJsonPatch. apply(T resource)
<T extends Resource>
TFHIRPatch. apply(T resource)
Apply this patch to a resource -
Uses of FHIRPatchException in org.linuxforhealth.fhir.path.patch
Methods in org.linuxforhealth.fhir.path.patch that throw FHIRPatchException Modifier and Type Method Description <T extends Resource>
TFHIRPathPatch. apply(T resource)
<T extends Resource>
TFHIRPathPatchAdd. apply(T resource)
<T extends Resource>
TFHIRPathPatchDelete. apply(T resource)
<T extends Resource>
TFHIRPathPatchInsert. apply(T resource)
<T extends Resource>
TFHIRPathPatchMove. apply(T resource)
<T extends Resource>
TFHIRPathPatchReplace. apply(T resource)
-
Uses of FHIRPatchException in org.linuxforhealth.fhir.path.util
Methods in org.linuxforhealth.fhir.path.util that throw FHIRPatchException 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)
-