Uses of Class
com.ibm.fhir.model.patch.exception.FHIRPatchException
- 
Packages that use FHIRPatchException Package Description com.ibm.fhir.model.patch com.ibm.fhir.path.patch com.ibm.fhir.path.util  - 
- 
Uses of FHIRPatchException in com.ibm.fhir.model.patch
Methods in com.ibm.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 com.ibm.fhir.path.patch
Methods in com.ibm.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 com.ibm.fhir.path.util
Methods in com.ibm.fhir.path.util that throw FHIRPatchException 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) 
 -