How do I add a "tag" to an IAnyResource?
import org.hl7.fhir.instance.model.api.IAnyResource;
import org.hl7.fhir.instance.model.api.IBaseCoding;
import org.hl7.fhir.r4.model.Coding;
import java.util.ArrayList;
import java.util.List;
public IAnyResource tagAnIAnyResource(IAnyResource anyRes) {
IAnyResource returnItem = null;
if (null != anyRes) {
returnItem = anyRes;
List<? extends IBaseCoding> temp = anyRes.getMeta().getTag();
String tempReport = temp.getClass().getSimpleName();
List<IBaseCoding> tagList = new ArrayList<>();
IBaseCoding dogA = new Coding().setSystem(null).setCode("Dog").setDisplay("Puppies");
/* below does not work :< */
anyRes.getMeta().getTag().add(dogA);
tagList.add(dogA);
// Add this twice
tagList.add(new Coding().setSystem("http://foo").setCode("Cat").setDisplay("Kittens"));
tagList.add(new Coding().setSystem("http://foo").setCode("Cat").setDisplay("Kittens"));
/* below does not work :< */
anyRes.getMeta().getTag().addAll(tagList);
/* out of desperation */
List<? extends IBaseCoding> castList = (List<? extends IBaseCoding>) tagList;
/* below does not work :< */
anyRes.getMeta().getTag().addAll(castList);
}
return returnItem;
}
Current error:
Error:(35, 43) java: incompatible types: org.hl7.fhir.instance.model.api.IBaseCoding cannot be converted to capture#1 of ? extends org.hl7.fhir.instance.model.api.IBaseCoding
Error:(46, 46) java: incompatible types: java.util.List<org.hl7.fhir.instance.model.api.IBaseCoding> cannot be converted to java.util.Collection<? extends capture#2 of ? extends org.hl7.fhir.instance.model.api.IBaseCoding>
Error:(51, 46) java: incompatible types: java.util.List<capture#3 of ? extends org.hl7.fhir.instance.model.api.IBaseCoding> cannot be converted to java.util.Collection<? extends capture#4 of ? extends org.hl7.fhir.instance.model.api.IBaseCoding>
Code sample (coded to an r4 Patient) is mostly from
I just tried to make it more reusable with
/**
* An IBaseResource that has a FHIR version of DSTU3 or higher
*/
public interface IAnyResource extends IBaseResource {
Or is this some kind of java type erasure issue?
It seems to be Java Type Erasure voodoo.
See the below.
If you comment/uncomment the three versions of differentBaseObjectHolder, you can see the issue.
Java Generics are horrible.
=====
dependencies {
}