Package org.hl7.fhir.r4.formats
Class JsonParser
- java.lang.Object
-
- org.hl7.fhir.r4.formats.FormatUtilities
-
- org.hl7.fhir.r4.formats.ParserBase
-
- org.hl7.fhir.r4.formats.JsonParserBase
-
- org.hl7.fhir.r4.formats.JsonParser
-
- All Implemented Interfaces:
IParser
public class JsonParser extends JsonParserBase
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.hl7.fhir.r4.formats.IParser
IParser.OutputStyle
-
-
Field Summary
-
Fields inherited from class org.hl7.fhir.r4.formats.JsonParserBase
json
-
Fields inherited from class org.hl7.fhir.r4.formats.ParserBase
allowComments, allowUnknownContent, handleComments, idMap, style, xhtmlMessage
-
Fields inherited from class org.hl7.fhir.r4.formats.FormatUtilities
FHIR_NS, ID_REGEX, NS_XSI, XHTML_NS
-
-
Constructor Summary
Constructors Constructor Description JsonParser()JsonParser(boolean allowUnknownContent)JsonParser(boolean allowUnknownContent, boolean allowComments)
-
Method Summary
-
Methods inherited from class org.hl7.fhir.r4.formats.JsonParserBase
anyHasExtras, close, closeArray, closeObject, compose, compose, compose, composeDomainResource, composeStringCore, composeStringExtras, composeXhtml, getJObject, getType, makeComments, open, openArray, openObject, parse, parse, parseAnyType, parseDomainResource, parseElementProperties, parseElementProperties, parseType, parseXhtml, prop, prop, prop, prop, propNum, writeNull
-
Methods inherited from class org.hl7.fhir.r4.formats.ParserBase
composeBytes, composeBytes, composeString, composeString, getHandleComments, getOutputStyle, isAllowComments, isAllowUnknownContent, parse, parse, parseAnyType, parseAnyType, parseBase64BinaryPrimitive, parseBooleanPrimitive, parseBooleanPrimitive, parseCodePrimitive, parseDecimalPrimitive, parseDecimalPrimitive, parseIdPrimitive, parseIntegerPrimitive, parseIntegerPrimitive, parseOidPrimitive, parseStringPrimitive, parseTimePrimitive, parseType, parseType, parseUriPrimitive, parseUuidPrimitive, setAllowComments, setAllowUnknownContent, setHandleComments, setOutputStyle, setSuppressXhtml
-
Methods inherited from class org.hl7.fhir.r4.formats.FormatUtilities
determineFormat, determineFormat, isValidId, loadFile, loadFile, makeId, makeParser, makeParser, toString, toString, toString, toString, toString, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.hl7.fhir.r4.formats.IParser
composeBytes, composeBytes, composeString, composeString, getHandleComments, getOutputStyle, isAllowUnknownContent, parse, parse, parseType, parseType, setAllowUnknownContent, setHandleComments, setOutputStyle, setSuppressXhtml
-
-
-
-
Constructor Detail
-
JsonParser
public JsonParser()
-
JsonParser
public JsonParser(boolean allowUnknownContent)
-
JsonParser
public JsonParser(boolean allowUnknownContent, boolean allowComments)
-
-
Method Detail
-
parseElementProperties
protected void parseElementProperties(com.google.gson.JsonObject json, Element element) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Overrides:
parseElementPropertiesin classJsonParserBase- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBackboneElementProperties
protected void parseBackboneElementProperties(com.google.gson.JsonObject json, BackboneElement element) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBackboneElementProperties
protected void parseBackboneElementProperties(com.google.gson.JsonObject json, BackboneType element) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTypeProperties
protected void parseTypeProperties(com.google.gson.JsonObject json, Element element) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEnumeration
protected <E extends Enum<E>> Enumeration<E> parseEnumeration(String s, E item, EnumFactory e) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDate
protected DateType parseDate(String v) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDateTime
protected DateTimeType parseDateTime(String v) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCode
protected CodeType parseCode(String v) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseString
protected StringType parseString(String v) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInteger
protected IntegerType parseInteger(Long v) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseOid
protected OidType parseOid(String v) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCanonical
protected CanonicalType parseCanonical(String v) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseUri
protected UriType parseUri(String v) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseUuid
protected UuidType parseUuid(String v) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseUrl
protected UrlType parseUrl(String v) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInstant
protected InstantType parseInstant(String v) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBoolean
protected BooleanType parseBoolean(Boolean v) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBase64Binary
protected Base64BinaryType parseBase64Binary(String v) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseUnsignedInt
protected UnsignedIntType parseUnsignedInt(String v) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMarkdown
protected MarkdownType parseMarkdown(String v) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTime
protected TimeType parseTime(String v) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseId
protected IdType parseId(String v) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePositiveInt
protected PositiveIntType parsePositiveInt(String v) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDecimal
protected DecimalType parseDecimal(BigDecimal v) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExtension
protected Extension parseExtension(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExtensionProperties
protected void parseExtensionProperties(com.google.gson.JsonObject json, Extension res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNarrative
protected Narrative parseNarrative(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNarrativeProperties
protected void parseNarrativeProperties(com.google.gson.JsonObject json, Narrative res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeta
protected Meta parseMeta(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMetaProperties
protected void parseMetaProperties(com.google.gson.JsonObject json, Meta res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAddress
protected Address parseAddress(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAddressProperties
protected void parseAddressProperties(com.google.gson.JsonObject json, Address res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContributor
protected Contributor parseContributor(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContributorProperties
protected void parseContributorProperties(com.google.gson.JsonObject json, Contributor res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAttachment
protected Attachment parseAttachment(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAttachmentProperties
protected void parseAttachmentProperties(com.google.gson.JsonObject json, Attachment res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCount
protected Count parseCount(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCountProperties
protected void parseCountProperties(com.google.gson.JsonObject json, Count res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDataRequirement
protected DataRequirement parseDataRequirement(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDataRequirementProperties
protected void parseDataRequirementProperties(com.google.gson.JsonObject json, DataRequirement res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDataRequirementDataRequirementCodeFilterComponent
protected DataRequirement.DataRequirementCodeFilterComponent parseDataRequirementDataRequirementCodeFilterComponent(com.google.gson.JsonObject json, DataRequirement owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDataRequirementDataRequirementCodeFilterComponentProperties
protected void parseDataRequirementDataRequirementCodeFilterComponentProperties(com.google.gson.JsonObject json, DataRequirement owner, DataRequirement.DataRequirementCodeFilterComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDataRequirementDataRequirementDateFilterComponent
protected DataRequirement.DataRequirementDateFilterComponent parseDataRequirementDataRequirementDateFilterComponent(com.google.gson.JsonObject json, DataRequirement owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDataRequirementDataRequirementDateFilterComponentProperties
protected void parseDataRequirementDataRequirementDateFilterComponentProperties(com.google.gson.JsonObject json, DataRequirement owner, DataRequirement.DataRequirementDateFilterComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDataRequirementDataRequirementSortComponent
protected DataRequirement.DataRequirementSortComponent parseDataRequirementDataRequirementSortComponent(com.google.gson.JsonObject json, DataRequirement owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDataRequirementDataRequirementSortComponentProperties
protected void parseDataRequirementDataRequirementSortComponentProperties(com.google.gson.JsonObject json, DataRequirement owner, DataRequirement.DataRequirementSortComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDosage
protected Dosage parseDosage(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDosageProperties
protected void parseDosageProperties(com.google.gson.JsonObject json, Dosage res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDosageDosageDoseAndRateComponent
protected Dosage.DosageDoseAndRateComponent parseDosageDosageDoseAndRateComponent(com.google.gson.JsonObject json, Dosage owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDosageDosageDoseAndRateComponentProperties
protected void parseDosageDosageDoseAndRateComponentProperties(com.google.gson.JsonObject json, Dosage owner, Dosage.DosageDoseAndRateComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMoney
protected Money parseMoney(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMoneyProperties
protected void parseMoneyProperties(com.google.gson.JsonObject json, Money res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseHumanName
protected HumanName parseHumanName(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseHumanNameProperties
protected void parseHumanNameProperties(com.google.gson.JsonObject json, HumanName res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContactPoint
protected ContactPoint parseContactPoint(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContactPointProperties
protected void parseContactPointProperties(com.google.gson.JsonObject json, ContactPoint res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMarketingStatus
protected MarketingStatus parseMarketingStatus(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMarketingStatusProperties
protected void parseMarketingStatusProperties(com.google.gson.JsonObject json, MarketingStatus res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseIdentifier
protected Identifier parseIdentifier(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseIdentifierProperties
protected void parseIdentifierProperties(com.google.gson.JsonObject json, Identifier res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceAmount
protected SubstanceAmount parseSubstanceAmount(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceAmountProperties
protected void parseSubstanceAmountProperties(com.google.gson.JsonObject json, SubstanceAmount res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceAmountSubstanceAmountReferenceRangeComponent
protected SubstanceAmount.SubstanceAmountReferenceRangeComponent parseSubstanceAmountSubstanceAmountReferenceRangeComponent(com.google.gson.JsonObject json, SubstanceAmount owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceAmountSubstanceAmountReferenceRangeComponentProperties
protected void parseSubstanceAmountSubstanceAmountReferenceRangeComponentProperties(com.google.gson.JsonObject json, SubstanceAmount owner, SubstanceAmount.SubstanceAmountReferenceRangeComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoding
protected Coding parseCoding(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCodingProperties
protected void parseCodingProperties(com.google.gson.JsonObject json, Coding res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSampledData
protected SampledData parseSampledData(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSampledDataProperties
protected void parseSampledDataProperties(com.google.gson.JsonObject json, SampledData res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePopulation
protected Population parsePopulation(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePopulationProperties
protected void parsePopulationProperties(com.google.gson.JsonObject json, Population res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRatio
protected Ratio parseRatio(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRatioProperties
protected void parseRatioProperties(com.google.gson.JsonObject json, Ratio res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDistance
protected Distance parseDistance(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDistanceProperties
protected void parseDistanceProperties(com.google.gson.JsonObject json, Distance res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAge
protected Age parseAge(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAgeProperties
protected void parseAgeProperties(com.google.gson.JsonObject json, Age res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseReference
protected Reference parseReference(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseReferenceProperties
protected void parseReferenceProperties(com.google.gson.JsonObject json, Reference res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTriggerDefinition
protected TriggerDefinition parseTriggerDefinition(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTriggerDefinitionProperties
protected void parseTriggerDefinitionProperties(com.google.gson.JsonObject json, TriggerDefinition res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseQuantity
protected Quantity parseQuantity(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseQuantityProperties
protected void parseQuantityProperties(com.google.gson.JsonObject json, Quantity res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePeriod
protected Period parsePeriod(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePeriodProperties
protected void parsePeriodProperties(com.google.gson.JsonObject json, Period res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDuration
protected Duration parseDuration(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDurationProperties
protected void parseDurationProperties(com.google.gson.JsonObject json, Duration res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRange
protected Range parseRange(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRangeProperties
protected void parseRangeProperties(com.google.gson.JsonObject json, Range res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRelatedArtifact
protected RelatedArtifact parseRelatedArtifact(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRelatedArtifactProperties
protected void parseRelatedArtifactProperties(com.google.gson.JsonObject json, RelatedArtifact res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAnnotation
protected Annotation parseAnnotation(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAnnotationProperties
protected void parseAnnotationProperties(com.google.gson.JsonObject json, Annotation res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseProductShelfLife
protected ProductShelfLife parseProductShelfLife(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseProductShelfLifeProperties
protected void parseProductShelfLifeProperties(com.google.gson.JsonObject json, ProductShelfLife res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContactDetail
protected ContactDetail parseContactDetail(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContactDetailProperties
protected void parseContactDetailProperties(com.google.gson.JsonObject json, ContactDetail res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseUsageContext
protected UsageContext parseUsageContext(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseUsageContextProperties
protected void parseUsageContextProperties(com.google.gson.JsonObject json, UsageContext res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExpression
protected Expression parseExpression(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExpressionProperties
protected void parseExpressionProperties(com.google.gson.JsonObject json, Expression res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSignature
protected Signature parseSignature(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSignatureProperties
protected void parseSignatureProperties(com.google.gson.JsonObject json, Signature res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTiming
protected Timing parseTiming(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTimingProperties
protected void parseTimingProperties(com.google.gson.JsonObject json, Timing res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTimingTimingRepeatComponent
protected Timing.TimingRepeatComponent parseTimingTimingRepeatComponent(com.google.gson.JsonObject json, Timing owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTimingTimingRepeatComponentProperties
protected void parseTimingTimingRepeatComponentProperties(com.google.gson.JsonObject json, Timing owner, Timing.TimingRepeatComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseProdCharacteristic
protected ProdCharacteristic parseProdCharacteristic(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseProdCharacteristicProperties
protected void parseProdCharacteristicProperties(com.google.gson.JsonObject json, ProdCharacteristic res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCodeableConcept
protected CodeableConcept parseCodeableConcept(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCodeableConceptProperties
protected void parseCodeableConceptProperties(com.google.gson.JsonObject json, CodeableConcept res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseParameterDefinition
protected ParameterDefinition parseParameterDefinition(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseParameterDefinitionProperties
protected void parseParameterDefinitionProperties(com.google.gson.JsonObject json, ParameterDefinition res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseElementDefinition
protected ElementDefinition parseElementDefinition(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseElementDefinitionProperties
protected void parseElementDefinitionProperties(com.google.gson.JsonObject json, ElementDefinition res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseElementDefinitionElementDefinitionSlicingComponent
protected ElementDefinition.ElementDefinitionSlicingComponent parseElementDefinitionElementDefinitionSlicingComponent(com.google.gson.JsonObject json, ElementDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseElementDefinitionElementDefinitionSlicingComponentProperties
protected void parseElementDefinitionElementDefinitionSlicingComponentProperties(com.google.gson.JsonObject json, ElementDefinition owner, ElementDefinition.ElementDefinitionSlicingComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseElementDefinitionElementDefinitionSlicingDiscriminatorComponent
protected ElementDefinition.ElementDefinitionSlicingDiscriminatorComponent parseElementDefinitionElementDefinitionSlicingDiscriminatorComponent(com.google.gson.JsonObject json, ElementDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseElementDefinitionElementDefinitionSlicingDiscriminatorComponentProperties
protected void parseElementDefinitionElementDefinitionSlicingDiscriminatorComponentProperties(com.google.gson.JsonObject json, ElementDefinition owner, ElementDefinition.ElementDefinitionSlicingDiscriminatorComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseElementDefinitionElementDefinitionBaseComponent
protected ElementDefinition.ElementDefinitionBaseComponent parseElementDefinitionElementDefinitionBaseComponent(com.google.gson.JsonObject json, ElementDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseElementDefinitionElementDefinitionBaseComponentProperties
protected void parseElementDefinitionElementDefinitionBaseComponentProperties(com.google.gson.JsonObject json, ElementDefinition owner, ElementDefinition.ElementDefinitionBaseComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseElementDefinitionTypeRefComponent
protected ElementDefinition.TypeRefComponent parseElementDefinitionTypeRefComponent(com.google.gson.JsonObject json, ElementDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseElementDefinitionTypeRefComponentProperties
protected void parseElementDefinitionTypeRefComponentProperties(com.google.gson.JsonObject json, ElementDefinition owner, ElementDefinition.TypeRefComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseElementDefinitionElementDefinitionExampleComponent
protected ElementDefinition.ElementDefinitionExampleComponent parseElementDefinitionElementDefinitionExampleComponent(com.google.gson.JsonObject json, ElementDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseElementDefinitionElementDefinitionExampleComponentProperties
protected void parseElementDefinitionElementDefinitionExampleComponentProperties(com.google.gson.JsonObject json, ElementDefinition owner, ElementDefinition.ElementDefinitionExampleComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseElementDefinitionElementDefinitionConstraintComponent
protected ElementDefinition.ElementDefinitionConstraintComponent parseElementDefinitionElementDefinitionConstraintComponent(com.google.gson.JsonObject json, ElementDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseElementDefinitionElementDefinitionConstraintComponentProperties
protected void parseElementDefinitionElementDefinitionConstraintComponentProperties(com.google.gson.JsonObject json, ElementDefinition owner, ElementDefinition.ElementDefinitionConstraintComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseElementDefinitionElementDefinitionBindingComponent
protected ElementDefinition.ElementDefinitionBindingComponent parseElementDefinitionElementDefinitionBindingComponent(com.google.gson.JsonObject json, ElementDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseElementDefinitionElementDefinitionBindingComponentProperties
protected void parseElementDefinitionElementDefinitionBindingComponentProperties(com.google.gson.JsonObject json, ElementDefinition owner, ElementDefinition.ElementDefinitionBindingComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseElementDefinitionElementDefinitionMappingComponent
protected ElementDefinition.ElementDefinitionMappingComponent parseElementDefinitionElementDefinitionMappingComponent(com.google.gson.JsonObject json, ElementDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseElementDefinitionElementDefinitionMappingComponentProperties
protected void parseElementDefinitionElementDefinitionMappingComponentProperties(com.google.gson.JsonObject json, ElementDefinition owner, ElementDefinition.ElementDefinitionMappingComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDomainResourceProperties
protected void parseDomainResourceProperties(com.google.gson.JsonObject json, DomainResource res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseParameters
protected Parameters parseParameters(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseParametersProperties
protected void parseParametersProperties(com.google.gson.JsonObject json, Parameters res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseParametersParametersParameterComponent
protected Parameters.ParametersParameterComponent parseParametersParametersParameterComponent(com.google.gson.JsonObject json, Parameters owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseParametersParametersParameterComponentProperties
protected void parseParametersParametersParameterComponentProperties(com.google.gson.JsonObject json, Parameters owner, Parameters.ParametersParameterComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseResourceProperties
protected void parseResourceProperties(com.google.gson.JsonObject json, Resource res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAccount
protected Account parseAccount(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAccountProperties
protected void parseAccountProperties(com.google.gson.JsonObject json, Account res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAccountCoverageComponent
protected Account.CoverageComponent parseAccountCoverageComponent(com.google.gson.JsonObject json, Account owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAccountCoverageComponentProperties
protected void parseAccountCoverageComponentProperties(com.google.gson.JsonObject json, Account owner, Account.CoverageComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAccountGuarantorComponent
protected Account.GuarantorComponent parseAccountGuarantorComponent(com.google.gson.JsonObject json, Account owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAccountGuarantorComponentProperties
protected void parseAccountGuarantorComponentProperties(com.google.gson.JsonObject json, Account owner, Account.GuarantorComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseActivityDefinition
protected ActivityDefinition parseActivityDefinition(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseActivityDefinitionProperties
protected void parseActivityDefinitionProperties(com.google.gson.JsonObject json, ActivityDefinition res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseActivityDefinitionActivityDefinitionParticipantComponent
protected ActivityDefinition.ActivityDefinitionParticipantComponent parseActivityDefinitionActivityDefinitionParticipantComponent(com.google.gson.JsonObject json, ActivityDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseActivityDefinitionActivityDefinitionParticipantComponentProperties
protected void parseActivityDefinitionActivityDefinitionParticipantComponentProperties(com.google.gson.JsonObject json, ActivityDefinition owner, ActivityDefinition.ActivityDefinitionParticipantComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseActivityDefinitionActivityDefinitionDynamicValueComponent
protected ActivityDefinition.ActivityDefinitionDynamicValueComponent parseActivityDefinitionActivityDefinitionDynamicValueComponent(com.google.gson.JsonObject json, ActivityDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseActivityDefinitionActivityDefinitionDynamicValueComponentProperties
protected void parseActivityDefinitionActivityDefinitionDynamicValueComponentProperties(com.google.gson.JsonObject json, ActivityDefinition owner, ActivityDefinition.ActivityDefinitionDynamicValueComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAdverseEvent
protected AdverseEvent parseAdverseEvent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAdverseEventProperties
protected void parseAdverseEventProperties(com.google.gson.JsonObject json, AdverseEvent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAdverseEventAdverseEventSuspectEntityComponent
protected AdverseEvent.AdverseEventSuspectEntityComponent parseAdverseEventAdverseEventSuspectEntityComponent(com.google.gson.JsonObject json, AdverseEvent owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAdverseEventAdverseEventSuspectEntityComponentProperties
protected void parseAdverseEventAdverseEventSuspectEntityComponentProperties(com.google.gson.JsonObject json, AdverseEvent owner, AdverseEvent.AdverseEventSuspectEntityComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAdverseEventAdverseEventSuspectEntityCausalityComponent
protected AdverseEvent.AdverseEventSuspectEntityCausalityComponent parseAdverseEventAdverseEventSuspectEntityCausalityComponent(com.google.gson.JsonObject json, AdverseEvent owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAdverseEventAdverseEventSuspectEntityCausalityComponentProperties
protected void parseAdverseEventAdverseEventSuspectEntityCausalityComponentProperties(com.google.gson.JsonObject json, AdverseEvent owner, AdverseEvent.AdverseEventSuspectEntityCausalityComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAllergyIntolerance
protected AllergyIntolerance parseAllergyIntolerance(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAllergyIntoleranceProperties
protected void parseAllergyIntoleranceProperties(com.google.gson.JsonObject json, AllergyIntolerance res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAllergyIntoleranceAllergyIntoleranceReactionComponent
protected AllergyIntolerance.AllergyIntoleranceReactionComponent parseAllergyIntoleranceAllergyIntoleranceReactionComponent(com.google.gson.JsonObject json, AllergyIntolerance owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAllergyIntoleranceAllergyIntoleranceReactionComponentProperties
protected void parseAllergyIntoleranceAllergyIntoleranceReactionComponentProperties(com.google.gson.JsonObject json, AllergyIntolerance owner, AllergyIntolerance.AllergyIntoleranceReactionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAppointment
protected Appointment parseAppointment(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAppointmentProperties
protected void parseAppointmentProperties(com.google.gson.JsonObject json, Appointment res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAppointmentAppointmentParticipantComponent
protected Appointment.AppointmentParticipantComponent parseAppointmentAppointmentParticipantComponent(com.google.gson.JsonObject json, Appointment owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAppointmentAppointmentParticipantComponentProperties
protected void parseAppointmentAppointmentParticipantComponentProperties(com.google.gson.JsonObject json, Appointment owner, Appointment.AppointmentParticipantComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAppointmentResponse
protected AppointmentResponse parseAppointmentResponse(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAppointmentResponseProperties
protected void parseAppointmentResponseProperties(com.google.gson.JsonObject json, AppointmentResponse res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAuditEvent
protected AuditEvent parseAuditEvent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAuditEventProperties
protected void parseAuditEventProperties(com.google.gson.JsonObject json, AuditEvent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAuditEventAuditEventAgentComponent
protected AuditEvent.AuditEventAgentComponent parseAuditEventAuditEventAgentComponent(com.google.gson.JsonObject json, AuditEvent owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAuditEventAuditEventAgentComponentProperties
protected void parseAuditEventAuditEventAgentComponentProperties(com.google.gson.JsonObject json, AuditEvent owner, AuditEvent.AuditEventAgentComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAuditEventAuditEventAgentNetworkComponent
protected AuditEvent.AuditEventAgentNetworkComponent parseAuditEventAuditEventAgentNetworkComponent(com.google.gson.JsonObject json, AuditEvent owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAuditEventAuditEventAgentNetworkComponentProperties
protected void parseAuditEventAuditEventAgentNetworkComponentProperties(com.google.gson.JsonObject json, AuditEvent owner, AuditEvent.AuditEventAgentNetworkComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAuditEventAuditEventSourceComponent
protected AuditEvent.AuditEventSourceComponent parseAuditEventAuditEventSourceComponent(com.google.gson.JsonObject json, AuditEvent owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAuditEventAuditEventSourceComponentProperties
protected void parseAuditEventAuditEventSourceComponentProperties(com.google.gson.JsonObject json, AuditEvent owner, AuditEvent.AuditEventSourceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAuditEventAuditEventEntityComponent
protected AuditEvent.AuditEventEntityComponent parseAuditEventAuditEventEntityComponent(com.google.gson.JsonObject json, AuditEvent owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAuditEventAuditEventEntityComponentProperties
protected void parseAuditEventAuditEventEntityComponentProperties(com.google.gson.JsonObject json, AuditEvent owner, AuditEvent.AuditEventEntityComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAuditEventAuditEventEntityDetailComponent
protected AuditEvent.AuditEventEntityDetailComponent parseAuditEventAuditEventEntityDetailComponent(com.google.gson.JsonObject json, AuditEvent owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAuditEventAuditEventEntityDetailComponentProperties
protected void parseAuditEventAuditEventEntityDetailComponentProperties(com.google.gson.JsonObject json, AuditEvent owner, AuditEvent.AuditEventEntityDetailComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBasic
protected Basic parseBasic(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBasicProperties
protected void parseBasicProperties(com.google.gson.JsonObject json, Basic res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBinary
protected Binary parseBinary(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBinaryProperties
protected void parseBinaryProperties(com.google.gson.JsonObject json, Binary res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBiologicallyDerivedProduct
protected BiologicallyDerivedProduct parseBiologicallyDerivedProduct(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBiologicallyDerivedProductProperties
protected void parseBiologicallyDerivedProductProperties(com.google.gson.JsonObject json, BiologicallyDerivedProduct res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBiologicallyDerivedProductBiologicallyDerivedProductCollectionComponent
protected BiologicallyDerivedProduct.BiologicallyDerivedProductCollectionComponent parseBiologicallyDerivedProductBiologicallyDerivedProductCollectionComponent(com.google.gson.JsonObject json, BiologicallyDerivedProduct owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBiologicallyDerivedProductBiologicallyDerivedProductCollectionComponentProperties
protected void parseBiologicallyDerivedProductBiologicallyDerivedProductCollectionComponentProperties(com.google.gson.JsonObject json, BiologicallyDerivedProduct owner, BiologicallyDerivedProduct.BiologicallyDerivedProductCollectionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBiologicallyDerivedProductBiologicallyDerivedProductProcessingComponent
protected BiologicallyDerivedProduct.BiologicallyDerivedProductProcessingComponent parseBiologicallyDerivedProductBiologicallyDerivedProductProcessingComponent(com.google.gson.JsonObject json, BiologicallyDerivedProduct owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBiologicallyDerivedProductBiologicallyDerivedProductProcessingComponentProperties
protected void parseBiologicallyDerivedProductBiologicallyDerivedProductProcessingComponentProperties(com.google.gson.JsonObject json, BiologicallyDerivedProduct owner, BiologicallyDerivedProduct.BiologicallyDerivedProductProcessingComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBiologicallyDerivedProductBiologicallyDerivedProductManipulationComponent
protected BiologicallyDerivedProduct.BiologicallyDerivedProductManipulationComponent parseBiologicallyDerivedProductBiologicallyDerivedProductManipulationComponent(com.google.gson.JsonObject json, BiologicallyDerivedProduct owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBiologicallyDerivedProductBiologicallyDerivedProductManipulationComponentProperties
protected void parseBiologicallyDerivedProductBiologicallyDerivedProductManipulationComponentProperties(com.google.gson.JsonObject json, BiologicallyDerivedProduct owner, BiologicallyDerivedProduct.BiologicallyDerivedProductManipulationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBiologicallyDerivedProductBiologicallyDerivedProductStorageComponent
protected BiologicallyDerivedProduct.BiologicallyDerivedProductStorageComponent parseBiologicallyDerivedProductBiologicallyDerivedProductStorageComponent(com.google.gson.JsonObject json, BiologicallyDerivedProduct owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBiologicallyDerivedProductBiologicallyDerivedProductStorageComponentProperties
protected void parseBiologicallyDerivedProductBiologicallyDerivedProductStorageComponentProperties(com.google.gson.JsonObject json, BiologicallyDerivedProduct owner, BiologicallyDerivedProduct.BiologicallyDerivedProductStorageComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBodyStructure
protected BodyStructure parseBodyStructure(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBodyStructureProperties
protected void parseBodyStructureProperties(com.google.gson.JsonObject json, BodyStructure res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBundle
protected Bundle parseBundle(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBundleProperties
protected void parseBundleProperties(com.google.gson.JsonObject json, Bundle res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBundleBundleLinkComponent
protected Bundle.BundleLinkComponent parseBundleBundleLinkComponent(com.google.gson.JsonObject json, Bundle owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBundleBundleLinkComponentProperties
protected void parseBundleBundleLinkComponentProperties(com.google.gson.JsonObject json, Bundle owner, Bundle.BundleLinkComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBundleBundleEntryComponent
protected Bundle.BundleEntryComponent parseBundleBundleEntryComponent(com.google.gson.JsonObject json, Bundle owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBundleBundleEntryComponentProperties
protected void parseBundleBundleEntryComponentProperties(com.google.gson.JsonObject json, Bundle owner, Bundle.BundleEntryComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBundleBundleEntrySearchComponent
protected Bundle.BundleEntrySearchComponent parseBundleBundleEntrySearchComponent(com.google.gson.JsonObject json, Bundle owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBundleBundleEntrySearchComponentProperties
protected void parseBundleBundleEntrySearchComponentProperties(com.google.gson.JsonObject json, Bundle owner, Bundle.BundleEntrySearchComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBundleBundleEntryRequestComponent
protected Bundle.BundleEntryRequestComponent parseBundleBundleEntryRequestComponent(com.google.gson.JsonObject json, Bundle owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBundleBundleEntryRequestComponentProperties
protected void parseBundleBundleEntryRequestComponentProperties(com.google.gson.JsonObject json, Bundle owner, Bundle.BundleEntryRequestComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBundleBundleEntryResponseComponent
protected Bundle.BundleEntryResponseComponent parseBundleBundleEntryResponseComponent(com.google.gson.JsonObject json, Bundle owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBundleBundleEntryResponseComponentProperties
protected void parseBundleBundleEntryResponseComponentProperties(com.google.gson.JsonObject json, Bundle owner, Bundle.BundleEntryResponseComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatement
protected CapabilityStatement parseCapabilityStatement(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementProperties
protected void parseCapabilityStatementProperties(com.google.gson.JsonObject json, CapabilityStatement res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementCapabilityStatementSoftwareComponent
protected CapabilityStatement.CapabilityStatementSoftwareComponent parseCapabilityStatementCapabilityStatementSoftwareComponent(com.google.gson.JsonObject json, CapabilityStatement owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementCapabilityStatementSoftwareComponentProperties
protected void parseCapabilityStatementCapabilityStatementSoftwareComponentProperties(com.google.gson.JsonObject json, CapabilityStatement owner, CapabilityStatement.CapabilityStatementSoftwareComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementCapabilityStatementImplementationComponent
protected CapabilityStatement.CapabilityStatementImplementationComponent parseCapabilityStatementCapabilityStatementImplementationComponent(com.google.gson.JsonObject json, CapabilityStatement owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementCapabilityStatementImplementationComponentProperties
protected void parseCapabilityStatementCapabilityStatementImplementationComponentProperties(com.google.gson.JsonObject json, CapabilityStatement owner, CapabilityStatement.CapabilityStatementImplementationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementCapabilityStatementRestComponent
protected CapabilityStatement.CapabilityStatementRestComponent parseCapabilityStatementCapabilityStatementRestComponent(com.google.gson.JsonObject json, CapabilityStatement owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementCapabilityStatementRestComponentProperties
protected void parseCapabilityStatementCapabilityStatementRestComponentProperties(com.google.gson.JsonObject json, CapabilityStatement owner, CapabilityStatement.CapabilityStatementRestComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementCapabilityStatementRestSecurityComponent
protected CapabilityStatement.CapabilityStatementRestSecurityComponent parseCapabilityStatementCapabilityStatementRestSecurityComponent(com.google.gson.JsonObject json, CapabilityStatement owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementCapabilityStatementRestSecurityComponentProperties
protected void parseCapabilityStatementCapabilityStatementRestSecurityComponentProperties(com.google.gson.JsonObject json, CapabilityStatement owner, CapabilityStatement.CapabilityStatementRestSecurityComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementCapabilityStatementRestResourceComponent
protected CapabilityStatement.CapabilityStatementRestResourceComponent parseCapabilityStatementCapabilityStatementRestResourceComponent(com.google.gson.JsonObject json, CapabilityStatement owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementCapabilityStatementRestResourceComponentProperties
protected void parseCapabilityStatementCapabilityStatementRestResourceComponentProperties(com.google.gson.JsonObject json, CapabilityStatement owner, CapabilityStatement.CapabilityStatementRestResourceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementResourceInteractionComponent
protected CapabilityStatement.ResourceInteractionComponent parseCapabilityStatementResourceInteractionComponent(com.google.gson.JsonObject json, CapabilityStatement owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementResourceInteractionComponentProperties
protected void parseCapabilityStatementResourceInteractionComponentProperties(com.google.gson.JsonObject json, CapabilityStatement owner, CapabilityStatement.ResourceInteractionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementCapabilityStatementRestResourceSearchParamComponent
protected CapabilityStatement.CapabilityStatementRestResourceSearchParamComponent parseCapabilityStatementCapabilityStatementRestResourceSearchParamComponent(com.google.gson.JsonObject json, CapabilityStatement owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementCapabilityStatementRestResourceSearchParamComponentProperties
protected void parseCapabilityStatementCapabilityStatementRestResourceSearchParamComponentProperties(com.google.gson.JsonObject json, CapabilityStatement owner, CapabilityStatement.CapabilityStatementRestResourceSearchParamComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementCapabilityStatementRestResourceOperationComponent
protected CapabilityStatement.CapabilityStatementRestResourceOperationComponent parseCapabilityStatementCapabilityStatementRestResourceOperationComponent(com.google.gson.JsonObject json, CapabilityStatement owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementCapabilityStatementRestResourceOperationComponentProperties
protected void parseCapabilityStatementCapabilityStatementRestResourceOperationComponentProperties(com.google.gson.JsonObject json, CapabilityStatement owner, CapabilityStatement.CapabilityStatementRestResourceOperationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementSystemInteractionComponent
protected CapabilityStatement.SystemInteractionComponent parseCapabilityStatementSystemInteractionComponent(com.google.gson.JsonObject json, CapabilityStatement owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementSystemInteractionComponentProperties
protected void parseCapabilityStatementSystemInteractionComponentProperties(com.google.gson.JsonObject json, CapabilityStatement owner, CapabilityStatement.SystemInteractionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementCapabilityStatementMessagingComponent
protected CapabilityStatement.CapabilityStatementMessagingComponent parseCapabilityStatementCapabilityStatementMessagingComponent(com.google.gson.JsonObject json, CapabilityStatement owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementCapabilityStatementMessagingComponentProperties
protected void parseCapabilityStatementCapabilityStatementMessagingComponentProperties(com.google.gson.JsonObject json, CapabilityStatement owner, CapabilityStatement.CapabilityStatementMessagingComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementCapabilityStatementMessagingEndpointComponent
protected CapabilityStatement.CapabilityStatementMessagingEndpointComponent parseCapabilityStatementCapabilityStatementMessagingEndpointComponent(com.google.gson.JsonObject json, CapabilityStatement owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementCapabilityStatementMessagingEndpointComponentProperties
protected void parseCapabilityStatementCapabilityStatementMessagingEndpointComponentProperties(com.google.gson.JsonObject json, CapabilityStatement owner, CapabilityStatement.CapabilityStatementMessagingEndpointComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementCapabilityStatementMessagingSupportedMessageComponent
protected CapabilityStatement.CapabilityStatementMessagingSupportedMessageComponent parseCapabilityStatementCapabilityStatementMessagingSupportedMessageComponent(com.google.gson.JsonObject json, CapabilityStatement owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementCapabilityStatementMessagingSupportedMessageComponentProperties
protected void parseCapabilityStatementCapabilityStatementMessagingSupportedMessageComponentProperties(com.google.gson.JsonObject json, CapabilityStatement owner, CapabilityStatement.CapabilityStatementMessagingSupportedMessageComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementCapabilityStatementDocumentComponent
protected CapabilityStatement.CapabilityStatementDocumentComponent parseCapabilityStatementCapabilityStatementDocumentComponent(com.google.gson.JsonObject json, CapabilityStatement owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementCapabilityStatementDocumentComponentProperties
protected void parseCapabilityStatementCapabilityStatementDocumentComponentProperties(com.google.gson.JsonObject json, CapabilityStatement owner, CapabilityStatement.CapabilityStatementDocumentComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCarePlan
protected CarePlan parseCarePlan(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCarePlanProperties
protected void parseCarePlanProperties(com.google.gson.JsonObject json, CarePlan res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCarePlanCarePlanActivityComponent
protected CarePlan.CarePlanActivityComponent parseCarePlanCarePlanActivityComponent(com.google.gson.JsonObject json, CarePlan owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCarePlanCarePlanActivityComponentProperties
protected void parseCarePlanCarePlanActivityComponentProperties(com.google.gson.JsonObject json, CarePlan owner, CarePlan.CarePlanActivityComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCarePlanCarePlanActivityDetailComponent
protected CarePlan.CarePlanActivityDetailComponent parseCarePlanCarePlanActivityDetailComponent(com.google.gson.JsonObject json, CarePlan owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCarePlanCarePlanActivityDetailComponentProperties
protected void parseCarePlanCarePlanActivityDetailComponentProperties(com.google.gson.JsonObject json, CarePlan owner, CarePlan.CarePlanActivityDetailComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCareTeam
protected CareTeam parseCareTeam(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCareTeamProperties
protected void parseCareTeamProperties(com.google.gson.JsonObject json, CareTeam res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCareTeamCareTeamParticipantComponent
protected CareTeam.CareTeamParticipantComponent parseCareTeamCareTeamParticipantComponent(com.google.gson.JsonObject json, CareTeam owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCareTeamCareTeamParticipantComponentProperties
protected void parseCareTeamCareTeamParticipantComponentProperties(com.google.gson.JsonObject json, CareTeam owner, CareTeam.CareTeamParticipantComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCatalogEntry
protected CatalogEntry parseCatalogEntry(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCatalogEntryProperties
protected void parseCatalogEntryProperties(com.google.gson.JsonObject json, CatalogEntry res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCatalogEntryCatalogEntryRelatedEntryComponent
protected CatalogEntry.CatalogEntryRelatedEntryComponent parseCatalogEntryCatalogEntryRelatedEntryComponent(com.google.gson.JsonObject json, CatalogEntry owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCatalogEntryCatalogEntryRelatedEntryComponentProperties
protected void parseCatalogEntryCatalogEntryRelatedEntryComponentProperties(com.google.gson.JsonObject json, CatalogEntry owner, CatalogEntry.CatalogEntryRelatedEntryComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseChargeItem
protected ChargeItem parseChargeItem(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseChargeItemProperties
protected void parseChargeItemProperties(com.google.gson.JsonObject json, ChargeItem res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseChargeItemChargeItemPerformerComponent
protected ChargeItem.ChargeItemPerformerComponent parseChargeItemChargeItemPerformerComponent(com.google.gson.JsonObject json, ChargeItem owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseChargeItemChargeItemPerformerComponentProperties
protected void parseChargeItemChargeItemPerformerComponentProperties(com.google.gson.JsonObject json, ChargeItem owner, ChargeItem.ChargeItemPerformerComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseChargeItemDefinition
protected ChargeItemDefinition parseChargeItemDefinition(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseChargeItemDefinitionProperties
protected void parseChargeItemDefinitionProperties(com.google.gson.JsonObject json, ChargeItemDefinition res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseChargeItemDefinitionChargeItemDefinitionApplicabilityComponent
protected ChargeItemDefinition.ChargeItemDefinitionApplicabilityComponent parseChargeItemDefinitionChargeItemDefinitionApplicabilityComponent(com.google.gson.JsonObject json, ChargeItemDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseChargeItemDefinitionChargeItemDefinitionApplicabilityComponentProperties
protected void parseChargeItemDefinitionChargeItemDefinitionApplicabilityComponentProperties(com.google.gson.JsonObject json, ChargeItemDefinition owner, ChargeItemDefinition.ChargeItemDefinitionApplicabilityComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseChargeItemDefinitionChargeItemDefinitionPropertyGroupComponent
protected ChargeItemDefinition.ChargeItemDefinitionPropertyGroupComponent parseChargeItemDefinitionChargeItemDefinitionPropertyGroupComponent(com.google.gson.JsonObject json, ChargeItemDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseChargeItemDefinitionChargeItemDefinitionPropertyGroupComponentProperties
protected void parseChargeItemDefinitionChargeItemDefinitionPropertyGroupComponentProperties(com.google.gson.JsonObject json, ChargeItemDefinition owner, ChargeItemDefinition.ChargeItemDefinitionPropertyGroupComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseChargeItemDefinitionChargeItemDefinitionPropertyGroupPriceComponentComponent
protected ChargeItemDefinition.ChargeItemDefinitionPropertyGroupPriceComponentComponent parseChargeItemDefinitionChargeItemDefinitionPropertyGroupPriceComponentComponent(com.google.gson.JsonObject json, ChargeItemDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseChargeItemDefinitionChargeItemDefinitionPropertyGroupPriceComponentComponentProperties
protected void parseChargeItemDefinitionChargeItemDefinitionPropertyGroupPriceComponentComponentProperties(com.google.gson.JsonObject json, ChargeItemDefinition owner, ChargeItemDefinition.ChargeItemDefinitionPropertyGroupPriceComponentComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaim
protected Claim parseClaim(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimProperties
protected void parseClaimProperties(com.google.gson.JsonObject json, Claim res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimRelatedClaimComponent
protected Claim.RelatedClaimComponent parseClaimRelatedClaimComponent(com.google.gson.JsonObject json, Claim owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimRelatedClaimComponentProperties
protected void parseClaimRelatedClaimComponentProperties(com.google.gson.JsonObject json, Claim owner, Claim.RelatedClaimComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimPayeeComponent
protected Claim.PayeeComponent parseClaimPayeeComponent(com.google.gson.JsonObject json, Claim owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimPayeeComponentProperties
protected void parseClaimPayeeComponentProperties(com.google.gson.JsonObject json, Claim owner, Claim.PayeeComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimCareTeamComponent
protected Claim.CareTeamComponent parseClaimCareTeamComponent(com.google.gson.JsonObject json, Claim owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimCareTeamComponentProperties
protected void parseClaimCareTeamComponentProperties(com.google.gson.JsonObject json, Claim owner, Claim.CareTeamComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimSupportingInformationComponent
protected Claim.SupportingInformationComponent parseClaimSupportingInformationComponent(com.google.gson.JsonObject json, Claim owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimSupportingInformationComponentProperties
protected void parseClaimSupportingInformationComponentProperties(com.google.gson.JsonObject json, Claim owner, Claim.SupportingInformationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimDiagnosisComponent
protected Claim.DiagnosisComponent parseClaimDiagnosisComponent(com.google.gson.JsonObject json, Claim owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimDiagnosisComponentProperties
protected void parseClaimDiagnosisComponentProperties(com.google.gson.JsonObject json, Claim owner, Claim.DiagnosisComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimProcedureComponent
protected Claim.ProcedureComponent parseClaimProcedureComponent(com.google.gson.JsonObject json, Claim owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimProcedureComponentProperties
protected void parseClaimProcedureComponentProperties(com.google.gson.JsonObject json, Claim owner, Claim.ProcedureComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimInsuranceComponent
protected Claim.InsuranceComponent parseClaimInsuranceComponent(com.google.gson.JsonObject json, Claim owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimInsuranceComponentProperties
protected void parseClaimInsuranceComponentProperties(com.google.gson.JsonObject json, Claim owner, Claim.InsuranceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimAccidentComponent
protected Claim.AccidentComponent parseClaimAccidentComponent(com.google.gson.JsonObject json, Claim owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimAccidentComponentProperties
protected void parseClaimAccidentComponentProperties(com.google.gson.JsonObject json, Claim owner, Claim.AccidentComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimItemComponent
protected Claim.ItemComponent parseClaimItemComponent(com.google.gson.JsonObject json, Claim owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimItemComponentProperties
protected void parseClaimItemComponentProperties(com.google.gson.JsonObject json, Claim owner, Claim.ItemComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimDetailComponent
protected Claim.DetailComponent parseClaimDetailComponent(com.google.gson.JsonObject json, Claim owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimDetailComponentProperties
protected void parseClaimDetailComponentProperties(com.google.gson.JsonObject json, Claim owner, Claim.DetailComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimSubDetailComponent
protected Claim.SubDetailComponent parseClaimSubDetailComponent(com.google.gson.JsonObject json, Claim owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimSubDetailComponentProperties
protected void parseClaimSubDetailComponentProperties(com.google.gson.JsonObject json, Claim owner, Claim.SubDetailComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponse
protected ClaimResponse parseClaimResponse(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponseProperties
protected void parseClaimResponseProperties(com.google.gson.JsonObject json, ClaimResponse res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponseItemComponent
protected ClaimResponse.ItemComponent parseClaimResponseItemComponent(com.google.gson.JsonObject json, ClaimResponse owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponseItemComponentProperties
protected void parseClaimResponseItemComponentProperties(com.google.gson.JsonObject json, ClaimResponse owner, ClaimResponse.ItemComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponseAdjudicationComponent
protected ClaimResponse.AdjudicationComponent parseClaimResponseAdjudicationComponent(com.google.gson.JsonObject json, ClaimResponse owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponseAdjudicationComponentProperties
protected void parseClaimResponseAdjudicationComponentProperties(com.google.gson.JsonObject json, ClaimResponse owner, ClaimResponse.AdjudicationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponseItemDetailComponent
protected ClaimResponse.ItemDetailComponent parseClaimResponseItemDetailComponent(com.google.gson.JsonObject json, ClaimResponse owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponseItemDetailComponentProperties
protected void parseClaimResponseItemDetailComponentProperties(com.google.gson.JsonObject json, ClaimResponse owner, ClaimResponse.ItemDetailComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponseSubDetailComponent
protected ClaimResponse.SubDetailComponent parseClaimResponseSubDetailComponent(com.google.gson.JsonObject json, ClaimResponse owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponseSubDetailComponentProperties
protected void parseClaimResponseSubDetailComponentProperties(com.google.gson.JsonObject json, ClaimResponse owner, ClaimResponse.SubDetailComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponseAddedItemComponent
protected ClaimResponse.AddedItemComponent parseClaimResponseAddedItemComponent(com.google.gson.JsonObject json, ClaimResponse owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponseAddedItemComponentProperties
protected void parseClaimResponseAddedItemComponentProperties(com.google.gson.JsonObject json, ClaimResponse owner, ClaimResponse.AddedItemComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponseAddedItemDetailComponent
protected ClaimResponse.AddedItemDetailComponent parseClaimResponseAddedItemDetailComponent(com.google.gson.JsonObject json, ClaimResponse owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponseAddedItemDetailComponentProperties
protected void parseClaimResponseAddedItemDetailComponentProperties(com.google.gson.JsonObject json, ClaimResponse owner, ClaimResponse.AddedItemDetailComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponseAddedItemSubDetailComponent
protected ClaimResponse.AddedItemSubDetailComponent parseClaimResponseAddedItemSubDetailComponent(com.google.gson.JsonObject json, ClaimResponse owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponseAddedItemSubDetailComponentProperties
protected void parseClaimResponseAddedItemSubDetailComponentProperties(com.google.gson.JsonObject json, ClaimResponse owner, ClaimResponse.AddedItemSubDetailComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponseTotalComponent
protected ClaimResponse.TotalComponent parseClaimResponseTotalComponent(com.google.gson.JsonObject json, ClaimResponse owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponseTotalComponentProperties
protected void parseClaimResponseTotalComponentProperties(com.google.gson.JsonObject json, ClaimResponse owner, ClaimResponse.TotalComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponsePaymentComponent
protected ClaimResponse.PaymentComponent parseClaimResponsePaymentComponent(com.google.gson.JsonObject json, ClaimResponse owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponsePaymentComponentProperties
protected void parseClaimResponsePaymentComponentProperties(com.google.gson.JsonObject json, ClaimResponse owner, ClaimResponse.PaymentComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponseNoteComponent
protected ClaimResponse.NoteComponent parseClaimResponseNoteComponent(com.google.gson.JsonObject json, ClaimResponse owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponseNoteComponentProperties
protected void parseClaimResponseNoteComponentProperties(com.google.gson.JsonObject json, ClaimResponse owner, ClaimResponse.NoteComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponseInsuranceComponent
protected ClaimResponse.InsuranceComponent parseClaimResponseInsuranceComponent(com.google.gson.JsonObject json, ClaimResponse owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponseInsuranceComponentProperties
protected void parseClaimResponseInsuranceComponentProperties(com.google.gson.JsonObject json, ClaimResponse owner, ClaimResponse.InsuranceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponseErrorComponent
protected ClaimResponse.ErrorComponent parseClaimResponseErrorComponent(com.google.gson.JsonObject json, ClaimResponse owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponseErrorComponentProperties
protected void parseClaimResponseErrorComponentProperties(com.google.gson.JsonObject json, ClaimResponse owner, ClaimResponse.ErrorComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClinicalImpression
protected ClinicalImpression parseClinicalImpression(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClinicalImpressionProperties
protected void parseClinicalImpressionProperties(com.google.gson.JsonObject json, ClinicalImpression res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClinicalImpressionClinicalImpressionInvestigationComponent
protected ClinicalImpression.ClinicalImpressionInvestigationComponent parseClinicalImpressionClinicalImpressionInvestigationComponent(com.google.gson.JsonObject json, ClinicalImpression owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClinicalImpressionClinicalImpressionInvestigationComponentProperties
protected void parseClinicalImpressionClinicalImpressionInvestigationComponentProperties(com.google.gson.JsonObject json, ClinicalImpression owner, ClinicalImpression.ClinicalImpressionInvestigationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClinicalImpressionClinicalImpressionFindingComponent
protected ClinicalImpression.ClinicalImpressionFindingComponent parseClinicalImpressionClinicalImpressionFindingComponent(com.google.gson.JsonObject json, ClinicalImpression owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClinicalImpressionClinicalImpressionFindingComponentProperties
protected void parseClinicalImpressionClinicalImpressionFindingComponentProperties(com.google.gson.JsonObject json, ClinicalImpression owner, ClinicalImpression.ClinicalImpressionFindingComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCodeSystem
protected CodeSystem parseCodeSystem(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCodeSystemProperties
protected void parseCodeSystemProperties(com.google.gson.JsonObject json, CodeSystem res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCodeSystemCodeSystemFilterComponent
protected CodeSystem.CodeSystemFilterComponent parseCodeSystemCodeSystemFilterComponent(com.google.gson.JsonObject json, CodeSystem owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCodeSystemCodeSystemFilterComponentProperties
protected void parseCodeSystemCodeSystemFilterComponentProperties(com.google.gson.JsonObject json, CodeSystem owner, CodeSystem.CodeSystemFilterComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCodeSystemPropertyComponent
protected CodeSystem.PropertyComponent parseCodeSystemPropertyComponent(com.google.gson.JsonObject json, CodeSystem owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCodeSystemPropertyComponentProperties
protected void parseCodeSystemPropertyComponentProperties(com.google.gson.JsonObject json, CodeSystem owner, CodeSystem.PropertyComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCodeSystemConceptDefinitionComponent
protected CodeSystem.ConceptDefinitionComponent parseCodeSystemConceptDefinitionComponent(com.google.gson.JsonObject json, CodeSystem owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCodeSystemConceptDefinitionComponentProperties
protected void parseCodeSystemConceptDefinitionComponentProperties(com.google.gson.JsonObject json, CodeSystem owner, CodeSystem.ConceptDefinitionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCodeSystemConceptDefinitionDesignationComponent
protected CodeSystem.ConceptDefinitionDesignationComponent parseCodeSystemConceptDefinitionDesignationComponent(com.google.gson.JsonObject json, CodeSystem owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCodeSystemConceptDefinitionDesignationComponentProperties
protected void parseCodeSystemConceptDefinitionDesignationComponentProperties(com.google.gson.JsonObject json, CodeSystem owner, CodeSystem.ConceptDefinitionDesignationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCodeSystemConceptPropertyComponent
protected CodeSystem.ConceptPropertyComponent parseCodeSystemConceptPropertyComponent(com.google.gson.JsonObject json, CodeSystem owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCodeSystemConceptPropertyComponentProperties
protected void parseCodeSystemConceptPropertyComponentProperties(com.google.gson.JsonObject json, CodeSystem owner, CodeSystem.ConceptPropertyComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCommunication
protected Communication parseCommunication(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCommunicationProperties
protected void parseCommunicationProperties(com.google.gson.JsonObject json, Communication res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCommunicationCommunicationPayloadComponent
protected Communication.CommunicationPayloadComponent parseCommunicationCommunicationPayloadComponent(com.google.gson.JsonObject json, Communication owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCommunicationCommunicationPayloadComponentProperties
protected void parseCommunicationCommunicationPayloadComponentProperties(com.google.gson.JsonObject json, Communication owner, Communication.CommunicationPayloadComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCommunicationRequest
protected CommunicationRequest parseCommunicationRequest(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCommunicationRequestProperties
protected void parseCommunicationRequestProperties(com.google.gson.JsonObject json, CommunicationRequest res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCommunicationRequestCommunicationRequestPayloadComponent
protected CommunicationRequest.CommunicationRequestPayloadComponent parseCommunicationRequestCommunicationRequestPayloadComponent(com.google.gson.JsonObject json, CommunicationRequest owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCommunicationRequestCommunicationRequestPayloadComponentProperties
protected void parseCommunicationRequestCommunicationRequestPayloadComponentProperties(com.google.gson.JsonObject json, CommunicationRequest owner, CommunicationRequest.CommunicationRequestPayloadComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCompartmentDefinition
protected CompartmentDefinition parseCompartmentDefinition(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCompartmentDefinitionProperties
protected void parseCompartmentDefinitionProperties(com.google.gson.JsonObject json, CompartmentDefinition res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCompartmentDefinitionCompartmentDefinitionResourceComponent
protected CompartmentDefinition.CompartmentDefinitionResourceComponent parseCompartmentDefinitionCompartmentDefinitionResourceComponent(com.google.gson.JsonObject json, CompartmentDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCompartmentDefinitionCompartmentDefinitionResourceComponentProperties
protected void parseCompartmentDefinitionCompartmentDefinitionResourceComponentProperties(com.google.gson.JsonObject json, CompartmentDefinition owner, CompartmentDefinition.CompartmentDefinitionResourceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseComposition
protected Composition parseComposition(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCompositionProperties
protected void parseCompositionProperties(com.google.gson.JsonObject json, Composition res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCompositionCompositionAttesterComponent
protected Composition.CompositionAttesterComponent parseCompositionCompositionAttesterComponent(com.google.gson.JsonObject json, Composition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCompositionCompositionAttesterComponentProperties
protected void parseCompositionCompositionAttesterComponentProperties(com.google.gson.JsonObject json, Composition owner, Composition.CompositionAttesterComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCompositionCompositionRelatesToComponent
protected Composition.CompositionRelatesToComponent parseCompositionCompositionRelatesToComponent(com.google.gson.JsonObject json, Composition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCompositionCompositionRelatesToComponentProperties
protected void parseCompositionCompositionRelatesToComponentProperties(com.google.gson.JsonObject json, Composition owner, Composition.CompositionRelatesToComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCompositionCompositionEventComponent
protected Composition.CompositionEventComponent parseCompositionCompositionEventComponent(com.google.gson.JsonObject json, Composition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCompositionCompositionEventComponentProperties
protected void parseCompositionCompositionEventComponentProperties(com.google.gson.JsonObject json, Composition owner, Composition.CompositionEventComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCompositionSectionComponent
protected Composition.SectionComponent parseCompositionSectionComponent(com.google.gson.JsonObject json, Composition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCompositionSectionComponentProperties
protected void parseCompositionSectionComponentProperties(com.google.gson.JsonObject json, Composition owner, Composition.SectionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConceptMap
protected ConceptMap parseConceptMap(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConceptMapProperties
protected void parseConceptMapProperties(com.google.gson.JsonObject json, ConceptMap res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConceptMapConceptMapGroupComponent
protected ConceptMap.ConceptMapGroupComponent parseConceptMapConceptMapGroupComponent(com.google.gson.JsonObject json, ConceptMap owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConceptMapConceptMapGroupComponentProperties
protected void parseConceptMapConceptMapGroupComponentProperties(com.google.gson.JsonObject json, ConceptMap owner, ConceptMap.ConceptMapGroupComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConceptMapSourceElementComponent
protected ConceptMap.SourceElementComponent parseConceptMapSourceElementComponent(com.google.gson.JsonObject json, ConceptMap owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConceptMapSourceElementComponentProperties
protected void parseConceptMapSourceElementComponentProperties(com.google.gson.JsonObject json, ConceptMap owner, ConceptMap.SourceElementComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConceptMapTargetElementComponent
protected ConceptMap.TargetElementComponent parseConceptMapTargetElementComponent(com.google.gson.JsonObject json, ConceptMap owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConceptMapTargetElementComponentProperties
protected void parseConceptMapTargetElementComponentProperties(com.google.gson.JsonObject json, ConceptMap owner, ConceptMap.TargetElementComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConceptMapOtherElementComponent
protected ConceptMap.OtherElementComponent parseConceptMapOtherElementComponent(com.google.gson.JsonObject json, ConceptMap owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConceptMapOtherElementComponentProperties
protected void parseConceptMapOtherElementComponentProperties(com.google.gson.JsonObject json, ConceptMap owner, ConceptMap.OtherElementComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConceptMapConceptMapGroupUnmappedComponent
protected ConceptMap.ConceptMapGroupUnmappedComponent parseConceptMapConceptMapGroupUnmappedComponent(com.google.gson.JsonObject json, ConceptMap owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConceptMapConceptMapGroupUnmappedComponentProperties
protected void parseConceptMapConceptMapGroupUnmappedComponentProperties(com.google.gson.JsonObject json, ConceptMap owner, ConceptMap.ConceptMapGroupUnmappedComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCondition
protected Condition parseCondition(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConditionProperties
protected void parseConditionProperties(com.google.gson.JsonObject json, Condition res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConditionConditionStageComponent
protected Condition.ConditionStageComponent parseConditionConditionStageComponent(com.google.gson.JsonObject json, Condition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConditionConditionStageComponentProperties
protected void parseConditionConditionStageComponentProperties(com.google.gson.JsonObject json, Condition owner, Condition.ConditionStageComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConditionConditionEvidenceComponent
protected Condition.ConditionEvidenceComponent parseConditionConditionEvidenceComponent(com.google.gson.JsonObject json, Condition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConditionConditionEvidenceComponentProperties
protected void parseConditionConditionEvidenceComponentProperties(com.google.gson.JsonObject json, Condition owner, Condition.ConditionEvidenceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConsent
protected Consent parseConsent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConsentProperties
protected void parseConsentProperties(com.google.gson.JsonObject json, Consent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConsentConsentPolicyComponent
protected Consent.ConsentPolicyComponent parseConsentConsentPolicyComponent(com.google.gson.JsonObject json, Consent owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConsentConsentPolicyComponentProperties
protected void parseConsentConsentPolicyComponentProperties(com.google.gson.JsonObject json, Consent owner, Consent.ConsentPolicyComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConsentConsentVerificationComponent
protected Consent.ConsentVerificationComponent parseConsentConsentVerificationComponent(com.google.gson.JsonObject json, Consent owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConsentConsentVerificationComponentProperties
protected void parseConsentConsentVerificationComponentProperties(com.google.gson.JsonObject json, Consent owner, Consent.ConsentVerificationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConsentprovisionComponent
protected Consent.provisionComponent parseConsentprovisionComponent(com.google.gson.JsonObject json, Consent owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConsentprovisionComponentProperties
protected void parseConsentprovisionComponentProperties(com.google.gson.JsonObject json, Consent owner, Consent.provisionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConsentprovisionActorComponent
protected Consent.provisionActorComponent parseConsentprovisionActorComponent(com.google.gson.JsonObject json, Consent owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConsentprovisionActorComponentProperties
protected void parseConsentprovisionActorComponentProperties(com.google.gson.JsonObject json, Consent owner, Consent.provisionActorComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConsentprovisionDataComponent
protected Consent.provisionDataComponent parseConsentprovisionDataComponent(com.google.gson.JsonObject json, Consent owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConsentprovisionDataComponentProperties
protected void parseConsentprovisionDataComponentProperties(com.google.gson.JsonObject json, Consent owner, Consent.provisionDataComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContract
protected Contract parseContract(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractProperties
protected void parseContractProperties(com.google.gson.JsonObject json, Contract res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractContentDefinitionComponent
protected Contract.ContentDefinitionComponent parseContractContentDefinitionComponent(com.google.gson.JsonObject json, Contract owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractContentDefinitionComponentProperties
protected void parseContractContentDefinitionComponentProperties(com.google.gson.JsonObject json, Contract owner, Contract.ContentDefinitionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractTermComponent
protected Contract.TermComponent parseContractTermComponent(com.google.gson.JsonObject json, Contract owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractTermComponentProperties
protected void parseContractTermComponentProperties(com.google.gson.JsonObject json, Contract owner, Contract.TermComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractSecurityLabelComponent
protected Contract.SecurityLabelComponent parseContractSecurityLabelComponent(com.google.gson.JsonObject json, Contract owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractSecurityLabelComponentProperties
protected void parseContractSecurityLabelComponentProperties(com.google.gson.JsonObject json, Contract owner, Contract.SecurityLabelComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractContractOfferComponent
protected Contract.ContractOfferComponent parseContractContractOfferComponent(com.google.gson.JsonObject json, Contract owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractContractOfferComponentProperties
protected void parseContractContractOfferComponentProperties(com.google.gson.JsonObject json, Contract owner, Contract.ContractOfferComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractContractPartyComponent
protected Contract.ContractPartyComponent parseContractContractPartyComponent(com.google.gson.JsonObject json, Contract owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractContractPartyComponentProperties
protected void parseContractContractPartyComponentProperties(com.google.gson.JsonObject json, Contract owner, Contract.ContractPartyComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractAnswerComponent
protected Contract.AnswerComponent parseContractAnswerComponent(com.google.gson.JsonObject json, Contract owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractAnswerComponentProperties
protected void parseContractAnswerComponentProperties(com.google.gson.JsonObject json, Contract owner, Contract.AnswerComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractContractAssetComponent
protected Contract.ContractAssetComponent parseContractContractAssetComponent(com.google.gson.JsonObject json, Contract owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractContractAssetComponentProperties
protected void parseContractContractAssetComponentProperties(com.google.gson.JsonObject json, Contract owner, Contract.ContractAssetComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractAssetContextComponent
protected Contract.AssetContextComponent parseContractAssetContextComponent(com.google.gson.JsonObject json, Contract owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractAssetContextComponentProperties
protected void parseContractAssetContextComponentProperties(com.google.gson.JsonObject json, Contract owner, Contract.AssetContextComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractValuedItemComponent
protected Contract.ValuedItemComponent parseContractValuedItemComponent(com.google.gson.JsonObject json, Contract owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractValuedItemComponentProperties
protected void parseContractValuedItemComponentProperties(com.google.gson.JsonObject json, Contract owner, Contract.ValuedItemComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractActionComponent
protected Contract.ActionComponent parseContractActionComponent(com.google.gson.JsonObject json, Contract owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractActionComponentProperties
protected void parseContractActionComponentProperties(com.google.gson.JsonObject json, Contract owner, Contract.ActionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractActionSubjectComponent
protected Contract.ActionSubjectComponent parseContractActionSubjectComponent(com.google.gson.JsonObject json, Contract owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractActionSubjectComponentProperties
protected void parseContractActionSubjectComponentProperties(com.google.gson.JsonObject json, Contract owner, Contract.ActionSubjectComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractSignatoryComponent
protected Contract.SignatoryComponent parseContractSignatoryComponent(com.google.gson.JsonObject json, Contract owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractSignatoryComponentProperties
protected void parseContractSignatoryComponentProperties(com.google.gson.JsonObject json, Contract owner, Contract.SignatoryComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractFriendlyLanguageComponent
protected Contract.FriendlyLanguageComponent parseContractFriendlyLanguageComponent(com.google.gson.JsonObject json, Contract owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractFriendlyLanguageComponentProperties
protected void parseContractFriendlyLanguageComponentProperties(com.google.gson.JsonObject json, Contract owner, Contract.FriendlyLanguageComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractLegalLanguageComponent
protected Contract.LegalLanguageComponent parseContractLegalLanguageComponent(com.google.gson.JsonObject json, Contract owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractLegalLanguageComponentProperties
protected void parseContractLegalLanguageComponentProperties(com.google.gson.JsonObject json, Contract owner, Contract.LegalLanguageComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractComputableLanguageComponent
protected Contract.ComputableLanguageComponent parseContractComputableLanguageComponent(com.google.gson.JsonObject json, Contract owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractComputableLanguageComponentProperties
protected void parseContractComputableLanguageComponentProperties(com.google.gson.JsonObject json, Contract owner, Contract.ComputableLanguageComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverage
protected Coverage parseCoverage(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageProperties
protected void parseCoverageProperties(com.google.gson.JsonObject json, Coverage res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageClassComponent
protected Coverage.ClassComponent parseCoverageClassComponent(com.google.gson.JsonObject json, Coverage owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageClassComponentProperties
protected void parseCoverageClassComponentProperties(com.google.gson.JsonObject json, Coverage owner, Coverage.ClassComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageCostToBeneficiaryComponent
protected Coverage.CostToBeneficiaryComponent parseCoverageCostToBeneficiaryComponent(com.google.gson.JsonObject json, Coverage owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageCostToBeneficiaryComponentProperties
protected void parseCoverageCostToBeneficiaryComponentProperties(com.google.gson.JsonObject json, Coverage owner, Coverage.CostToBeneficiaryComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageExemptionComponent
protected Coverage.ExemptionComponent parseCoverageExemptionComponent(com.google.gson.JsonObject json, Coverage owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageExemptionComponentProperties
protected void parseCoverageExemptionComponentProperties(com.google.gson.JsonObject json, Coverage owner, Coverage.ExemptionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageEligibilityRequest
protected CoverageEligibilityRequest parseCoverageEligibilityRequest(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageEligibilityRequestProperties
protected void parseCoverageEligibilityRequestProperties(com.google.gson.JsonObject json, CoverageEligibilityRequest res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageEligibilityRequestSupportingInformationComponent
protected CoverageEligibilityRequest.SupportingInformationComponent parseCoverageEligibilityRequestSupportingInformationComponent(com.google.gson.JsonObject json, CoverageEligibilityRequest owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageEligibilityRequestSupportingInformationComponentProperties
protected void parseCoverageEligibilityRequestSupportingInformationComponentProperties(com.google.gson.JsonObject json, CoverageEligibilityRequest owner, CoverageEligibilityRequest.SupportingInformationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageEligibilityRequestInsuranceComponent
protected CoverageEligibilityRequest.InsuranceComponent parseCoverageEligibilityRequestInsuranceComponent(com.google.gson.JsonObject json, CoverageEligibilityRequest owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageEligibilityRequestInsuranceComponentProperties
protected void parseCoverageEligibilityRequestInsuranceComponentProperties(com.google.gson.JsonObject json, CoverageEligibilityRequest owner, CoverageEligibilityRequest.InsuranceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageEligibilityRequestDetailsComponent
protected CoverageEligibilityRequest.DetailsComponent parseCoverageEligibilityRequestDetailsComponent(com.google.gson.JsonObject json, CoverageEligibilityRequest owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageEligibilityRequestDetailsComponentProperties
protected void parseCoverageEligibilityRequestDetailsComponentProperties(com.google.gson.JsonObject json, CoverageEligibilityRequest owner, CoverageEligibilityRequest.DetailsComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageEligibilityRequestDiagnosisComponent
protected CoverageEligibilityRequest.DiagnosisComponent parseCoverageEligibilityRequestDiagnosisComponent(com.google.gson.JsonObject json, CoverageEligibilityRequest owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageEligibilityRequestDiagnosisComponentProperties
protected void parseCoverageEligibilityRequestDiagnosisComponentProperties(com.google.gson.JsonObject json, CoverageEligibilityRequest owner, CoverageEligibilityRequest.DiagnosisComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageEligibilityResponse
protected CoverageEligibilityResponse parseCoverageEligibilityResponse(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageEligibilityResponseProperties
protected void parseCoverageEligibilityResponseProperties(com.google.gson.JsonObject json, CoverageEligibilityResponse res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageEligibilityResponseInsuranceComponent
protected CoverageEligibilityResponse.InsuranceComponent parseCoverageEligibilityResponseInsuranceComponent(com.google.gson.JsonObject json, CoverageEligibilityResponse owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageEligibilityResponseInsuranceComponentProperties
protected void parseCoverageEligibilityResponseInsuranceComponentProperties(com.google.gson.JsonObject json, CoverageEligibilityResponse owner, CoverageEligibilityResponse.InsuranceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageEligibilityResponseItemsComponent
protected CoverageEligibilityResponse.ItemsComponent parseCoverageEligibilityResponseItemsComponent(com.google.gson.JsonObject json, CoverageEligibilityResponse owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageEligibilityResponseItemsComponentProperties
protected void parseCoverageEligibilityResponseItemsComponentProperties(com.google.gson.JsonObject json, CoverageEligibilityResponse owner, CoverageEligibilityResponse.ItemsComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageEligibilityResponseBenefitComponent
protected CoverageEligibilityResponse.BenefitComponent parseCoverageEligibilityResponseBenefitComponent(com.google.gson.JsonObject json, CoverageEligibilityResponse owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageEligibilityResponseBenefitComponentProperties
protected void parseCoverageEligibilityResponseBenefitComponentProperties(com.google.gson.JsonObject json, CoverageEligibilityResponse owner, CoverageEligibilityResponse.BenefitComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageEligibilityResponseErrorsComponent
protected CoverageEligibilityResponse.ErrorsComponent parseCoverageEligibilityResponseErrorsComponent(com.google.gson.JsonObject json, CoverageEligibilityResponse owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageEligibilityResponseErrorsComponentProperties
protected void parseCoverageEligibilityResponseErrorsComponentProperties(com.google.gson.JsonObject json, CoverageEligibilityResponse owner, CoverageEligibilityResponse.ErrorsComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDetectedIssue
protected DetectedIssue parseDetectedIssue(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDetectedIssueProperties
protected void parseDetectedIssueProperties(com.google.gson.JsonObject json, DetectedIssue res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDetectedIssueDetectedIssueEvidenceComponent
protected DetectedIssue.DetectedIssueEvidenceComponent parseDetectedIssueDetectedIssueEvidenceComponent(com.google.gson.JsonObject json, DetectedIssue owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDetectedIssueDetectedIssueEvidenceComponentProperties
protected void parseDetectedIssueDetectedIssueEvidenceComponentProperties(com.google.gson.JsonObject json, DetectedIssue owner, DetectedIssue.DetectedIssueEvidenceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDetectedIssueDetectedIssueMitigationComponent
protected DetectedIssue.DetectedIssueMitigationComponent parseDetectedIssueDetectedIssueMitigationComponent(com.google.gson.JsonObject json, DetectedIssue owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDetectedIssueDetectedIssueMitigationComponentProperties
protected void parseDetectedIssueDetectedIssueMitigationComponentProperties(com.google.gson.JsonObject json, DetectedIssue owner, DetectedIssue.DetectedIssueMitigationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDevice
protected Device parseDevice(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceProperties
protected void parseDeviceProperties(com.google.gson.JsonObject json, Device res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDeviceUdiCarrierComponent
protected Device.DeviceUdiCarrierComponent parseDeviceDeviceUdiCarrierComponent(com.google.gson.JsonObject json, Device owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDeviceUdiCarrierComponentProperties
protected void parseDeviceDeviceUdiCarrierComponentProperties(com.google.gson.JsonObject json, Device owner, Device.DeviceUdiCarrierComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDeviceDeviceNameComponent
protected Device.DeviceDeviceNameComponent parseDeviceDeviceDeviceNameComponent(com.google.gson.JsonObject json, Device owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDeviceDeviceNameComponentProperties
protected void parseDeviceDeviceDeviceNameComponentProperties(com.google.gson.JsonObject json, Device owner, Device.DeviceDeviceNameComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDeviceSpecializationComponent
protected Device.DeviceSpecializationComponent parseDeviceDeviceSpecializationComponent(com.google.gson.JsonObject json, Device owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDeviceSpecializationComponentProperties
protected void parseDeviceDeviceSpecializationComponentProperties(com.google.gson.JsonObject json, Device owner, Device.DeviceSpecializationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDeviceVersionComponent
protected Device.DeviceVersionComponent parseDeviceDeviceVersionComponent(com.google.gson.JsonObject json, Device owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDeviceVersionComponentProperties
protected void parseDeviceDeviceVersionComponentProperties(com.google.gson.JsonObject json, Device owner, Device.DeviceVersionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDevicePropertyComponent
protected Device.DevicePropertyComponent parseDeviceDevicePropertyComponent(com.google.gson.JsonObject json, Device owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDevicePropertyComponentProperties
protected void parseDeviceDevicePropertyComponentProperties(com.google.gson.JsonObject json, Device owner, Device.DevicePropertyComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDefinition
protected DeviceDefinition parseDeviceDefinition(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDefinitionProperties
protected void parseDeviceDefinitionProperties(com.google.gson.JsonObject json, DeviceDefinition res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDefinitionDeviceDefinitionUdiDeviceIdentifierComponent
protected DeviceDefinition.DeviceDefinitionUdiDeviceIdentifierComponent parseDeviceDefinitionDeviceDefinitionUdiDeviceIdentifierComponent(com.google.gson.JsonObject json, DeviceDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDefinitionDeviceDefinitionUdiDeviceIdentifierComponentProperties
protected void parseDeviceDefinitionDeviceDefinitionUdiDeviceIdentifierComponentProperties(com.google.gson.JsonObject json, DeviceDefinition owner, DeviceDefinition.DeviceDefinitionUdiDeviceIdentifierComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDefinitionDeviceDefinitionDeviceNameComponent
protected DeviceDefinition.DeviceDefinitionDeviceNameComponent parseDeviceDefinitionDeviceDefinitionDeviceNameComponent(com.google.gson.JsonObject json, DeviceDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDefinitionDeviceDefinitionDeviceNameComponentProperties
protected void parseDeviceDefinitionDeviceDefinitionDeviceNameComponentProperties(com.google.gson.JsonObject json, DeviceDefinition owner, DeviceDefinition.DeviceDefinitionDeviceNameComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDefinitionDeviceDefinitionSpecializationComponent
protected DeviceDefinition.DeviceDefinitionSpecializationComponent parseDeviceDefinitionDeviceDefinitionSpecializationComponent(com.google.gson.JsonObject json, DeviceDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDefinitionDeviceDefinitionSpecializationComponentProperties
protected void parseDeviceDefinitionDeviceDefinitionSpecializationComponentProperties(com.google.gson.JsonObject json, DeviceDefinition owner, DeviceDefinition.DeviceDefinitionSpecializationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDefinitionDeviceDefinitionCapabilityComponent
protected DeviceDefinition.DeviceDefinitionCapabilityComponent parseDeviceDefinitionDeviceDefinitionCapabilityComponent(com.google.gson.JsonObject json, DeviceDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDefinitionDeviceDefinitionCapabilityComponentProperties
protected void parseDeviceDefinitionDeviceDefinitionCapabilityComponentProperties(com.google.gson.JsonObject json, DeviceDefinition owner, DeviceDefinition.DeviceDefinitionCapabilityComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDefinitionDeviceDefinitionPropertyComponent
protected DeviceDefinition.DeviceDefinitionPropertyComponent parseDeviceDefinitionDeviceDefinitionPropertyComponent(com.google.gson.JsonObject json, DeviceDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDefinitionDeviceDefinitionPropertyComponentProperties
protected void parseDeviceDefinitionDeviceDefinitionPropertyComponentProperties(com.google.gson.JsonObject json, DeviceDefinition owner, DeviceDefinition.DeviceDefinitionPropertyComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDefinitionDeviceDefinitionMaterialComponent
protected DeviceDefinition.DeviceDefinitionMaterialComponent parseDeviceDefinitionDeviceDefinitionMaterialComponent(com.google.gson.JsonObject json, DeviceDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDefinitionDeviceDefinitionMaterialComponentProperties
protected void parseDeviceDefinitionDeviceDefinitionMaterialComponentProperties(com.google.gson.JsonObject json, DeviceDefinition owner, DeviceDefinition.DeviceDefinitionMaterialComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceMetric
protected DeviceMetric parseDeviceMetric(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceMetricProperties
protected void parseDeviceMetricProperties(com.google.gson.JsonObject json, DeviceMetric res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceMetricDeviceMetricCalibrationComponent
protected DeviceMetric.DeviceMetricCalibrationComponent parseDeviceMetricDeviceMetricCalibrationComponent(com.google.gson.JsonObject json, DeviceMetric owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceMetricDeviceMetricCalibrationComponentProperties
protected void parseDeviceMetricDeviceMetricCalibrationComponentProperties(com.google.gson.JsonObject json, DeviceMetric owner, DeviceMetric.DeviceMetricCalibrationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceRequest
protected DeviceRequest parseDeviceRequest(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceRequestProperties
protected void parseDeviceRequestProperties(com.google.gson.JsonObject json, DeviceRequest res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceRequestDeviceRequestParameterComponent
protected DeviceRequest.DeviceRequestParameterComponent parseDeviceRequestDeviceRequestParameterComponent(com.google.gson.JsonObject json, DeviceRequest owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceRequestDeviceRequestParameterComponentProperties
protected void parseDeviceRequestDeviceRequestParameterComponentProperties(com.google.gson.JsonObject json, DeviceRequest owner, DeviceRequest.DeviceRequestParameterComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceUseStatement
protected DeviceUseStatement parseDeviceUseStatement(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceUseStatementProperties
protected void parseDeviceUseStatementProperties(com.google.gson.JsonObject json, DeviceUseStatement res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDiagnosticReport
protected DiagnosticReport parseDiagnosticReport(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDiagnosticReportProperties
protected void parseDiagnosticReportProperties(com.google.gson.JsonObject json, DiagnosticReport res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDiagnosticReportDiagnosticReportMediaComponent
protected DiagnosticReport.DiagnosticReportMediaComponent parseDiagnosticReportDiagnosticReportMediaComponent(com.google.gson.JsonObject json, DiagnosticReport owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDiagnosticReportDiagnosticReportMediaComponentProperties
protected void parseDiagnosticReportDiagnosticReportMediaComponentProperties(com.google.gson.JsonObject json, DiagnosticReport owner, DiagnosticReport.DiagnosticReportMediaComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDocumentManifest
protected DocumentManifest parseDocumentManifest(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDocumentManifestProperties
protected void parseDocumentManifestProperties(com.google.gson.JsonObject json, DocumentManifest res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDocumentManifestDocumentManifestRelatedComponent
protected DocumentManifest.DocumentManifestRelatedComponent parseDocumentManifestDocumentManifestRelatedComponent(com.google.gson.JsonObject json, DocumentManifest owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDocumentManifestDocumentManifestRelatedComponentProperties
protected void parseDocumentManifestDocumentManifestRelatedComponentProperties(com.google.gson.JsonObject json, DocumentManifest owner, DocumentManifest.DocumentManifestRelatedComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDocumentReference
protected DocumentReference parseDocumentReference(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDocumentReferenceProperties
protected void parseDocumentReferenceProperties(com.google.gson.JsonObject json, DocumentReference res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDocumentReferenceDocumentReferenceRelatesToComponent
protected DocumentReference.DocumentReferenceRelatesToComponent parseDocumentReferenceDocumentReferenceRelatesToComponent(com.google.gson.JsonObject json, DocumentReference owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDocumentReferenceDocumentReferenceRelatesToComponentProperties
protected void parseDocumentReferenceDocumentReferenceRelatesToComponentProperties(com.google.gson.JsonObject json, DocumentReference owner, DocumentReference.DocumentReferenceRelatesToComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDocumentReferenceDocumentReferenceContentComponent
protected DocumentReference.DocumentReferenceContentComponent parseDocumentReferenceDocumentReferenceContentComponent(com.google.gson.JsonObject json, DocumentReference owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDocumentReferenceDocumentReferenceContentComponentProperties
protected void parseDocumentReferenceDocumentReferenceContentComponentProperties(com.google.gson.JsonObject json, DocumentReference owner, DocumentReference.DocumentReferenceContentComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDocumentReferenceDocumentReferenceContextComponent
protected DocumentReference.DocumentReferenceContextComponent parseDocumentReferenceDocumentReferenceContextComponent(com.google.gson.JsonObject json, DocumentReference owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDocumentReferenceDocumentReferenceContextComponentProperties
protected void parseDocumentReferenceDocumentReferenceContextComponentProperties(com.google.gson.JsonObject json, DocumentReference owner, DocumentReference.DocumentReferenceContextComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEffectEvidenceSynthesis
protected EffectEvidenceSynthesis parseEffectEvidenceSynthesis(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEffectEvidenceSynthesisProperties
protected void parseEffectEvidenceSynthesisProperties(com.google.gson.JsonObject json, EffectEvidenceSynthesis res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEffectEvidenceSynthesisEffectEvidenceSynthesisSampleSizeComponent
protected EffectEvidenceSynthesis.EffectEvidenceSynthesisSampleSizeComponent parseEffectEvidenceSynthesisEffectEvidenceSynthesisSampleSizeComponent(com.google.gson.JsonObject json, EffectEvidenceSynthesis owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEffectEvidenceSynthesisEffectEvidenceSynthesisSampleSizeComponentProperties
protected void parseEffectEvidenceSynthesisEffectEvidenceSynthesisSampleSizeComponentProperties(com.google.gson.JsonObject json, EffectEvidenceSynthesis owner, EffectEvidenceSynthesis.EffectEvidenceSynthesisSampleSizeComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEffectEvidenceSynthesisEffectEvidenceSynthesisResultsByExposureComponent
protected EffectEvidenceSynthesis.EffectEvidenceSynthesisResultsByExposureComponent parseEffectEvidenceSynthesisEffectEvidenceSynthesisResultsByExposureComponent(com.google.gson.JsonObject json, EffectEvidenceSynthesis owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEffectEvidenceSynthesisEffectEvidenceSynthesisResultsByExposureComponentProperties
protected void parseEffectEvidenceSynthesisEffectEvidenceSynthesisResultsByExposureComponentProperties(com.google.gson.JsonObject json, EffectEvidenceSynthesis owner, EffectEvidenceSynthesis.EffectEvidenceSynthesisResultsByExposureComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEffectEvidenceSynthesisEffectEvidenceSynthesisEffectEstimateComponent
protected EffectEvidenceSynthesis.EffectEvidenceSynthesisEffectEstimateComponent parseEffectEvidenceSynthesisEffectEvidenceSynthesisEffectEstimateComponent(com.google.gson.JsonObject json, EffectEvidenceSynthesis owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEffectEvidenceSynthesisEffectEvidenceSynthesisEffectEstimateComponentProperties
protected void parseEffectEvidenceSynthesisEffectEvidenceSynthesisEffectEstimateComponentProperties(com.google.gson.JsonObject json, EffectEvidenceSynthesis owner, EffectEvidenceSynthesis.EffectEvidenceSynthesisEffectEstimateComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEffectEvidenceSynthesisEffectEvidenceSynthesisEffectEstimatePrecisionEstimateComponent
protected EffectEvidenceSynthesis.EffectEvidenceSynthesisEffectEstimatePrecisionEstimateComponent parseEffectEvidenceSynthesisEffectEvidenceSynthesisEffectEstimatePrecisionEstimateComponent(com.google.gson.JsonObject json, EffectEvidenceSynthesis owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEffectEvidenceSynthesisEffectEvidenceSynthesisEffectEstimatePrecisionEstimateComponentProperties
protected void parseEffectEvidenceSynthesisEffectEvidenceSynthesisEffectEstimatePrecisionEstimateComponentProperties(com.google.gson.JsonObject json, EffectEvidenceSynthesis owner, EffectEvidenceSynthesis.EffectEvidenceSynthesisEffectEstimatePrecisionEstimateComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEffectEvidenceSynthesisEffectEvidenceSynthesisCertaintyComponent
protected EffectEvidenceSynthesis.EffectEvidenceSynthesisCertaintyComponent parseEffectEvidenceSynthesisEffectEvidenceSynthesisCertaintyComponent(com.google.gson.JsonObject json, EffectEvidenceSynthesis owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEffectEvidenceSynthesisEffectEvidenceSynthesisCertaintyComponentProperties
protected void parseEffectEvidenceSynthesisEffectEvidenceSynthesisCertaintyComponentProperties(com.google.gson.JsonObject json, EffectEvidenceSynthesis owner, EffectEvidenceSynthesis.EffectEvidenceSynthesisCertaintyComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEffectEvidenceSynthesisEffectEvidenceSynthesisCertaintyCertaintySubcomponentComponent
protected EffectEvidenceSynthesis.EffectEvidenceSynthesisCertaintyCertaintySubcomponentComponent parseEffectEvidenceSynthesisEffectEvidenceSynthesisCertaintyCertaintySubcomponentComponent(com.google.gson.JsonObject json, EffectEvidenceSynthesis owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEffectEvidenceSynthesisEffectEvidenceSynthesisCertaintyCertaintySubcomponentComponentProperties
protected void parseEffectEvidenceSynthesisEffectEvidenceSynthesisCertaintyCertaintySubcomponentComponentProperties(com.google.gson.JsonObject json, EffectEvidenceSynthesis owner, EffectEvidenceSynthesis.EffectEvidenceSynthesisCertaintyCertaintySubcomponentComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEncounter
protected Encounter parseEncounter(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEncounterProperties
protected void parseEncounterProperties(com.google.gson.JsonObject json, Encounter res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEncounterStatusHistoryComponent
protected Encounter.StatusHistoryComponent parseEncounterStatusHistoryComponent(com.google.gson.JsonObject json, Encounter owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEncounterStatusHistoryComponentProperties
protected void parseEncounterStatusHistoryComponentProperties(com.google.gson.JsonObject json, Encounter owner, Encounter.StatusHistoryComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEncounterClassHistoryComponent
protected Encounter.ClassHistoryComponent parseEncounterClassHistoryComponent(com.google.gson.JsonObject json, Encounter owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEncounterClassHistoryComponentProperties
protected void parseEncounterClassHistoryComponentProperties(com.google.gson.JsonObject json, Encounter owner, Encounter.ClassHistoryComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEncounterEncounterParticipantComponent
protected Encounter.EncounterParticipantComponent parseEncounterEncounterParticipantComponent(com.google.gson.JsonObject json, Encounter owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEncounterEncounterParticipantComponentProperties
protected void parseEncounterEncounterParticipantComponentProperties(com.google.gson.JsonObject json, Encounter owner, Encounter.EncounterParticipantComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEncounterDiagnosisComponent
protected Encounter.DiagnosisComponent parseEncounterDiagnosisComponent(com.google.gson.JsonObject json, Encounter owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEncounterDiagnosisComponentProperties
protected void parseEncounterDiagnosisComponentProperties(com.google.gson.JsonObject json, Encounter owner, Encounter.DiagnosisComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEncounterEncounterHospitalizationComponent
protected Encounter.EncounterHospitalizationComponent parseEncounterEncounterHospitalizationComponent(com.google.gson.JsonObject json, Encounter owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEncounterEncounterHospitalizationComponentProperties
protected void parseEncounterEncounterHospitalizationComponentProperties(com.google.gson.JsonObject json, Encounter owner, Encounter.EncounterHospitalizationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEncounterEncounterLocationComponent
protected Encounter.EncounterLocationComponent parseEncounterEncounterLocationComponent(com.google.gson.JsonObject json, Encounter owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEncounterEncounterLocationComponentProperties
protected void parseEncounterEncounterLocationComponentProperties(com.google.gson.JsonObject json, Encounter owner, Encounter.EncounterLocationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEndpoint
protected Endpoint parseEndpoint(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEndpointProperties
protected void parseEndpointProperties(com.google.gson.JsonObject json, Endpoint res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEnrollmentRequest
protected EnrollmentRequest parseEnrollmentRequest(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEnrollmentRequestProperties
protected void parseEnrollmentRequestProperties(com.google.gson.JsonObject json, EnrollmentRequest res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEnrollmentResponse
protected EnrollmentResponse parseEnrollmentResponse(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEnrollmentResponseProperties
protected void parseEnrollmentResponseProperties(com.google.gson.JsonObject json, EnrollmentResponse res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEpisodeOfCare
protected EpisodeOfCare parseEpisodeOfCare(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEpisodeOfCareProperties
protected void parseEpisodeOfCareProperties(com.google.gson.JsonObject json, EpisodeOfCare res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEpisodeOfCareEpisodeOfCareStatusHistoryComponent
protected EpisodeOfCare.EpisodeOfCareStatusHistoryComponent parseEpisodeOfCareEpisodeOfCareStatusHistoryComponent(com.google.gson.JsonObject json, EpisodeOfCare owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEpisodeOfCareEpisodeOfCareStatusHistoryComponentProperties
protected void parseEpisodeOfCareEpisodeOfCareStatusHistoryComponentProperties(com.google.gson.JsonObject json, EpisodeOfCare owner, EpisodeOfCare.EpisodeOfCareStatusHistoryComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEpisodeOfCareDiagnosisComponent
protected EpisodeOfCare.DiagnosisComponent parseEpisodeOfCareDiagnosisComponent(com.google.gson.JsonObject json, EpisodeOfCare owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEpisodeOfCareDiagnosisComponentProperties
protected void parseEpisodeOfCareDiagnosisComponentProperties(com.google.gson.JsonObject json, EpisodeOfCare owner, EpisodeOfCare.DiagnosisComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEventDefinition
protected EventDefinition parseEventDefinition(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEventDefinitionProperties
protected void parseEventDefinitionProperties(com.google.gson.JsonObject json, EventDefinition res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEvidence
protected Evidence parseEvidence(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEvidenceProperties
protected void parseEvidenceProperties(com.google.gson.JsonObject json, Evidence res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEvidenceVariable
protected EvidenceVariable parseEvidenceVariable(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEvidenceVariableProperties
protected void parseEvidenceVariableProperties(com.google.gson.JsonObject json, EvidenceVariable res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEvidenceVariableEvidenceVariableCharacteristicComponent
protected EvidenceVariable.EvidenceVariableCharacteristicComponent parseEvidenceVariableEvidenceVariableCharacteristicComponent(com.google.gson.JsonObject json, EvidenceVariable owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEvidenceVariableEvidenceVariableCharacteristicComponentProperties
protected void parseEvidenceVariableEvidenceVariableCharacteristicComponentProperties(com.google.gson.JsonObject json, EvidenceVariable owner, EvidenceVariable.EvidenceVariableCharacteristicComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExampleScenario
protected ExampleScenario parseExampleScenario(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExampleScenarioProperties
protected void parseExampleScenarioProperties(com.google.gson.JsonObject json, ExampleScenario res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExampleScenarioExampleScenarioActorComponent
protected ExampleScenario.ExampleScenarioActorComponent parseExampleScenarioExampleScenarioActorComponent(com.google.gson.JsonObject json, ExampleScenario owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExampleScenarioExampleScenarioActorComponentProperties
protected void parseExampleScenarioExampleScenarioActorComponentProperties(com.google.gson.JsonObject json, ExampleScenario owner, ExampleScenario.ExampleScenarioActorComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExampleScenarioExampleScenarioInstanceComponent
protected ExampleScenario.ExampleScenarioInstanceComponent parseExampleScenarioExampleScenarioInstanceComponent(com.google.gson.JsonObject json, ExampleScenario owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExampleScenarioExampleScenarioInstanceComponentProperties
protected void parseExampleScenarioExampleScenarioInstanceComponentProperties(com.google.gson.JsonObject json, ExampleScenario owner, ExampleScenario.ExampleScenarioInstanceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExampleScenarioExampleScenarioInstanceVersionComponent
protected ExampleScenario.ExampleScenarioInstanceVersionComponent parseExampleScenarioExampleScenarioInstanceVersionComponent(com.google.gson.JsonObject json, ExampleScenario owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExampleScenarioExampleScenarioInstanceVersionComponentProperties
protected void parseExampleScenarioExampleScenarioInstanceVersionComponentProperties(com.google.gson.JsonObject json, ExampleScenario owner, ExampleScenario.ExampleScenarioInstanceVersionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExampleScenarioExampleScenarioInstanceContainedInstanceComponent
protected ExampleScenario.ExampleScenarioInstanceContainedInstanceComponent parseExampleScenarioExampleScenarioInstanceContainedInstanceComponent(com.google.gson.JsonObject json, ExampleScenario owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExampleScenarioExampleScenarioInstanceContainedInstanceComponentProperties
protected void parseExampleScenarioExampleScenarioInstanceContainedInstanceComponentProperties(com.google.gson.JsonObject json, ExampleScenario owner, ExampleScenario.ExampleScenarioInstanceContainedInstanceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExampleScenarioExampleScenarioProcessComponent
protected ExampleScenario.ExampleScenarioProcessComponent parseExampleScenarioExampleScenarioProcessComponent(com.google.gson.JsonObject json, ExampleScenario owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExampleScenarioExampleScenarioProcessComponentProperties
protected void parseExampleScenarioExampleScenarioProcessComponentProperties(com.google.gson.JsonObject json, ExampleScenario owner, ExampleScenario.ExampleScenarioProcessComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExampleScenarioExampleScenarioProcessStepComponent
protected ExampleScenario.ExampleScenarioProcessStepComponent parseExampleScenarioExampleScenarioProcessStepComponent(com.google.gson.JsonObject json, ExampleScenario owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExampleScenarioExampleScenarioProcessStepComponentProperties
protected void parseExampleScenarioExampleScenarioProcessStepComponentProperties(com.google.gson.JsonObject json, ExampleScenario owner, ExampleScenario.ExampleScenarioProcessStepComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExampleScenarioExampleScenarioProcessStepOperationComponent
protected ExampleScenario.ExampleScenarioProcessStepOperationComponent parseExampleScenarioExampleScenarioProcessStepOperationComponent(com.google.gson.JsonObject json, ExampleScenario owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExampleScenarioExampleScenarioProcessStepOperationComponentProperties
protected void parseExampleScenarioExampleScenarioProcessStepOperationComponentProperties(com.google.gson.JsonObject json, ExampleScenario owner, ExampleScenario.ExampleScenarioProcessStepOperationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExampleScenarioExampleScenarioProcessStepAlternativeComponent
protected ExampleScenario.ExampleScenarioProcessStepAlternativeComponent parseExampleScenarioExampleScenarioProcessStepAlternativeComponent(com.google.gson.JsonObject json, ExampleScenario owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExampleScenarioExampleScenarioProcessStepAlternativeComponentProperties
protected void parseExampleScenarioExampleScenarioProcessStepAlternativeComponentProperties(com.google.gson.JsonObject json, ExampleScenario owner, ExampleScenario.ExampleScenarioProcessStepAlternativeComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefit
protected ExplanationOfBenefit parseExplanationOfBenefit(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitProperties
protected void parseExplanationOfBenefitProperties(com.google.gson.JsonObject json, ExplanationOfBenefit res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitRelatedClaimComponent
protected ExplanationOfBenefit.RelatedClaimComponent parseExplanationOfBenefitRelatedClaimComponent(com.google.gson.JsonObject json, ExplanationOfBenefit owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitRelatedClaimComponentProperties
protected void parseExplanationOfBenefitRelatedClaimComponentProperties(com.google.gson.JsonObject json, ExplanationOfBenefit owner, ExplanationOfBenefit.RelatedClaimComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitPayeeComponent
protected ExplanationOfBenefit.PayeeComponent parseExplanationOfBenefitPayeeComponent(com.google.gson.JsonObject json, ExplanationOfBenefit owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitPayeeComponentProperties
protected void parseExplanationOfBenefitPayeeComponentProperties(com.google.gson.JsonObject json, ExplanationOfBenefit owner, ExplanationOfBenefit.PayeeComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitCareTeamComponent
protected ExplanationOfBenefit.CareTeamComponent parseExplanationOfBenefitCareTeamComponent(com.google.gson.JsonObject json, ExplanationOfBenefit owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitCareTeamComponentProperties
protected void parseExplanationOfBenefitCareTeamComponentProperties(com.google.gson.JsonObject json, ExplanationOfBenefit owner, ExplanationOfBenefit.CareTeamComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitSupportingInformationComponent
protected ExplanationOfBenefit.SupportingInformationComponent parseExplanationOfBenefitSupportingInformationComponent(com.google.gson.JsonObject json, ExplanationOfBenefit owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitSupportingInformationComponentProperties
protected void parseExplanationOfBenefitSupportingInformationComponentProperties(com.google.gson.JsonObject json, ExplanationOfBenefit owner, ExplanationOfBenefit.SupportingInformationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitDiagnosisComponent
protected ExplanationOfBenefit.DiagnosisComponent parseExplanationOfBenefitDiagnosisComponent(com.google.gson.JsonObject json, ExplanationOfBenefit owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitDiagnosisComponentProperties
protected void parseExplanationOfBenefitDiagnosisComponentProperties(com.google.gson.JsonObject json, ExplanationOfBenefit owner, ExplanationOfBenefit.DiagnosisComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitProcedureComponent
protected ExplanationOfBenefit.ProcedureComponent parseExplanationOfBenefitProcedureComponent(com.google.gson.JsonObject json, ExplanationOfBenefit owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitProcedureComponentProperties
protected void parseExplanationOfBenefitProcedureComponentProperties(com.google.gson.JsonObject json, ExplanationOfBenefit owner, ExplanationOfBenefit.ProcedureComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitInsuranceComponent
protected ExplanationOfBenefit.InsuranceComponent parseExplanationOfBenefitInsuranceComponent(com.google.gson.JsonObject json, ExplanationOfBenefit owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitInsuranceComponentProperties
protected void parseExplanationOfBenefitInsuranceComponentProperties(com.google.gson.JsonObject json, ExplanationOfBenefit owner, ExplanationOfBenefit.InsuranceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitAccidentComponent
protected ExplanationOfBenefit.AccidentComponent parseExplanationOfBenefitAccidentComponent(com.google.gson.JsonObject json, ExplanationOfBenefit owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitAccidentComponentProperties
protected void parseExplanationOfBenefitAccidentComponentProperties(com.google.gson.JsonObject json, ExplanationOfBenefit owner, ExplanationOfBenefit.AccidentComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitItemComponent
protected ExplanationOfBenefit.ItemComponent parseExplanationOfBenefitItemComponent(com.google.gson.JsonObject json, ExplanationOfBenefit owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitItemComponentProperties
protected void parseExplanationOfBenefitItemComponentProperties(com.google.gson.JsonObject json, ExplanationOfBenefit owner, ExplanationOfBenefit.ItemComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitAdjudicationComponent
protected ExplanationOfBenefit.AdjudicationComponent parseExplanationOfBenefitAdjudicationComponent(com.google.gson.JsonObject json, ExplanationOfBenefit owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitAdjudicationComponentProperties
protected void parseExplanationOfBenefitAdjudicationComponentProperties(com.google.gson.JsonObject json, ExplanationOfBenefit owner, ExplanationOfBenefit.AdjudicationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitDetailComponent
protected ExplanationOfBenefit.DetailComponent parseExplanationOfBenefitDetailComponent(com.google.gson.JsonObject json, ExplanationOfBenefit owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitDetailComponentProperties
protected void parseExplanationOfBenefitDetailComponentProperties(com.google.gson.JsonObject json, ExplanationOfBenefit owner, ExplanationOfBenefit.DetailComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitSubDetailComponent
protected ExplanationOfBenefit.SubDetailComponent parseExplanationOfBenefitSubDetailComponent(com.google.gson.JsonObject json, ExplanationOfBenefit owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitSubDetailComponentProperties
protected void parseExplanationOfBenefitSubDetailComponentProperties(com.google.gson.JsonObject json, ExplanationOfBenefit owner, ExplanationOfBenefit.SubDetailComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitAddedItemComponent
protected ExplanationOfBenefit.AddedItemComponent parseExplanationOfBenefitAddedItemComponent(com.google.gson.JsonObject json, ExplanationOfBenefit owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitAddedItemComponentProperties
protected void parseExplanationOfBenefitAddedItemComponentProperties(com.google.gson.JsonObject json, ExplanationOfBenefit owner, ExplanationOfBenefit.AddedItemComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitAddedItemDetailComponent
protected ExplanationOfBenefit.AddedItemDetailComponent parseExplanationOfBenefitAddedItemDetailComponent(com.google.gson.JsonObject json, ExplanationOfBenefit owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitAddedItemDetailComponentProperties
protected void parseExplanationOfBenefitAddedItemDetailComponentProperties(com.google.gson.JsonObject json, ExplanationOfBenefit owner, ExplanationOfBenefit.AddedItemDetailComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitAddedItemDetailSubDetailComponent
protected ExplanationOfBenefit.AddedItemDetailSubDetailComponent parseExplanationOfBenefitAddedItemDetailSubDetailComponent(com.google.gson.JsonObject json, ExplanationOfBenefit owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitAddedItemDetailSubDetailComponentProperties
protected void parseExplanationOfBenefitAddedItemDetailSubDetailComponentProperties(com.google.gson.JsonObject json, ExplanationOfBenefit owner, ExplanationOfBenefit.AddedItemDetailSubDetailComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitTotalComponent
protected ExplanationOfBenefit.TotalComponent parseExplanationOfBenefitTotalComponent(com.google.gson.JsonObject json, ExplanationOfBenefit owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitTotalComponentProperties
protected void parseExplanationOfBenefitTotalComponentProperties(com.google.gson.JsonObject json, ExplanationOfBenefit owner, ExplanationOfBenefit.TotalComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitPaymentComponent
protected ExplanationOfBenefit.PaymentComponent parseExplanationOfBenefitPaymentComponent(com.google.gson.JsonObject json, ExplanationOfBenefit owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitPaymentComponentProperties
protected void parseExplanationOfBenefitPaymentComponentProperties(com.google.gson.JsonObject json, ExplanationOfBenefit owner, ExplanationOfBenefit.PaymentComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitNoteComponent
protected ExplanationOfBenefit.NoteComponent parseExplanationOfBenefitNoteComponent(com.google.gson.JsonObject json, ExplanationOfBenefit owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitNoteComponentProperties
protected void parseExplanationOfBenefitNoteComponentProperties(com.google.gson.JsonObject json, ExplanationOfBenefit owner, ExplanationOfBenefit.NoteComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitBenefitBalanceComponent
protected ExplanationOfBenefit.BenefitBalanceComponent parseExplanationOfBenefitBenefitBalanceComponent(com.google.gson.JsonObject json, ExplanationOfBenefit owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitBenefitBalanceComponentProperties
protected void parseExplanationOfBenefitBenefitBalanceComponentProperties(com.google.gson.JsonObject json, ExplanationOfBenefit owner, ExplanationOfBenefit.BenefitBalanceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitBenefitComponent
protected ExplanationOfBenefit.BenefitComponent parseExplanationOfBenefitBenefitComponent(com.google.gson.JsonObject json, ExplanationOfBenefit owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitBenefitComponentProperties
protected void parseExplanationOfBenefitBenefitComponentProperties(com.google.gson.JsonObject json, ExplanationOfBenefit owner, ExplanationOfBenefit.BenefitComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseFamilyMemberHistory
protected FamilyMemberHistory parseFamilyMemberHistory(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseFamilyMemberHistoryProperties
protected void parseFamilyMemberHistoryProperties(com.google.gson.JsonObject json, FamilyMemberHistory res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseFamilyMemberHistoryFamilyMemberHistoryConditionComponent
protected FamilyMemberHistory.FamilyMemberHistoryConditionComponent parseFamilyMemberHistoryFamilyMemberHistoryConditionComponent(com.google.gson.JsonObject json, FamilyMemberHistory owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseFamilyMemberHistoryFamilyMemberHistoryConditionComponentProperties
protected void parseFamilyMemberHistoryFamilyMemberHistoryConditionComponentProperties(com.google.gson.JsonObject json, FamilyMemberHistory owner, FamilyMemberHistory.FamilyMemberHistoryConditionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseFlag
protected Flag parseFlag(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseFlagProperties
protected void parseFlagProperties(com.google.gson.JsonObject json, Flag res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseGoal
protected Goal parseGoal(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseGoalProperties
protected void parseGoalProperties(com.google.gson.JsonObject json, Goal res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseGoalGoalTargetComponent
protected Goal.GoalTargetComponent parseGoalGoalTargetComponent(com.google.gson.JsonObject json, Goal owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseGoalGoalTargetComponentProperties
protected void parseGoalGoalTargetComponentProperties(com.google.gson.JsonObject json, Goal owner, Goal.GoalTargetComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseGraphDefinition
protected GraphDefinition parseGraphDefinition(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseGraphDefinitionProperties
protected void parseGraphDefinitionProperties(com.google.gson.JsonObject json, GraphDefinition res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseGraphDefinitionGraphDefinitionLinkComponent
protected GraphDefinition.GraphDefinitionLinkComponent parseGraphDefinitionGraphDefinitionLinkComponent(com.google.gson.JsonObject json, GraphDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseGraphDefinitionGraphDefinitionLinkComponentProperties
protected void parseGraphDefinitionGraphDefinitionLinkComponentProperties(com.google.gson.JsonObject json, GraphDefinition owner, GraphDefinition.GraphDefinitionLinkComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseGraphDefinitionGraphDefinitionLinkTargetComponent
protected GraphDefinition.GraphDefinitionLinkTargetComponent parseGraphDefinitionGraphDefinitionLinkTargetComponent(com.google.gson.JsonObject json, GraphDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseGraphDefinitionGraphDefinitionLinkTargetComponentProperties
protected void parseGraphDefinitionGraphDefinitionLinkTargetComponentProperties(com.google.gson.JsonObject json, GraphDefinition owner, GraphDefinition.GraphDefinitionLinkTargetComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseGraphDefinitionGraphDefinitionLinkTargetCompartmentComponent
protected GraphDefinition.GraphDefinitionLinkTargetCompartmentComponent parseGraphDefinitionGraphDefinitionLinkTargetCompartmentComponent(com.google.gson.JsonObject json, GraphDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseGraphDefinitionGraphDefinitionLinkTargetCompartmentComponentProperties
protected void parseGraphDefinitionGraphDefinitionLinkTargetCompartmentComponentProperties(com.google.gson.JsonObject json, GraphDefinition owner, GraphDefinition.GraphDefinitionLinkTargetCompartmentComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseGroup
protected Group parseGroup(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseGroupProperties
protected void parseGroupProperties(com.google.gson.JsonObject json, Group res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseGroupGroupCharacteristicComponent
protected Group.GroupCharacteristicComponent parseGroupGroupCharacteristicComponent(com.google.gson.JsonObject json, Group owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseGroupGroupCharacteristicComponentProperties
protected void parseGroupGroupCharacteristicComponentProperties(com.google.gson.JsonObject json, Group owner, Group.GroupCharacteristicComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseGroupGroupMemberComponent
protected Group.GroupMemberComponent parseGroupGroupMemberComponent(com.google.gson.JsonObject json, Group owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseGroupGroupMemberComponentProperties
protected void parseGroupGroupMemberComponentProperties(com.google.gson.JsonObject json, Group owner, Group.GroupMemberComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseGuidanceResponse
protected GuidanceResponse parseGuidanceResponse(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseGuidanceResponseProperties
protected void parseGuidanceResponseProperties(com.google.gson.JsonObject json, GuidanceResponse res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseHealthcareService
protected HealthcareService parseHealthcareService(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseHealthcareServiceProperties
protected void parseHealthcareServiceProperties(com.google.gson.JsonObject json, HealthcareService res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseHealthcareServiceHealthcareServiceEligibilityComponent
protected HealthcareService.HealthcareServiceEligibilityComponent parseHealthcareServiceHealthcareServiceEligibilityComponent(com.google.gson.JsonObject json, HealthcareService owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseHealthcareServiceHealthcareServiceEligibilityComponentProperties
protected void parseHealthcareServiceHealthcareServiceEligibilityComponentProperties(com.google.gson.JsonObject json, HealthcareService owner, HealthcareService.HealthcareServiceEligibilityComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseHealthcareServiceHealthcareServiceAvailableTimeComponent
protected HealthcareService.HealthcareServiceAvailableTimeComponent parseHealthcareServiceHealthcareServiceAvailableTimeComponent(com.google.gson.JsonObject json, HealthcareService owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseHealthcareServiceHealthcareServiceAvailableTimeComponentProperties
protected void parseHealthcareServiceHealthcareServiceAvailableTimeComponentProperties(com.google.gson.JsonObject json, HealthcareService owner, HealthcareService.HealthcareServiceAvailableTimeComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseHealthcareServiceHealthcareServiceNotAvailableComponent
protected HealthcareService.HealthcareServiceNotAvailableComponent parseHealthcareServiceHealthcareServiceNotAvailableComponent(com.google.gson.JsonObject json, HealthcareService owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseHealthcareServiceHealthcareServiceNotAvailableComponentProperties
protected void parseHealthcareServiceHealthcareServiceNotAvailableComponentProperties(com.google.gson.JsonObject json, HealthcareService owner, HealthcareService.HealthcareServiceNotAvailableComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImagingStudy
protected ImagingStudy parseImagingStudy(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImagingStudyProperties
protected void parseImagingStudyProperties(com.google.gson.JsonObject json, ImagingStudy res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImagingStudyImagingStudySeriesComponent
protected ImagingStudy.ImagingStudySeriesComponent parseImagingStudyImagingStudySeriesComponent(com.google.gson.JsonObject json, ImagingStudy owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImagingStudyImagingStudySeriesComponentProperties
protected void parseImagingStudyImagingStudySeriesComponentProperties(com.google.gson.JsonObject json, ImagingStudy owner, ImagingStudy.ImagingStudySeriesComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImagingStudyImagingStudySeriesPerformerComponent
protected ImagingStudy.ImagingStudySeriesPerformerComponent parseImagingStudyImagingStudySeriesPerformerComponent(com.google.gson.JsonObject json, ImagingStudy owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImagingStudyImagingStudySeriesPerformerComponentProperties
protected void parseImagingStudyImagingStudySeriesPerformerComponentProperties(com.google.gson.JsonObject json, ImagingStudy owner, ImagingStudy.ImagingStudySeriesPerformerComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImagingStudyImagingStudySeriesInstanceComponent
protected ImagingStudy.ImagingStudySeriesInstanceComponent parseImagingStudyImagingStudySeriesInstanceComponent(com.google.gson.JsonObject json, ImagingStudy owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImagingStudyImagingStudySeriesInstanceComponentProperties
protected void parseImagingStudyImagingStudySeriesInstanceComponentProperties(com.google.gson.JsonObject json, ImagingStudy owner, ImagingStudy.ImagingStudySeriesInstanceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImmunization
protected Immunization parseImmunization(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImmunizationProperties
protected void parseImmunizationProperties(com.google.gson.JsonObject json, Immunization res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImmunizationImmunizationPerformerComponent
protected Immunization.ImmunizationPerformerComponent parseImmunizationImmunizationPerformerComponent(com.google.gson.JsonObject json, Immunization owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImmunizationImmunizationPerformerComponentProperties
protected void parseImmunizationImmunizationPerformerComponentProperties(com.google.gson.JsonObject json, Immunization owner, Immunization.ImmunizationPerformerComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImmunizationImmunizationEducationComponent
protected Immunization.ImmunizationEducationComponent parseImmunizationImmunizationEducationComponent(com.google.gson.JsonObject json, Immunization owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImmunizationImmunizationEducationComponentProperties
protected void parseImmunizationImmunizationEducationComponentProperties(com.google.gson.JsonObject json, Immunization owner, Immunization.ImmunizationEducationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImmunizationImmunizationReactionComponent
protected Immunization.ImmunizationReactionComponent parseImmunizationImmunizationReactionComponent(com.google.gson.JsonObject json, Immunization owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImmunizationImmunizationReactionComponentProperties
protected void parseImmunizationImmunizationReactionComponentProperties(com.google.gson.JsonObject json, Immunization owner, Immunization.ImmunizationReactionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImmunizationImmunizationProtocolAppliedComponent
protected Immunization.ImmunizationProtocolAppliedComponent parseImmunizationImmunizationProtocolAppliedComponent(com.google.gson.JsonObject json, Immunization owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImmunizationImmunizationProtocolAppliedComponentProperties
protected void parseImmunizationImmunizationProtocolAppliedComponentProperties(com.google.gson.JsonObject json, Immunization owner, Immunization.ImmunizationProtocolAppliedComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImmunizationEvaluation
protected ImmunizationEvaluation parseImmunizationEvaluation(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImmunizationEvaluationProperties
protected void parseImmunizationEvaluationProperties(com.google.gson.JsonObject json, ImmunizationEvaluation res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImmunizationRecommendation
protected ImmunizationRecommendation parseImmunizationRecommendation(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImmunizationRecommendationProperties
protected void parseImmunizationRecommendationProperties(com.google.gson.JsonObject json, ImmunizationRecommendation res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImmunizationRecommendationImmunizationRecommendationRecommendationComponent
protected ImmunizationRecommendation.ImmunizationRecommendationRecommendationComponent parseImmunizationRecommendationImmunizationRecommendationRecommendationComponent(com.google.gson.JsonObject json, ImmunizationRecommendation owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImmunizationRecommendationImmunizationRecommendationRecommendationComponentProperties
protected void parseImmunizationRecommendationImmunizationRecommendationRecommendationComponentProperties(com.google.gson.JsonObject json, ImmunizationRecommendation owner, ImmunizationRecommendation.ImmunizationRecommendationRecommendationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImmunizationRecommendationImmunizationRecommendationRecommendationDateCriterionComponent
protected ImmunizationRecommendation.ImmunizationRecommendationRecommendationDateCriterionComponent parseImmunizationRecommendationImmunizationRecommendationRecommendationDateCriterionComponent(com.google.gson.JsonObject json, ImmunizationRecommendation owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImmunizationRecommendationImmunizationRecommendationRecommendationDateCriterionComponentProperties
protected void parseImmunizationRecommendationImmunizationRecommendationRecommendationDateCriterionComponentProperties(com.google.gson.JsonObject json, ImmunizationRecommendation owner, ImmunizationRecommendation.ImmunizationRecommendationRecommendationDateCriterionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuide
protected ImplementationGuide parseImplementationGuide(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideProperties
protected void parseImplementationGuideProperties(com.google.gson.JsonObject json, ImplementationGuide res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideImplementationGuideDependsOnComponent
protected ImplementationGuide.ImplementationGuideDependsOnComponent parseImplementationGuideImplementationGuideDependsOnComponent(com.google.gson.JsonObject json, ImplementationGuide owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideImplementationGuideDependsOnComponentProperties
protected void parseImplementationGuideImplementationGuideDependsOnComponentProperties(com.google.gson.JsonObject json, ImplementationGuide owner, ImplementationGuide.ImplementationGuideDependsOnComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideImplementationGuideGlobalComponent
protected ImplementationGuide.ImplementationGuideGlobalComponent parseImplementationGuideImplementationGuideGlobalComponent(com.google.gson.JsonObject json, ImplementationGuide owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideImplementationGuideGlobalComponentProperties
protected void parseImplementationGuideImplementationGuideGlobalComponentProperties(com.google.gson.JsonObject json, ImplementationGuide owner, ImplementationGuide.ImplementationGuideGlobalComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideImplementationGuideDefinitionComponent
protected ImplementationGuide.ImplementationGuideDefinitionComponent parseImplementationGuideImplementationGuideDefinitionComponent(com.google.gson.JsonObject json, ImplementationGuide owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideImplementationGuideDefinitionComponentProperties
protected void parseImplementationGuideImplementationGuideDefinitionComponentProperties(com.google.gson.JsonObject json, ImplementationGuide owner, ImplementationGuide.ImplementationGuideDefinitionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideImplementationGuideDefinitionGroupingComponent
protected ImplementationGuide.ImplementationGuideDefinitionGroupingComponent parseImplementationGuideImplementationGuideDefinitionGroupingComponent(com.google.gson.JsonObject json, ImplementationGuide owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideImplementationGuideDefinitionGroupingComponentProperties
protected void parseImplementationGuideImplementationGuideDefinitionGroupingComponentProperties(com.google.gson.JsonObject json, ImplementationGuide owner, ImplementationGuide.ImplementationGuideDefinitionGroupingComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideImplementationGuideDefinitionResourceComponent
protected ImplementationGuide.ImplementationGuideDefinitionResourceComponent parseImplementationGuideImplementationGuideDefinitionResourceComponent(com.google.gson.JsonObject json, ImplementationGuide owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideImplementationGuideDefinitionResourceComponentProperties
protected void parseImplementationGuideImplementationGuideDefinitionResourceComponentProperties(com.google.gson.JsonObject json, ImplementationGuide owner, ImplementationGuide.ImplementationGuideDefinitionResourceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideImplementationGuideDefinitionPageComponent
protected ImplementationGuide.ImplementationGuideDefinitionPageComponent parseImplementationGuideImplementationGuideDefinitionPageComponent(com.google.gson.JsonObject json, ImplementationGuide owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideImplementationGuideDefinitionPageComponentProperties
protected void parseImplementationGuideImplementationGuideDefinitionPageComponentProperties(com.google.gson.JsonObject json, ImplementationGuide owner, ImplementationGuide.ImplementationGuideDefinitionPageComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideImplementationGuideDefinitionParameterComponent
protected ImplementationGuide.ImplementationGuideDefinitionParameterComponent parseImplementationGuideImplementationGuideDefinitionParameterComponent(com.google.gson.JsonObject json, ImplementationGuide owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideImplementationGuideDefinitionParameterComponentProperties
protected void parseImplementationGuideImplementationGuideDefinitionParameterComponentProperties(com.google.gson.JsonObject json, ImplementationGuide owner, ImplementationGuide.ImplementationGuideDefinitionParameterComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideImplementationGuideDefinitionTemplateComponent
protected ImplementationGuide.ImplementationGuideDefinitionTemplateComponent parseImplementationGuideImplementationGuideDefinitionTemplateComponent(com.google.gson.JsonObject json, ImplementationGuide owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideImplementationGuideDefinitionTemplateComponentProperties
protected void parseImplementationGuideImplementationGuideDefinitionTemplateComponentProperties(com.google.gson.JsonObject json, ImplementationGuide owner, ImplementationGuide.ImplementationGuideDefinitionTemplateComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideImplementationGuideManifestComponent
protected ImplementationGuide.ImplementationGuideManifestComponent parseImplementationGuideImplementationGuideManifestComponent(com.google.gson.JsonObject json, ImplementationGuide owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideImplementationGuideManifestComponentProperties
protected void parseImplementationGuideImplementationGuideManifestComponentProperties(com.google.gson.JsonObject json, ImplementationGuide owner, ImplementationGuide.ImplementationGuideManifestComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideManifestResourceComponent
protected ImplementationGuide.ManifestResourceComponent parseImplementationGuideManifestResourceComponent(com.google.gson.JsonObject json, ImplementationGuide owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideManifestResourceComponentProperties
protected void parseImplementationGuideManifestResourceComponentProperties(com.google.gson.JsonObject json, ImplementationGuide owner, ImplementationGuide.ManifestResourceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideManifestPageComponent
protected ImplementationGuide.ManifestPageComponent parseImplementationGuideManifestPageComponent(com.google.gson.JsonObject json, ImplementationGuide owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideManifestPageComponentProperties
protected void parseImplementationGuideManifestPageComponentProperties(com.google.gson.JsonObject json, ImplementationGuide owner, ImplementationGuide.ManifestPageComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInsurancePlan
protected InsurancePlan parseInsurancePlan(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInsurancePlanProperties
protected void parseInsurancePlanProperties(com.google.gson.JsonObject json, InsurancePlan res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInsurancePlanInsurancePlanContactComponent
protected InsurancePlan.InsurancePlanContactComponent parseInsurancePlanInsurancePlanContactComponent(com.google.gson.JsonObject json, InsurancePlan owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInsurancePlanInsurancePlanContactComponentProperties
protected void parseInsurancePlanInsurancePlanContactComponentProperties(com.google.gson.JsonObject json, InsurancePlan owner, InsurancePlan.InsurancePlanContactComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInsurancePlanInsurancePlanCoverageComponent
protected InsurancePlan.InsurancePlanCoverageComponent parseInsurancePlanInsurancePlanCoverageComponent(com.google.gson.JsonObject json, InsurancePlan owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInsurancePlanInsurancePlanCoverageComponentProperties
protected void parseInsurancePlanInsurancePlanCoverageComponentProperties(com.google.gson.JsonObject json, InsurancePlan owner, InsurancePlan.InsurancePlanCoverageComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInsurancePlanCoverageBenefitComponent
protected InsurancePlan.CoverageBenefitComponent parseInsurancePlanCoverageBenefitComponent(com.google.gson.JsonObject json, InsurancePlan owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInsurancePlanCoverageBenefitComponentProperties
protected void parseInsurancePlanCoverageBenefitComponentProperties(com.google.gson.JsonObject json, InsurancePlan owner, InsurancePlan.CoverageBenefitComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInsurancePlanCoverageBenefitLimitComponent
protected InsurancePlan.CoverageBenefitLimitComponent parseInsurancePlanCoverageBenefitLimitComponent(com.google.gson.JsonObject json, InsurancePlan owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInsurancePlanCoverageBenefitLimitComponentProperties
protected void parseInsurancePlanCoverageBenefitLimitComponentProperties(com.google.gson.JsonObject json, InsurancePlan owner, InsurancePlan.CoverageBenefitLimitComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInsurancePlanInsurancePlanPlanComponent
protected InsurancePlan.InsurancePlanPlanComponent parseInsurancePlanInsurancePlanPlanComponent(com.google.gson.JsonObject json, InsurancePlan owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInsurancePlanInsurancePlanPlanComponentProperties
protected void parseInsurancePlanInsurancePlanPlanComponentProperties(com.google.gson.JsonObject json, InsurancePlan owner, InsurancePlan.InsurancePlanPlanComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInsurancePlanInsurancePlanPlanGeneralCostComponent
protected InsurancePlan.InsurancePlanPlanGeneralCostComponent parseInsurancePlanInsurancePlanPlanGeneralCostComponent(com.google.gson.JsonObject json, InsurancePlan owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInsurancePlanInsurancePlanPlanGeneralCostComponentProperties
protected void parseInsurancePlanInsurancePlanPlanGeneralCostComponentProperties(com.google.gson.JsonObject json, InsurancePlan owner, InsurancePlan.InsurancePlanPlanGeneralCostComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInsurancePlanInsurancePlanPlanSpecificCostComponent
protected InsurancePlan.InsurancePlanPlanSpecificCostComponent parseInsurancePlanInsurancePlanPlanSpecificCostComponent(com.google.gson.JsonObject json, InsurancePlan owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInsurancePlanInsurancePlanPlanSpecificCostComponentProperties
protected void parseInsurancePlanInsurancePlanPlanSpecificCostComponentProperties(com.google.gson.JsonObject json, InsurancePlan owner, InsurancePlan.InsurancePlanPlanSpecificCostComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInsurancePlanPlanBenefitComponent
protected InsurancePlan.PlanBenefitComponent parseInsurancePlanPlanBenefitComponent(com.google.gson.JsonObject json, InsurancePlan owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInsurancePlanPlanBenefitComponentProperties
protected void parseInsurancePlanPlanBenefitComponentProperties(com.google.gson.JsonObject json, InsurancePlan owner, InsurancePlan.PlanBenefitComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInsurancePlanPlanBenefitCostComponent
protected InsurancePlan.PlanBenefitCostComponent parseInsurancePlanPlanBenefitCostComponent(com.google.gson.JsonObject json, InsurancePlan owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInsurancePlanPlanBenefitCostComponentProperties
protected void parseInsurancePlanPlanBenefitCostComponentProperties(com.google.gson.JsonObject json, InsurancePlan owner, InsurancePlan.PlanBenefitCostComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInvoice
protected Invoice parseInvoice(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInvoiceProperties
protected void parseInvoiceProperties(com.google.gson.JsonObject json, Invoice res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInvoiceInvoiceParticipantComponent
protected Invoice.InvoiceParticipantComponent parseInvoiceInvoiceParticipantComponent(com.google.gson.JsonObject json, Invoice owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInvoiceInvoiceParticipantComponentProperties
protected void parseInvoiceInvoiceParticipantComponentProperties(com.google.gson.JsonObject json, Invoice owner, Invoice.InvoiceParticipantComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInvoiceInvoiceLineItemComponent
protected Invoice.InvoiceLineItemComponent parseInvoiceInvoiceLineItemComponent(com.google.gson.JsonObject json, Invoice owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInvoiceInvoiceLineItemComponentProperties
protected void parseInvoiceInvoiceLineItemComponentProperties(com.google.gson.JsonObject json, Invoice owner, Invoice.InvoiceLineItemComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInvoiceInvoiceLineItemPriceComponentComponent
protected Invoice.InvoiceLineItemPriceComponentComponent parseInvoiceInvoiceLineItemPriceComponentComponent(com.google.gson.JsonObject json, Invoice owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInvoiceInvoiceLineItemPriceComponentComponentProperties
protected void parseInvoiceInvoiceLineItemPriceComponentComponentProperties(com.google.gson.JsonObject json, Invoice owner, Invoice.InvoiceLineItemPriceComponentComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseLibrary
protected Library parseLibrary(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseLibraryProperties
protected void parseLibraryProperties(com.google.gson.JsonObject json, Library res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseLinkage
protected Linkage parseLinkage(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseLinkageProperties
protected void parseLinkageProperties(com.google.gson.JsonObject json, Linkage res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseLinkageLinkageItemComponent
protected Linkage.LinkageItemComponent parseLinkageLinkageItemComponent(com.google.gson.JsonObject json, Linkage owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseLinkageLinkageItemComponentProperties
protected void parseLinkageLinkageItemComponentProperties(com.google.gson.JsonObject json, Linkage owner, Linkage.LinkageItemComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseListResource
protected ListResource parseListResource(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseListResourceProperties
protected void parseListResourceProperties(com.google.gson.JsonObject json, ListResource res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseListResourceListEntryComponent
protected ListResource.ListEntryComponent parseListResourceListEntryComponent(com.google.gson.JsonObject json, ListResource owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseListResourceListEntryComponentProperties
protected void parseListResourceListEntryComponentProperties(com.google.gson.JsonObject json, ListResource owner, ListResource.ListEntryComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseLocation
protected Location parseLocation(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseLocationProperties
protected void parseLocationProperties(com.google.gson.JsonObject json, Location res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseLocationLocationPositionComponent
protected Location.LocationPositionComponent parseLocationLocationPositionComponent(com.google.gson.JsonObject json, Location owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseLocationLocationPositionComponentProperties
protected void parseLocationLocationPositionComponentProperties(com.google.gson.JsonObject json, Location owner, Location.LocationPositionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseLocationLocationHoursOfOperationComponent
protected Location.LocationHoursOfOperationComponent parseLocationLocationHoursOfOperationComponent(com.google.gson.JsonObject json, Location owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseLocationLocationHoursOfOperationComponentProperties
protected void parseLocationLocationHoursOfOperationComponentProperties(com.google.gson.JsonObject json, Location owner, Location.LocationHoursOfOperationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasure
protected Measure parseMeasure(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureProperties
protected void parseMeasureProperties(com.google.gson.JsonObject json, Measure res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureMeasureGroupComponent
protected Measure.MeasureGroupComponent parseMeasureMeasureGroupComponent(com.google.gson.JsonObject json, Measure owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureMeasureGroupComponentProperties
protected void parseMeasureMeasureGroupComponentProperties(com.google.gson.JsonObject json, Measure owner, Measure.MeasureGroupComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureMeasureGroupPopulationComponent
protected Measure.MeasureGroupPopulationComponent parseMeasureMeasureGroupPopulationComponent(com.google.gson.JsonObject json, Measure owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureMeasureGroupPopulationComponentProperties
protected void parseMeasureMeasureGroupPopulationComponentProperties(com.google.gson.JsonObject json, Measure owner, Measure.MeasureGroupPopulationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureMeasureGroupStratifierComponent
protected Measure.MeasureGroupStratifierComponent parseMeasureMeasureGroupStratifierComponent(com.google.gson.JsonObject json, Measure owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureMeasureGroupStratifierComponentProperties
protected void parseMeasureMeasureGroupStratifierComponentProperties(com.google.gson.JsonObject json, Measure owner, Measure.MeasureGroupStratifierComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureMeasureGroupStratifierComponentComponent
protected Measure.MeasureGroupStratifierComponentComponent parseMeasureMeasureGroupStratifierComponentComponent(com.google.gson.JsonObject json, Measure owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureMeasureGroupStratifierComponentComponentProperties
protected void parseMeasureMeasureGroupStratifierComponentComponentProperties(com.google.gson.JsonObject json, Measure owner, Measure.MeasureGroupStratifierComponentComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureMeasureSupplementalDataComponent
protected Measure.MeasureSupplementalDataComponent parseMeasureMeasureSupplementalDataComponent(com.google.gson.JsonObject json, Measure owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureMeasureSupplementalDataComponentProperties
protected void parseMeasureMeasureSupplementalDataComponentProperties(com.google.gson.JsonObject json, Measure owner, Measure.MeasureSupplementalDataComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureReport
protected MeasureReport parseMeasureReport(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureReportProperties
protected void parseMeasureReportProperties(com.google.gson.JsonObject json, MeasureReport res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureReportMeasureReportGroupComponent
protected MeasureReport.MeasureReportGroupComponent parseMeasureReportMeasureReportGroupComponent(com.google.gson.JsonObject json, MeasureReport owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureReportMeasureReportGroupComponentProperties
protected void parseMeasureReportMeasureReportGroupComponentProperties(com.google.gson.JsonObject json, MeasureReport owner, MeasureReport.MeasureReportGroupComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureReportMeasureReportGroupPopulationComponent
protected MeasureReport.MeasureReportGroupPopulationComponent parseMeasureReportMeasureReportGroupPopulationComponent(com.google.gson.JsonObject json, MeasureReport owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureReportMeasureReportGroupPopulationComponentProperties
protected void parseMeasureReportMeasureReportGroupPopulationComponentProperties(com.google.gson.JsonObject json, MeasureReport owner, MeasureReport.MeasureReportGroupPopulationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureReportMeasureReportGroupStratifierComponent
protected MeasureReport.MeasureReportGroupStratifierComponent parseMeasureReportMeasureReportGroupStratifierComponent(com.google.gson.JsonObject json, MeasureReport owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureReportMeasureReportGroupStratifierComponentProperties
protected void parseMeasureReportMeasureReportGroupStratifierComponentProperties(com.google.gson.JsonObject json, MeasureReport owner, MeasureReport.MeasureReportGroupStratifierComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureReportStratifierGroupComponent
protected MeasureReport.StratifierGroupComponent parseMeasureReportStratifierGroupComponent(com.google.gson.JsonObject json, MeasureReport owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureReportStratifierGroupComponentProperties
protected void parseMeasureReportStratifierGroupComponentProperties(com.google.gson.JsonObject json, MeasureReport owner, MeasureReport.StratifierGroupComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureReportStratifierGroupComponentComponent
protected MeasureReport.StratifierGroupComponentComponent parseMeasureReportStratifierGroupComponentComponent(com.google.gson.JsonObject json, MeasureReport owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureReportStratifierGroupComponentComponentProperties
protected void parseMeasureReportStratifierGroupComponentComponentProperties(com.google.gson.JsonObject json, MeasureReport owner, MeasureReport.StratifierGroupComponentComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureReportStratifierGroupPopulationComponent
protected MeasureReport.StratifierGroupPopulationComponent parseMeasureReportStratifierGroupPopulationComponent(com.google.gson.JsonObject json, MeasureReport owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureReportStratifierGroupPopulationComponentProperties
protected void parseMeasureReportStratifierGroupPopulationComponentProperties(com.google.gson.JsonObject json, MeasureReport owner, MeasureReport.StratifierGroupPopulationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedia
protected Media parseMedia(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMediaProperties
protected void parseMediaProperties(com.google.gson.JsonObject json, Media res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedication
protected Medication parseMedication(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationProperties
protected void parseMedicationProperties(com.google.gson.JsonObject json, Medication res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationMedicationIngredientComponent
protected Medication.MedicationIngredientComponent parseMedicationMedicationIngredientComponent(com.google.gson.JsonObject json, Medication owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationMedicationIngredientComponentProperties
protected void parseMedicationMedicationIngredientComponentProperties(com.google.gson.JsonObject json, Medication owner, Medication.MedicationIngredientComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationMedicationBatchComponent
protected Medication.MedicationBatchComponent parseMedicationMedicationBatchComponent(com.google.gson.JsonObject json, Medication owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationMedicationBatchComponentProperties
protected void parseMedicationMedicationBatchComponentProperties(com.google.gson.JsonObject json, Medication owner, Medication.MedicationBatchComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationAdministration
protected MedicationAdministration parseMedicationAdministration(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationAdministrationProperties
protected void parseMedicationAdministrationProperties(com.google.gson.JsonObject json, MedicationAdministration res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationAdministrationMedicationAdministrationPerformerComponent
protected MedicationAdministration.MedicationAdministrationPerformerComponent parseMedicationAdministrationMedicationAdministrationPerformerComponent(com.google.gson.JsonObject json, MedicationAdministration owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationAdministrationMedicationAdministrationPerformerComponentProperties
protected void parseMedicationAdministrationMedicationAdministrationPerformerComponentProperties(com.google.gson.JsonObject json, MedicationAdministration owner, MedicationAdministration.MedicationAdministrationPerformerComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationAdministrationMedicationAdministrationDosageComponent
protected MedicationAdministration.MedicationAdministrationDosageComponent parseMedicationAdministrationMedicationAdministrationDosageComponent(com.google.gson.JsonObject json, MedicationAdministration owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationAdministrationMedicationAdministrationDosageComponentProperties
protected void parseMedicationAdministrationMedicationAdministrationDosageComponentProperties(com.google.gson.JsonObject json, MedicationAdministration owner, MedicationAdministration.MedicationAdministrationDosageComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationDispense
protected MedicationDispense parseMedicationDispense(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationDispenseProperties
protected void parseMedicationDispenseProperties(com.google.gson.JsonObject json, MedicationDispense res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationDispenseMedicationDispensePerformerComponent
protected MedicationDispense.MedicationDispensePerformerComponent parseMedicationDispenseMedicationDispensePerformerComponent(com.google.gson.JsonObject json, MedicationDispense owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationDispenseMedicationDispensePerformerComponentProperties
protected void parseMedicationDispenseMedicationDispensePerformerComponentProperties(com.google.gson.JsonObject json, MedicationDispense owner, MedicationDispense.MedicationDispensePerformerComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationDispenseMedicationDispenseSubstitutionComponent
protected MedicationDispense.MedicationDispenseSubstitutionComponent parseMedicationDispenseMedicationDispenseSubstitutionComponent(com.google.gson.JsonObject json, MedicationDispense owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationDispenseMedicationDispenseSubstitutionComponentProperties
protected void parseMedicationDispenseMedicationDispenseSubstitutionComponentProperties(com.google.gson.JsonObject json, MedicationDispense owner, MedicationDispense.MedicationDispenseSubstitutionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledge
protected MedicationKnowledge parseMedicationKnowledge(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeProperties
protected void parseMedicationKnowledgeProperties(com.google.gson.JsonObject json, MedicationKnowledge res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMedicationKnowledgeRelatedMedicationKnowledgeComponent
protected MedicationKnowledge.MedicationKnowledgeRelatedMedicationKnowledgeComponent parseMedicationKnowledgeMedicationKnowledgeRelatedMedicationKnowledgeComponent(com.google.gson.JsonObject json, MedicationKnowledge owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMedicationKnowledgeRelatedMedicationKnowledgeComponentProperties
protected void parseMedicationKnowledgeMedicationKnowledgeRelatedMedicationKnowledgeComponentProperties(com.google.gson.JsonObject json, MedicationKnowledge owner, MedicationKnowledge.MedicationKnowledgeRelatedMedicationKnowledgeComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMedicationKnowledgeMonographComponent
protected MedicationKnowledge.MedicationKnowledgeMonographComponent parseMedicationKnowledgeMedicationKnowledgeMonographComponent(com.google.gson.JsonObject json, MedicationKnowledge owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMedicationKnowledgeMonographComponentProperties
protected void parseMedicationKnowledgeMedicationKnowledgeMonographComponentProperties(com.google.gson.JsonObject json, MedicationKnowledge owner, MedicationKnowledge.MedicationKnowledgeMonographComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMedicationKnowledgeIngredientComponent
protected MedicationKnowledge.MedicationKnowledgeIngredientComponent parseMedicationKnowledgeMedicationKnowledgeIngredientComponent(com.google.gson.JsonObject json, MedicationKnowledge owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMedicationKnowledgeIngredientComponentProperties
protected void parseMedicationKnowledgeMedicationKnowledgeIngredientComponentProperties(com.google.gson.JsonObject json, MedicationKnowledge owner, MedicationKnowledge.MedicationKnowledgeIngredientComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMedicationKnowledgeCostComponent
protected MedicationKnowledge.MedicationKnowledgeCostComponent parseMedicationKnowledgeMedicationKnowledgeCostComponent(com.google.gson.JsonObject json, MedicationKnowledge owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMedicationKnowledgeCostComponentProperties
protected void parseMedicationKnowledgeMedicationKnowledgeCostComponentProperties(com.google.gson.JsonObject json, MedicationKnowledge owner, MedicationKnowledge.MedicationKnowledgeCostComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMedicationKnowledgeMonitoringProgramComponent
protected MedicationKnowledge.MedicationKnowledgeMonitoringProgramComponent parseMedicationKnowledgeMedicationKnowledgeMonitoringProgramComponent(com.google.gson.JsonObject json, MedicationKnowledge owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMedicationKnowledgeMonitoringProgramComponentProperties
protected void parseMedicationKnowledgeMedicationKnowledgeMonitoringProgramComponentProperties(com.google.gson.JsonObject json, MedicationKnowledge owner, MedicationKnowledge.MedicationKnowledgeMonitoringProgramComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMedicationKnowledgeAdministrationGuidelinesComponent
protected MedicationKnowledge.MedicationKnowledgeAdministrationGuidelinesComponent parseMedicationKnowledgeMedicationKnowledgeAdministrationGuidelinesComponent(com.google.gson.JsonObject json, MedicationKnowledge owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMedicationKnowledgeAdministrationGuidelinesComponentProperties
protected void parseMedicationKnowledgeMedicationKnowledgeAdministrationGuidelinesComponentProperties(com.google.gson.JsonObject json, MedicationKnowledge owner, MedicationKnowledge.MedicationKnowledgeAdministrationGuidelinesComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMedicationKnowledgeAdministrationGuidelinesDosageComponent
protected MedicationKnowledge.MedicationKnowledgeAdministrationGuidelinesDosageComponent parseMedicationKnowledgeMedicationKnowledgeAdministrationGuidelinesDosageComponent(com.google.gson.JsonObject json, MedicationKnowledge owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMedicationKnowledgeAdministrationGuidelinesDosageComponentProperties
protected void parseMedicationKnowledgeMedicationKnowledgeAdministrationGuidelinesDosageComponentProperties(com.google.gson.JsonObject json, MedicationKnowledge owner, MedicationKnowledge.MedicationKnowledgeAdministrationGuidelinesDosageComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMedicationKnowledgeAdministrationGuidelinesPatientCharacteristicsComponent
protected MedicationKnowledge.MedicationKnowledgeAdministrationGuidelinesPatientCharacteristicsComponent parseMedicationKnowledgeMedicationKnowledgeAdministrationGuidelinesPatientCharacteristicsComponent(com.google.gson.JsonObject json, MedicationKnowledge owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMedicationKnowledgeAdministrationGuidelinesPatientCharacteristicsComponentProperties
protected void parseMedicationKnowledgeMedicationKnowledgeAdministrationGuidelinesPatientCharacteristicsComponentProperties(com.google.gson.JsonObject json, MedicationKnowledge owner, MedicationKnowledge.MedicationKnowledgeAdministrationGuidelinesPatientCharacteristicsComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMedicationKnowledgeMedicineClassificationComponent
protected MedicationKnowledge.MedicationKnowledgeMedicineClassificationComponent parseMedicationKnowledgeMedicationKnowledgeMedicineClassificationComponent(com.google.gson.JsonObject json, MedicationKnowledge owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMedicationKnowledgeMedicineClassificationComponentProperties
protected void parseMedicationKnowledgeMedicationKnowledgeMedicineClassificationComponentProperties(com.google.gson.JsonObject json, MedicationKnowledge owner, MedicationKnowledge.MedicationKnowledgeMedicineClassificationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMedicationKnowledgePackagingComponent
protected MedicationKnowledge.MedicationKnowledgePackagingComponent parseMedicationKnowledgeMedicationKnowledgePackagingComponent(com.google.gson.JsonObject json, MedicationKnowledge owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMedicationKnowledgePackagingComponentProperties
protected void parseMedicationKnowledgeMedicationKnowledgePackagingComponentProperties(com.google.gson.JsonObject json, MedicationKnowledge owner, MedicationKnowledge.MedicationKnowledgePackagingComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMedicationKnowledgeDrugCharacteristicComponent
protected MedicationKnowledge.MedicationKnowledgeDrugCharacteristicComponent parseMedicationKnowledgeMedicationKnowledgeDrugCharacteristicComponent(com.google.gson.JsonObject json, MedicationKnowledge owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMedicationKnowledgeDrugCharacteristicComponentProperties
protected void parseMedicationKnowledgeMedicationKnowledgeDrugCharacteristicComponentProperties(com.google.gson.JsonObject json, MedicationKnowledge owner, MedicationKnowledge.MedicationKnowledgeDrugCharacteristicComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMedicationKnowledgeRegulatoryComponent
protected MedicationKnowledge.MedicationKnowledgeRegulatoryComponent parseMedicationKnowledgeMedicationKnowledgeRegulatoryComponent(com.google.gson.JsonObject json, MedicationKnowledge owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMedicationKnowledgeRegulatoryComponentProperties
protected void parseMedicationKnowledgeMedicationKnowledgeRegulatoryComponentProperties(com.google.gson.JsonObject json, MedicationKnowledge owner, MedicationKnowledge.MedicationKnowledgeRegulatoryComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMedicationKnowledgeRegulatorySubstitutionComponent
protected MedicationKnowledge.MedicationKnowledgeRegulatorySubstitutionComponent parseMedicationKnowledgeMedicationKnowledgeRegulatorySubstitutionComponent(com.google.gson.JsonObject json, MedicationKnowledge owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMedicationKnowledgeRegulatorySubstitutionComponentProperties
protected void parseMedicationKnowledgeMedicationKnowledgeRegulatorySubstitutionComponentProperties(com.google.gson.JsonObject json, MedicationKnowledge owner, MedicationKnowledge.MedicationKnowledgeRegulatorySubstitutionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMedicationKnowledgeRegulatoryScheduleComponent
protected MedicationKnowledge.MedicationKnowledgeRegulatoryScheduleComponent parseMedicationKnowledgeMedicationKnowledgeRegulatoryScheduleComponent(com.google.gson.JsonObject json, MedicationKnowledge owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMedicationKnowledgeRegulatoryScheduleComponentProperties
protected void parseMedicationKnowledgeMedicationKnowledgeRegulatoryScheduleComponentProperties(com.google.gson.JsonObject json, MedicationKnowledge owner, MedicationKnowledge.MedicationKnowledgeRegulatoryScheduleComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMedicationKnowledgeRegulatoryMaxDispenseComponent
protected MedicationKnowledge.MedicationKnowledgeRegulatoryMaxDispenseComponent parseMedicationKnowledgeMedicationKnowledgeRegulatoryMaxDispenseComponent(com.google.gson.JsonObject json, MedicationKnowledge owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMedicationKnowledgeRegulatoryMaxDispenseComponentProperties
protected void parseMedicationKnowledgeMedicationKnowledgeRegulatoryMaxDispenseComponentProperties(com.google.gson.JsonObject json, MedicationKnowledge owner, MedicationKnowledge.MedicationKnowledgeRegulatoryMaxDispenseComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMedicationKnowledgeKineticsComponent
protected MedicationKnowledge.MedicationKnowledgeKineticsComponent parseMedicationKnowledgeMedicationKnowledgeKineticsComponent(com.google.gson.JsonObject json, MedicationKnowledge owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMedicationKnowledgeKineticsComponentProperties
protected void parseMedicationKnowledgeMedicationKnowledgeKineticsComponentProperties(com.google.gson.JsonObject json, MedicationKnowledge owner, MedicationKnowledge.MedicationKnowledgeKineticsComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationRequest
protected MedicationRequest parseMedicationRequest(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationRequestProperties
protected void parseMedicationRequestProperties(com.google.gson.JsonObject json, MedicationRequest res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationRequestMedicationRequestDispenseRequestComponent
protected MedicationRequest.MedicationRequestDispenseRequestComponent parseMedicationRequestMedicationRequestDispenseRequestComponent(com.google.gson.JsonObject json, MedicationRequest owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationRequestMedicationRequestDispenseRequestComponentProperties
protected void parseMedicationRequestMedicationRequestDispenseRequestComponentProperties(com.google.gson.JsonObject json, MedicationRequest owner, MedicationRequest.MedicationRequestDispenseRequestComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationRequestMedicationRequestDispenseRequestInitialFillComponent
protected MedicationRequest.MedicationRequestDispenseRequestInitialFillComponent parseMedicationRequestMedicationRequestDispenseRequestInitialFillComponent(com.google.gson.JsonObject json, MedicationRequest owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationRequestMedicationRequestDispenseRequestInitialFillComponentProperties
protected void parseMedicationRequestMedicationRequestDispenseRequestInitialFillComponentProperties(com.google.gson.JsonObject json, MedicationRequest owner, MedicationRequest.MedicationRequestDispenseRequestInitialFillComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationRequestMedicationRequestSubstitutionComponent
protected MedicationRequest.MedicationRequestSubstitutionComponent parseMedicationRequestMedicationRequestSubstitutionComponent(com.google.gson.JsonObject json, MedicationRequest owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationRequestMedicationRequestSubstitutionComponentProperties
protected void parseMedicationRequestMedicationRequestSubstitutionComponentProperties(com.google.gson.JsonObject json, MedicationRequest owner, MedicationRequest.MedicationRequestSubstitutionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationStatement
protected MedicationStatement parseMedicationStatement(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationStatementProperties
protected void parseMedicationStatementProperties(com.google.gson.JsonObject json, MedicationStatement res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProduct
protected MedicinalProduct parseMedicinalProduct(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductProperties
protected void parseMedicinalProductProperties(com.google.gson.JsonObject json, MedicinalProduct res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductMedicinalProductNameComponent
protected MedicinalProduct.MedicinalProductNameComponent parseMedicinalProductMedicinalProductNameComponent(com.google.gson.JsonObject json, MedicinalProduct owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductMedicinalProductNameComponentProperties
protected void parseMedicinalProductMedicinalProductNameComponentProperties(com.google.gson.JsonObject json, MedicinalProduct owner, MedicinalProduct.MedicinalProductNameComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductMedicinalProductNameNamePartComponent
protected MedicinalProduct.MedicinalProductNameNamePartComponent parseMedicinalProductMedicinalProductNameNamePartComponent(com.google.gson.JsonObject json, MedicinalProduct owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductMedicinalProductNameNamePartComponentProperties
protected void parseMedicinalProductMedicinalProductNameNamePartComponentProperties(com.google.gson.JsonObject json, MedicinalProduct owner, MedicinalProduct.MedicinalProductNameNamePartComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductMedicinalProductNameCountryLanguageComponent
protected MedicinalProduct.MedicinalProductNameCountryLanguageComponent parseMedicinalProductMedicinalProductNameCountryLanguageComponent(com.google.gson.JsonObject json, MedicinalProduct owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductMedicinalProductNameCountryLanguageComponentProperties
protected void parseMedicinalProductMedicinalProductNameCountryLanguageComponentProperties(com.google.gson.JsonObject json, MedicinalProduct owner, MedicinalProduct.MedicinalProductNameCountryLanguageComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductMedicinalProductManufacturingBusinessOperationComponent
protected MedicinalProduct.MedicinalProductManufacturingBusinessOperationComponent parseMedicinalProductMedicinalProductManufacturingBusinessOperationComponent(com.google.gson.JsonObject json, MedicinalProduct owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductMedicinalProductManufacturingBusinessOperationComponentProperties
protected void parseMedicinalProductMedicinalProductManufacturingBusinessOperationComponentProperties(com.google.gson.JsonObject json, MedicinalProduct owner, MedicinalProduct.MedicinalProductManufacturingBusinessOperationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductMedicinalProductSpecialDesignationComponent
protected MedicinalProduct.MedicinalProductSpecialDesignationComponent parseMedicinalProductMedicinalProductSpecialDesignationComponent(com.google.gson.JsonObject json, MedicinalProduct owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductMedicinalProductSpecialDesignationComponentProperties
protected void parseMedicinalProductMedicinalProductSpecialDesignationComponentProperties(com.google.gson.JsonObject json, MedicinalProduct owner, MedicinalProduct.MedicinalProductSpecialDesignationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductAuthorization
protected MedicinalProductAuthorization parseMedicinalProductAuthorization(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductAuthorizationProperties
protected void parseMedicinalProductAuthorizationProperties(com.google.gson.JsonObject json, MedicinalProductAuthorization res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductAuthorizationMedicinalProductAuthorizationJurisdictionalAuthorizationComponent
protected MedicinalProductAuthorization.MedicinalProductAuthorizationJurisdictionalAuthorizationComponent parseMedicinalProductAuthorizationMedicinalProductAuthorizationJurisdictionalAuthorizationComponent(com.google.gson.JsonObject json, MedicinalProductAuthorization owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductAuthorizationMedicinalProductAuthorizationJurisdictionalAuthorizationComponentProperties
protected void parseMedicinalProductAuthorizationMedicinalProductAuthorizationJurisdictionalAuthorizationComponentProperties(com.google.gson.JsonObject json, MedicinalProductAuthorization owner, MedicinalProductAuthorization.MedicinalProductAuthorizationJurisdictionalAuthorizationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductAuthorizationMedicinalProductAuthorizationProcedureComponent
protected MedicinalProductAuthorization.MedicinalProductAuthorizationProcedureComponent parseMedicinalProductAuthorizationMedicinalProductAuthorizationProcedureComponent(com.google.gson.JsonObject json, MedicinalProductAuthorization owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductAuthorizationMedicinalProductAuthorizationProcedureComponentProperties
protected void parseMedicinalProductAuthorizationMedicinalProductAuthorizationProcedureComponentProperties(com.google.gson.JsonObject json, MedicinalProductAuthorization owner, MedicinalProductAuthorization.MedicinalProductAuthorizationProcedureComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductContraindication
protected MedicinalProductContraindication parseMedicinalProductContraindication(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductContraindicationProperties
protected void parseMedicinalProductContraindicationProperties(com.google.gson.JsonObject json, MedicinalProductContraindication res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductContraindicationMedicinalProductContraindicationOtherTherapyComponent
protected MedicinalProductContraindication.MedicinalProductContraindicationOtherTherapyComponent parseMedicinalProductContraindicationMedicinalProductContraindicationOtherTherapyComponent(com.google.gson.JsonObject json, MedicinalProductContraindication owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductContraindicationMedicinalProductContraindicationOtherTherapyComponentProperties
protected void parseMedicinalProductContraindicationMedicinalProductContraindicationOtherTherapyComponentProperties(com.google.gson.JsonObject json, MedicinalProductContraindication owner, MedicinalProductContraindication.MedicinalProductContraindicationOtherTherapyComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductIndication
protected MedicinalProductIndication parseMedicinalProductIndication(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductIndicationProperties
protected void parseMedicinalProductIndicationProperties(com.google.gson.JsonObject json, MedicinalProductIndication res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductIndicationMedicinalProductIndicationOtherTherapyComponent
protected MedicinalProductIndication.MedicinalProductIndicationOtherTherapyComponent parseMedicinalProductIndicationMedicinalProductIndicationOtherTherapyComponent(com.google.gson.JsonObject json, MedicinalProductIndication owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductIndicationMedicinalProductIndicationOtherTherapyComponentProperties
protected void parseMedicinalProductIndicationMedicinalProductIndicationOtherTherapyComponentProperties(com.google.gson.JsonObject json, MedicinalProductIndication owner, MedicinalProductIndication.MedicinalProductIndicationOtherTherapyComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductIngredient
protected MedicinalProductIngredient parseMedicinalProductIngredient(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductIngredientProperties
protected void parseMedicinalProductIngredientProperties(com.google.gson.JsonObject json, MedicinalProductIngredient res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductIngredientMedicinalProductIngredientSpecifiedSubstanceComponent
protected MedicinalProductIngredient.MedicinalProductIngredientSpecifiedSubstanceComponent parseMedicinalProductIngredientMedicinalProductIngredientSpecifiedSubstanceComponent(com.google.gson.JsonObject json, MedicinalProductIngredient owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductIngredientMedicinalProductIngredientSpecifiedSubstanceComponentProperties
protected void parseMedicinalProductIngredientMedicinalProductIngredientSpecifiedSubstanceComponentProperties(com.google.gson.JsonObject json, MedicinalProductIngredient owner, MedicinalProductIngredient.MedicinalProductIngredientSpecifiedSubstanceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductIngredientMedicinalProductIngredientSpecifiedSubstanceStrengthComponent
protected MedicinalProductIngredient.MedicinalProductIngredientSpecifiedSubstanceStrengthComponent parseMedicinalProductIngredientMedicinalProductIngredientSpecifiedSubstanceStrengthComponent(com.google.gson.JsonObject json, MedicinalProductIngredient owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductIngredientMedicinalProductIngredientSpecifiedSubstanceStrengthComponentProperties
protected void parseMedicinalProductIngredientMedicinalProductIngredientSpecifiedSubstanceStrengthComponentProperties(com.google.gson.JsonObject json, MedicinalProductIngredient owner, MedicinalProductIngredient.MedicinalProductIngredientSpecifiedSubstanceStrengthComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductIngredientMedicinalProductIngredientSpecifiedSubstanceStrengthReferenceStrengthComponent
protected MedicinalProductIngredient.MedicinalProductIngredientSpecifiedSubstanceStrengthReferenceStrengthComponent parseMedicinalProductIngredientMedicinalProductIngredientSpecifiedSubstanceStrengthReferenceStrengthComponent(com.google.gson.JsonObject json, MedicinalProductIngredient owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductIngredientMedicinalProductIngredientSpecifiedSubstanceStrengthReferenceStrengthComponentProperties
protected void parseMedicinalProductIngredientMedicinalProductIngredientSpecifiedSubstanceStrengthReferenceStrengthComponentProperties(com.google.gson.JsonObject json, MedicinalProductIngredient owner, MedicinalProductIngredient.MedicinalProductIngredientSpecifiedSubstanceStrengthReferenceStrengthComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductIngredientMedicinalProductIngredientSubstanceComponent
protected MedicinalProductIngredient.MedicinalProductIngredientSubstanceComponent parseMedicinalProductIngredientMedicinalProductIngredientSubstanceComponent(com.google.gson.JsonObject json, MedicinalProductIngredient owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductIngredientMedicinalProductIngredientSubstanceComponentProperties
protected void parseMedicinalProductIngredientMedicinalProductIngredientSubstanceComponentProperties(com.google.gson.JsonObject json, MedicinalProductIngredient owner, MedicinalProductIngredient.MedicinalProductIngredientSubstanceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductInteraction
protected MedicinalProductInteraction parseMedicinalProductInteraction(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductInteractionProperties
protected void parseMedicinalProductInteractionProperties(com.google.gson.JsonObject json, MedicinalProductInteraction res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductInteractionMedicinalProductInteractionInteractantComponent
protected MedicinalProductInteraction.MedicinalProductInteractionInteractantComponent parseMedicinalProductInteractionMedicinalProductInteractionInteractantComponent(com.google.gson.JsonObject json, MedicinalProductInteraction owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductInteractionMedicinalProductInteractionInteractantComponentProperties
protected void parseMedicinalProductInteractionMedicinalProductInteractionInteractantComponentProperties(com.google.gson.JsonObject json, MedicinalProductInteraction owner, MedicinalProductInteraction.MedicinalProductInteractionInteractantComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductManufactured
protected MedicinalProductManufactured parseMedicinalProductManufactured(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductManufacturedProperties
protected void parseMedicinalProductManufacturedProperties(com.google.gson.JsonObject json, MedicinalProductManufactured res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductPackaged
protected MedicinalProductPackaged parseMedicinalProductPackaged(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductPackagedProperties
protected void parseMedicinalProductPackagedProperties(com.google.gson.JsonObject json, MedicinalProductPackaged res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductPackagedMedicinalProductPackagedBatchIdentifierComponent
protected MedicinalProductPackaged.MedicinalProductPackagedBatchIdentifierComponent parseMedicinalProductPackagedMedicinalProductPackagedBatchIdentifierComponent(com.google.gson.JsonObject json, MedicinalProductPackaged owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductPackagedMedicinalProductPackagedBatchIdentifierComponentProperties
protected void parseMedicinalProductPackagedMedicinalProductPackagedBatchIdentifierComponentProperties(com.google.gson.JsonObject json, MedicinalProductPackaged owner, MedicinalProductPackaged.MedicinalProductPackagedBatchIdentifierComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductPackagedMedicinalProductPackagedPackageItemComponent
protected MedicinalProductPackaged.MedicinalProductPackagedPackageItemComponent parseMedicinalProductPackagedMedicinalProductPackagedPackageItemComponent(com.google.gson.JsonObject json, MedicinalProductPackaged owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductPackagedMedicinalProductPackagedPackageItemComponentProperties
protected void parseMedicinalProductPackagedMedicinalProductPackagedPackageItemComponentProperties(com.google.gson.JsonObject json, MedicinalProductPackaged owner, MedicinalProductPackaged.MedicinalProductPackagedPackageItemComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductPharmaceutical
protected MedicinalProductPharmaceutical parseMedicinalProductPharmaceutical(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductPharmaceuticalProperties
protected void parseMedicinalProductPharmaceuticalProperties(com.google.gson.JsonObject json, MedicinalProductPharmaceutical res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductPharmaceuticalMedicinalProductPharmaceuticalCharacteristicsComponent
protected MedicinalProductPharmaceutical.MedicinalProductPharmaceuticalCharacteristicsComponent parseMedicinalProductPharmaceuticalMedicinalProductPharmaceuticalCharacteristicsComponent(com.google.gson.JsonObject json, MedicinalProductPharmaceutical owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductPharmaceuticalMedicinalProductPharmaceuticalCharacteristicsComponentProperties
protected void parseMedicinalProductPharmaceuticalMedicinalProductPharmaceuticalCharacteristicsComponentProperties(com.google.gson.JsonObject json, MedicinalProductPharmaceutical owner, MedicinalProductPharmaceutical.MedicinalProductPharmaceuticalCharacteristicsComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductPharmaceuticalMedicinalProductPharmaceuticalRouteOfAdministrationComponent
protected MedicinalProductPharmaceutical.MedicinalProductPharmaceuticalRouteOfAdministrationComponent parseMedicinalProductPharmaceuticalMedicinalProductPharmaceuticalRouteOfAdministrationComponent(com.google.gson.JsonObject json, MedicinalProductPharmaceutical owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductPharmaceuticalMedicinalProductPharmaceuticalRouteOfAdministrationComponentProperties
protected void parseMedicinalProductPharmaceuticalMedicinalProductPharmaceuticalRouteOfAdministrationComponentProperties(com.google.gson.JsonObject json, MedicinalProductPharmaceutical owner, MedicinalProductPharmaceutical.MedicinalProductPharmaceuticalRouteOfAdministrationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductPharmaceuticalMedicinalProductPharmaceuticalRouteOfAdministrationTargetSpeciesComponent
protected MedicinalProductPharmaceutical.MedicinalProductPharmaceuticalRouteOfAdministrationTargetSpeciesComponent parseMedicinalProductPharmaceuticalMedicinalProductPharmaceuticalRouteOfAdministrationTargetSpeciesComponent(com.google.gson.JsonObject json, MedicinalProductPharmaceutical owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductPharmaceuticalMedicinalProductPharmaceuticalRouteOfAdministrationTargetSpeciesComponentProperties
protected void parseMedicinalProductPharmaceuticalMedicinalProductPharmaceuticalRouteOfAdministrationTargetSpeciesComponentProperties(com.google.gson.JsonObject json, MedicinalProductPharmaceutical owner, MedicinalProductPharmaceutical.MedicinalProductPharmaceuticalRouteOfAdministrationTargetSpeciesComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductPharmaceuticalMedicinalProductPharmaceuticalRouteOfAdministrationTargetSpeciesWithdrawalPeriodComponent
protected MedicinalProductPharmaceutical.MedicinalProductPharmaceuticalRouteOfAdministrationTargetSpeciesWithdrawalPeriodComponent parseMedicinalProductPharmaceuticalMedicinalProductPharmaceuticalRouteOfAdministrationTargetSpeciesWithdrawalPeriodComponent(com.google.gson.JsonObject json, MedicinalProductPharmaceutical owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductPharmaceuticalMedicinalProductPharmaceuticalRouteOfAdministrationTargetSpeciesWithdrawalPeriodComponentProperties
protected void parseMedicinalProductPharmaceuticalMedicinalProductPharmaceuticalRouteOfAdministrationTargetSpeciesWithdrawalPeriodComponentProperties(com.google.gson.JsonObject json, MedicinalProductPharmaceutical owner, MedicinalProductPharmaceutical.MedicinalProductPharmaceuticalRouteOfAdministrationTargetSpeciesWithdrawalPeriodComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductUndesirableEffect
protected MedicinalProductUndesirableEffect parseMedicinalProductUndesirableEffect(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductUndesirableEffectProperties
protected void parseMedicinalProductUndesirableEffectProperties(com.google.gson.JsonObject json, MedicinalProductUndesirableEffect res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMessageDefinition
protected MessageDefinition parseMessageDefinition(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMessageDefinitionProperties
protected void parseMessageDefinitionProperties(com.google.gson.JsonObject json, MessageDefinition res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMessageDefinitionMessageDefinitionFocusComponent
protected MessageDefinition.MessageDefinitionFocusComponent parseMessageDefinitionMessageDefinitionFocusComponent(com.google.gson.JsonObject json, MessageDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMessageDefinitionMessageDefinitionFocusComponentProperties
protected void parseMessageDefinitionMessageDefinitionFocusComponentProperties(com.google.gson.JsonObject json, MessageDefinition owner, MessageDefinition.MessageDefinitionFocusComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMessageDefinitionMessageDefinitionAllowedResponseComponent
protected MessageDefinition.MessageDefinitionAllowedResponseComponent parseMessageDefinitionMessageDefinitionAllowedResponseComponent(com.google.gson.JsonObject json, MessageDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMessageDefinitionMessageDefinitionAllowedResponseComponentProperties
protected void parseMessageDefinitionMessageDefinitionAllowedResponseComponentProperties(com.google.gson.JsonObject json, MessageDefinition owner, MessageDefinition.MessageDefinitionAllowedResponseComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMessageHeader
protected MessageHeader parseMessageHeader(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMessageHeaderProperties
protected void parseMessageHeaderProperties(com.google.gson.JsonObject json, MessageHeader res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMessageHeaderMessageDestinationComponent
protected MessageHeader.MessageDestinationComponent parseMessageHeaderMessageDestinationComponent(com.google.gson.JsonObject json, MessageHeader owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMessageHeaderMessageDestinationComponentProperties
protected void parseMessageHeaderMessageDestinationComponentProperties(com.google.gson.JsonObject json, MessageHeader owner, MessageHeader.MessageDestinationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMessageHeaderMessageSourceComponent
protected MessageHeader.MessageSourceComponent parseMessageHeaderMessageSourceComponent(com.google.gson.JsonObject json, MessageHeader owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMessageHeaderMessageSourceComponentProperties
protected void parseMessageHeaderMessageSourceComponentProperties(com.google.gson.JsonObject json, MessageHeader owner, MessageHeader.MessageSourceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMessageHeaderMessageHeaderResponseComponent
protected MessageHeader.MessageHeaderResponseComponent parseMessageHeaderMessageHeaderResponseComponent(com.google.gson.JsonObject json, MessageHeader owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMessageHeaderMessageHeaderResponseComponentProperties
protected void parseMessageHeaderMessageHeaderResponseComponentProperties(com.google.gson.JsonObject json, MessageHeader owner, MessageHeader.MessageHeaderResponseComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMolecularSequence
protected MolecularSequence parseMolecularSequence(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMolecularSequenceProperties
protected void parseMolecularSequenceProperties(com.google.gson.JsonObject json, MolecularSequence res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMolecularSequenceMolecularSequenceReferenceSeqComponent
protected MolecularSequence.MolecularSequenceReferenceSeqComponent parseMolecularSequenceMolecularSequenceReferenceSeqComponent(com.google.gson.JsonObject json, MolecularSequence owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMolecularSequenceMolecularSequenceReferenceSeqComponentProperties
protected void parseMolecularSequenceMolecularSequenceReferenceSeqComponentProperties(com.google.gson.JsonObject json, MolecularSequence owner, MolecularSequence.MolecularSequenceReferenceSeqComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMolecularSequenceMolecularSequenceVariantComponent
protected MolecularSequence.MolecularSequenceVariantComponent parseMolecularSequenceMolecularSequenceVariantComponent(com.google.gson.JsonObject json, MolecularSequence owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMolecularSequenceMolecularSequenceVariantComponentProperties
protected void parseMolecularSequenceMolecularSequenceVariantComponentProperties(com.google.gson.JsonObject json, MolecularSequence owner, MolecularSequence.MolecularSequenceVariantComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMolecularSequenceMolecularSequenceQualityComponent
protected MolecularSequence.MolecularSequenceQualityComponent parseMolecularSequenceMolecularSequenceQualityComponent(com.google.gson.JsonObject json, MolecularSequence owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMolecularSequenceMolecularSequenceQualityComponentProperties
protected void parseMolecularSequenceMolecularSequenceQualityComponentProperties(com.google.gson.JsonObject json, MolecularSequence owner, MolecularSequence.MolecularSequenceQualityComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMolecularSequenceMolecularSequenceQualityRocComponent
protected MolecularSequence.MolecularSequenceQualityRocComponent parseMolecularSequenceMolecularSequenceQualityRocComponent(com.google.gson.JsonObject json, MolecularSequence owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMolecularSequenceMolecularSequenceQualityRocComponentProperties
protected void parseMolecularSequenceMolecularSequenceQualityRocComponentProperties(com.google.gson.JsonObject json, MolecularSequence owner, MolecularSequence.MolecularSequenceQualityRocComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMolecularSequenceMolecularSequenceRepositoryComponent
protected MolecularSequence.MolecularSequenceRepositoryComponent parseMolecularSequenceMolecularSequenceRepositoryComponent(com.google.gson.JsonObject json, MolecularSequence owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMolecularSequenceMolecularSequenceRepositoryComponentProperties
protected void parseMolecularSequenceMolecularSequenceRepositoryComponentProperties(com.google.gson.JsonObject json, MolecularSequence owner, MolecularSequence.MolecularSequenceRepositoryComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMolecularSequenceMolecularSequenceStructureVariantComponent
protected MolecularSequence.MolecularSequenceStructureVariantComponent parseMolecularSequenceMolecularSequenceStructureVariantComponent(com.google.gson.JsonObject json, MolecularSequence owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMolecularSequenceMolecularSequenceStructureVariantComponentProperties
protected void parseMolecularSequenceMolecularSequenceStructureVariantComponentProperties(com.google.gson.JsonObject json, MolecularSequence owner, MolecularSequence.MolecularSequenceStructureVariantComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMolecularSequenceMolecularSequenceStructureVariantOuterComponent
protected MolecularSequence.MolecularSequenceStructureVariantOuterComponent parseMolecularSequenceMolecularSequenceStructureVariantOuterComponent(com.google.gson.JsonObject json, MolecularSequence owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMolecularSequenceMolecularSequenceStructureVariantOuterComponentProperties
protected void parseMolecularSequenceMolecularSequenceStructureVariantOuterComponentProperties(com.google.gson.JsonObject json, MolecularSequence owner, MolecularSequence.MolecularSequenceStructureVariantOuterComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMolecularSequenceMolecularSequenceStructureVariantInnerComponent
protected MolecularSequence.MolecularSequenceStructureVariantInnerComponent parseMolecularSequenceMolecularSequenceStructureVariantInnerComponent(com.google.gson.JsonObject json, MolecularSequence owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMolecularSequenceMolecularSequenceStructureVariantInnerComponentProperties
protected void parseMolecularSequenceMolecularSequenceStructureVariantInnerComponentProperties(com.google.gson.JsonObject json, MolecularSequence owner, MolecularSequence.MolecularSequenceStructureVariantInnerComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNamingSystem
protected NamingSystem parseNamingSystem(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNamingSystemProperties
protected void parseNamingSystemProperties(com.google.gson.JsonObject json, NamingSystem res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNamingSystemNamingSystemUniqueIdComponent
protected NamingSystem.NamingSystemUniqueIdComponent parseNamingSystemNamingSystemUniqueIdComponent(com.google.gson.JsonObject json, NamingSystem owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNamingSystemNamingSystemUniqueIdComponentProperties
protected void parseNamingSystemNamingSystemUniqueIdComponentProperties(com.google.gson.JsonObject json, NamingSystem owner, NamingSystem.NamingSystemUniqueIdComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionOrder
protected NutritionOrder parseNutritionOrder(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionOrderProperties
protected void parseNutritionOrderProperties(com.google.gson.JsonObject json, NutritionOrder res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionOrderNutritionOrderOralDietComponent
protected NutritionOrder.NutritionOrderOralDietComponent parseNutritionOrderNutritionOrderOralDietComponent(com.google.gson.JsonObject json, NutritionOrder owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionOrderNutritionOrderOralDietComponentProperties
protected void parseNutritionOrderNutritionOrderOralDietComponentProperties(com.google.gson.JsonObject json, NutritionOrder owner, NutritionOrder.NutritionOrderOralDietComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionOrderNutritionOrderOralDietNutrientComponent
protected NutritionOrder.NutritionOrderOralDietNutrientComponent parseNutritionOrderNutritionOrderOralDietNutrientComponent(com.google.gson.JsonObject json, NutritionOrder owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionOrderNutritionOrderOralDietNutrientComponentProperties
protected void parseNutritionOrderNutritionOrderOralDietNutrientComponentProperties(com.google.gson.JsonObject json, NutritionOrder owner, NutritionOrder.NutritionOrderOralDietNutrientComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionOrderNutritionOrderOralDietTextureComponent
protected NutritionOrder.NutritionOrderOralDietTextureComponent parseNutritionOrderNutritionOrderOralDietTextureComponent(com.google.gson.JsonObject json, NutritionOrder owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionOrderNutritionOrderOralDietTextureComponentProperties
protected void parseNutritionOrderNutritionOrderOralDietTextureComponentProperties(com.google.gson.JsonObject json, NutritionOrder owner, NutritionOrder.NutritionOrderOralDietTextureComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionOrderNutritionOrderSupplementComponent
protected NutritionOrder.NutritionOrderSupplementComponent parseNutritionOrderNutritionOrderSupplementComponent(com.google.gson.JsonObject json, NutritionOrder owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionOrderNutritionOrderSupplementComponentProperties
protected void parseNutritionOrderNutritionOrderSupplementComponentProperties(com.google.gson.JsonObject json, NutritionOrder owner, NutritionOrder.NutritionOrderSupplementComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionOrderNutritionOrderEnteralFormulaComponent
protected NutritionOrder.NutritionOrderEnteralFormulaComponent parseNutritionOrderNutritionOrderEnteralFormulaComponent(com.google.gson.JsonObject json, NutritionOrder owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionOrderNutritionOrderEnteralFormulaComponentProperties
protected void parseNutritionOrderNutritionOrderEnteralFormulaComponentProperties(com.google.gson.JsonObject json, NutritionOrder owner, NutritionOrder.NutritionOrderEnteralFormulaComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionOrderNutritionOrderEnteralFormulaAdministrationComponent
protected NutritionOrder.NutritionOrderEnteralFormulaAdministrationComponent parseNutritionOrderNutritionOrderEnteralFormulaAdministrationComponent(com.google.gson.JsonObject json, NutritionOrder owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionOrderNutritionOrderEnteralFormulaAdministrationComponentProperties
protected void parseNutritionOrderNutritionOrderEnteralFormulaAdministrationComponentProperties(com.google.gson.JsonObject json, NutritionOrder owner, NutritionOrder.NutritionOrderEnteralFormulaAdministrationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseObservation
protected Observation parseObservation(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseObservationProperties
protected void parseObservationProperties(com.google.gson.JsonObject json, Observation res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseObservationObservationReferenceRangeComponent
protected Observation.ObservationReferenceRangeComponent parseObservationObservationReferenceRangeComponent(com.google.gson.JsonObject json, Observation owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseObservationObservationReferenceRangeComponentProperties
protected void parseObservationObservationReferenceRangeComponentProperties(com.google.gson.JsonObject json, Observation owner, Observation.ObservationReferenceRangeComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseObservationObservationComponentComponent
protected Observation.ObservationComponentComponent parseObservationObservationComponentComponent(com.google.gson.JsonObject json, Observation owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseObservationObservationComponentComponentProperties
protected void parseObservationObservationComponentComponentProperties(com.google.gson.JsonObject json, Observation owner, Observation.ObservationComponentComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseObservationDefinition
protected ObservationDefinition parseObservationDefinition(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseObservationDefinitionProperties
protected void parseObservationDefinitionProperties(com.google.gson.JsonObject json, ObservationDefinition res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseObservationDefinitionObservationDefinitionQuantitativeDetailsComponent
protected ObservationDefinition.ObservationDefinitionQuantitativeDetailsComponent parseObservationDefinitionObservationDefinitionQuantitativeDetailsComponent(com.google.gson.JsonObject json, ObservationDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseObservationDefinitionObservationDefinitionQuantitativeDetailsComponentProperties
protected void parseObservationDefinitionObservationDefinitionQuantitativeDetailsComponentProperties(com.google.gson.JsonObject json, ObservationDefinition owner, ObservationDefinition.ObservationDefinitionQuantitativeDetailsComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseObservationDefinitionObservationDefinitionQualifiedIntervalComponent
protected ObservationDefinition.ObservationDefinitionQualifiedIntervalComponent parseObservationDefinitionObservationDefinitionQualifiedIntervalComponent(com.google.gson.JsonObject json, ObservationDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseObservationDefinitionObservationDefinitionQualifiedIntervalComponentProperties
protected void parseObservationDefinitionObservationDefinitionQualifiedIntervalComponentProperties(com.google.gson.JsonObject json, ObservationDefinition owner, ObservationDefinition.ObservationDefinitionQualifiedIntervalComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseOperationDefinition
protected OperationDefinition parseOperationDefinition(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseOperationDefinitionProperties
protected void parseOperationDefinitionProperties(com.google.gson.JsonObject json, OperationDefinition res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseOperationDefinitionOperationDefinitionParameterComponent
protected OperationDefinition.OperationDefinitionParameterComponent parseOperationDefinitionOperationDefinitionParameterComponent(com.google.gson.JsonObject json, OperationDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseOperationDefinitionOperationDefinitionParameterComponentProperties
protected void parseOperationDefinitionOperationDefinitionParameterComponentProperties(com.google.gson.JsonObject json, OperationDefinition owner, OperationDefinition.OperationDefinitionParameterComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseOperationDefinitionOperationDefinitionParameterBindingComponent
protected OperationDefinition.OperationDefinitionParameterBindingComponent parseOperationDefinitionOperationDefinitionParameterBindingComponent(com.google.gson.JsonObject json, OperationDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseOperationDefinitionOperationDefinitionParameterBindingComponentProperties
protected void parseOperationDefinitionOperationDefinitionParameterBindingComponentProperties(com.google.gson.JsonObject json, OperationDefinition owner, OperationDefinition.OperationDefinitionParameterBindingComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseOperationDefinitionOperationDefinitionParameterReferencedFromComponent
protected OperationDefinition.OperationDefinitionParameterReferencedFromComponent parseOperationDefinitionOperationDefinitionParameterReferencedFromComponent(com.google.gson.JsonObject json, OperationDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseOperationDefinitionOperationDefinitionParameterReferencedFromComponentProperties
protected void parseOperationDefinitionOperationDefinitionParameterReferencedFromComponentProperties(com.google.gson.JsonObject json, OperationDefinition owner, OperationDefinition.OperationDefinitionParameterReferencedFromComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseOperationDefinitionOperationDefinitionOverloadComponent
protected OperationDefinition.OperationDefinitionOverloadComponent parseOperationDefinitionOperationDefinitionOverloadComponent(com.google.gson.JsonObject json, OperationDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseOperationDefinitionOperationDefinitionOverloadComponentProperties
protected void parseOperationDefinitionOperationDefinitionOverloadComponentProperties(com.google.gson.JsonObject json, OperationDefinition owner, OperationDefinition.OperationDefinitionOverloadComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseOperationOutcome
protected OperationOutcome parseOperationOutcome(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseOperationOutcomeProperties
protected void parseOperationOutcomeProperties(com.google.gson.JsonObject json, OperationOutcome res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseOperationOutcomeOperationOutcomeIssueComponent
protected OperationOutcome.OperationOutcomeIssueComponent parseOperationOutcomeOperationOutcomeIssueComponent(com.google.gson.JsonObject json, OperationOutcome owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseOperationOutcomeOperationOutcomeIssueComponentProperties
protected void parseOperationOutcomeOperationOutcomeIssueComponentProperties(com.google.gson.JsonObject json, OperationOutcome owner, OperationOutcome.OperationOutcomeIssueComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseOrganization
protected Organization parseOrganization(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseOrganizationProperties
protected void parseOrganizationProperties(com.google.gson.JsonObject json, Organization res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseOrganizationOrganizationContactComponent
protected Organization.OrganizationContactComponent parseOrganizationOrganizationContactComponent(com.google.gson.JsonObject json, Organization owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseOrganizationOrganizationContactComponentProperties
protected void parseOrganizationOrganizationContactComponentProperties(com.google.gson.JsonObject json, Organization owner, Organization.OrganizationContactComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseOrganizationAffiliation
protected OrganizationAffiliation parseOrganizationAffiliation(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseOrganizationAffiliationProperties
protected void parseOrganizationAffiliationProperties(com.google.gson.JsonObject json, OrganizationAffiliation res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePatient
protected Patient parsePatient(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePatientProperties
protected void parsePatientProperties(com.google.gson.JsonObject json, Patient res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePatientContactComponent
protected Patient.ContactComponent parsePatientContactComponent(com.google.gson.JsonObject json, Patient owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePatientContactComponentProperties
protected void parsePatientContactComponentProperties(com.google.gson.JsonObject json, Patient owner, Patient.ContactComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePatientPatientCommunicationComponent
protected Patient.PatientCommunicationComponent parsePatientPatientCommunicationComponent(com.google.gson.JsonObject json, Patient owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePatientPatientCommunicationComponentProperties
protected void parsePatientPatientCommunicationComponentProperties(com.google.gson.JsonObject json, Patient owner, Patient.PatientCommunicationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePatientPatientLinkComponent
protected Patient.PatientLinkComponent parsePatientPatientLinkComponent(com.google.gson.JsonObject json, Patient owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePatientPatientLinkComponentProperties
protected void parsePatientPatientLinkComponentProperties(com.google.gson.JsonObject json, Patient owner, Patient.PatientLinkComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePaymentNotice
protected PaymentNotice parsePaymentNotice(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePaymentNoticeProperties
protected void parsePaymentNoticeProperties(com.google.gson.JsonObject json, PaymentNotice res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePaymentReconciliation
protected PaymentReconciliation parsePaymentReconciliation(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePaymentReconciliationProperties
protected void parsePaymentReconciliationProperties(com.google.gson.JsonObject json, PaymentReconciliation res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePaymentReconciliationDetailsComponent
protected PaymentReconciliation.DetailsComponent parsePaymentReconciliationDetailsComponent(com.google.gson.JsonObject json, PaymentReconciliation owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePaymentReconciliationDetailsComponentProperties
protected void parsePaymentReconciliationDetailsComponentProperties(com.google.gson.JsonObject json, PaymentReconciliation owner, PaymentReconciliation.DetailsComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePaymentReconciliationNotesComponent
protected PaymentReconciliation.NotesComponent parsePaymentReconciliationNotesComponent(com.google.gson.JsonObject json, PaymentReconciliation owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePaymentReconciliationNotesComponentProperties
protected void parsePaymentReconciliationNotesComponentProperties(com.google.gson.JsonObject json, PaymentReconciliation owner, PaymentReconciliation.NotesComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePerson
protected Person parsePerson(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePersonProperties
protected void parsePersonProperties(com.google.gson.JsonObject json, Person res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePersonPersonLinkComponent
protected Person.PersonLinkComponent parsePersonPersonLinkComponent(com.google.gson.JsonObject json, Person owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePersonPersonLinkComponentProperties
protected void parsePersonPersonLinkComponentProperties(com.google.gson.JsonObject json, Person owner, Person.PersonLinkComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePlanDefinition
protected PlanDefinition parsePlanDefinition(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePlanDefinitionProperties
protected void parsePlanDefinitionProperties(com.google.gson.JsonObject json, PlanDefinition res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePlanDefinitionPlanDefinitionGoalComponent
protected PlanDefinition.PlanDefinitionGoalComponent parsePlanDefinitionPlanDefinitionGoalComponent(com.google.gson.JsonObject json, PlanDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePlanDefinitionPlanDefinitionGoalComponentProperties
protected void parsePlanDefinitionPlanDefinitionGoalComponentProperties(com.google.gson.JsonObject json, PlanDefinition owner, PlanDefinition.PlanDefinitionGoalComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePlanDefinitionPlanDefinitionGoalTargetComponent
protected PlanDefinition.PlanDefinitionGoalTargetComponent parsePlanDefinitionPlanDefinitionGoalTargetComponent(com.google.gson.JsonObject json, PlanDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePlanDefinitionPlanDefinitionGoalTargetComponentProperties
protected void parsePlanDefinitionPlanDefinitionGoalTargetComponentProperties(com.google.gson.JsonObject json, PlanDefinition owner, PlanDefinition.PlanDefinitionGoalTargetComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePlanDefinitionPlanDefinitionActionComponent
protected PlanDefinition.PlanDefinitionActionComponent parsePlanDefinitionPlanDefinitionActionComponent(com.google.gson.JsonObject json, PlanDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePlanDefinitionPlanDefinitionActionComponentProperties
protected void parsePlanDefinitionPlanDefinitionActionComponentProperties(com.google.gson.JsonObject json, PlanDefinition owner, PlanDefinition.PlanDefinitionActionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePlanDefinitionPlanDefinitionActionConditionComponent
protected PlanDefinition.PlanDefinitionActionConditionComponent parsePlanDefinitionPlanDefinitionActionConditionComponent(com.google.gson.JsonObject json, PlanDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePlanDefinitionPlanDefinitionActionConditionComponentProperties
protected void parsePlanDefinitionPlanDefinitionActionConditionComponentProperties(com.google.gson.JsonObject json, PlanDefinition owner, PlanDefinition.PlanDefinitionActionConditionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePlanDefinitionPlanDefinitionActionRelatedActionComponent
protected PlanDefinition.PlanDefinitionActionRelatedActionComponent parsePlanDefinitionPlanDefinitionActionRelatedActionComponent(com.google.gson.JsonObject json, PlanDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePlanDefinitionPlanDefinitionActionRelatedActionComponentProperties
protected void parsePlanDefinitionPlanDefinitionActionRelatedActionComponentProperties(com.google.gson.JsonObject json, PlanDefinition owner, PlanDefinition.PlanDefinitionActionRelatedActionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePlanDefinitionPlanDefinitionActionParticipantComponent
protected PlanDefinition.PlanDefinitionActionParticipantComponent parsePlanDefinitionPlanDefinitionActionParticipantComponent(com.google.gson.JsonObject json, PlanDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePlanDefinitionPlanDefinitionActionParticipantComponentProperties
protected void parsePlanDefinitionPlanDefinitionActionParticipantComponentProperties(com.google.gson.JsonObject json, PlanDefinition owner, PlanDefinition.PlanDefinitionActionParticipantComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePlanDefinitionPlanDefinitionActionDynamicValueComponent
protected PlanDefinition.PlanDefinitionActionDynamicValueComponent parsePlanDefinitionPlanDefinitionActionDynamicValueComponent(com.google.gson.JsonObject json, PlanDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePlanDefinitionPlanDefinitionActionDynamicValueComponentProperties
protected void parsePlanDefinitionPlanDefinitionActionDynamicValueComponentProperties(com.google.gson.JsonObject json, PlanDefinition owner, PlanDefinition.PlanDefinitionActionDynamicValueComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePractitioner
protected Practitioner parsePractitioner(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePractitionerProperties
protected void parsePractitionerProperties(com.google.gson.JsonObject json, Practitioner res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePractitionerPractitionerQualificationComponent
protected Practitioner.PractitionerQualificationComponent parsePractitionerPractitionerQualificationComponent(com.google.gson.JsonObject json, Practitioner owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePractitionerPractitionerQualificationComponentProperties
protected void parsePractitionerPractitionerQualificationComponentProperties(com.google.gson.JsonObject json, Practitioner owner, Practitioner.PractitionerQualificationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePractitionerRole
protected PractitionerRole parsePractitionerRole(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePractitionerRoleProperties
protected void parsePractitionerRoleProperties(com.google.gson.JsonObject json, PractitionerRole res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePractitionerRolePractitionerRoleAvailableTimeComponent
protected PractitionerRole.PractitionerRoleAvailableTimeComponent parsePractitionerRolePractitionerRoleAvailableTimeComponent(com.google.gson.JsonObject json, PractitionerRole owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePractitionerRolePractitionerRoleAvailableTimeComponentProperties
protected void parsePractitionerRolePractitionerRoleAvailableTimeComponentProperties(com.google.gson.JsonObject json, PractitionerRole owner, PractitionerRole.PractitionerRoleAvailableTimeComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePractitionerRolePractitionerRoleNotAvailableComponent
protected PractitionerRole.PractitionerRoleNotAvailableComponent parsePractitionerRolePractitionerRoleNotAvailableComponent(com.google.gson.JsonObject json, PractitionerRole owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePractitionerRolePractitionerRoleNotAvailableComponentProperties
protected void parsePractitionerRolePractitionerRoleNotAvailableComponentProperties(com.google.gson.JsonObject json, PractitionerRole owner, PractitionerRole.PractitionerRoleNotAvailableComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseProcedure
protected Procedure parseProcedure(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseProcedureProperties
protected void parseProcedureProperties(com.google.gson.JsonObject json, Procedure res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseProcedureProcedurePerformerComponent
protected Procedure.ProcedurePerformerComponent parseProcedureProcedurePerformerComponent(com.google.gson.JsonObject json, Procedure owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseProcedureProcedurePerformerComponentProperties
protected void parseProcedureProcedurePerformerComponentProperties(com.google.gson.JsonObject json, Procedure owner, Procedure.ProcedurePerformerComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseProcedureProcedureFocalDeviceComponent
protected Procedure.ProcedureFocalDeviceComponent parseProcedureProcedureFocalDeviceComponent(com.google.gson.JsonObject json, Procedure owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseProcedureProcedureFocalDeviceComponentProperties
protected void parseProcedureProcedureFocalDeviceComponentProperties(com.google.gson.JsonObject json, Procedure owner, Procedure.ProcedureFocalDeviceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseProvenance
protected Provenance parseProvenance(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseProvenanceProperties
protected void parseProvenanceProperties(com.google.gson.JsonObject json, Provenance res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseProvenanceProvenanceAgentComponent
protected Provenance.ProvenanceAgentComponent parseProvenanceProvenanceAgentComponent(com.google.gson.JsonObject json, Provenance owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseProvenanceProvenanceAgentComponentProperties
protected void parseProvenanceProvenanceAgentComponentProperties(com.google.gson.JsonObject json, Provenance owner, Provenance.ProvenanceAgentComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseProvenanceProvenanceEntityComponent
protected Provenance.ProvenanceEntityComponent parseProvenanceProvenanceEntityComponent(com.google.gson.JsonObject json, Provenance owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseProvenanceProvenanceEntityComponentProperties
protected void parseProvenanceProvenanceEntityComponentProperties(com.google.gson.JsonObject json, Provenance owner, Provenance.ProvenanceEntityComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseQuestionnaire
protected Questionnaire parseQuestionnaire(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseQuestionnaireProperties
protected void parseQuestionnaireProperties(com.google.gson.JsonObject json, Questionnaire res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseQuestionnaireQuestionnaireItemComponent
protected Questionnaire.QuestionnaireItemComponent parseQuestionnaireQuestionnaireItemComponent(com.google.gson.JsonObject json, Questionnaire owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseQuestionnaireQuestionnaireItemComponentProperties
protected void parseQuestionnaireQuestionnaireItemComponentProperties(com.google.gson.JsonObject json, Questionnaire owner, Questionnaire.QuestionnaireItemComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseQuestionnaireQuestionnaireItemEnableWhenComponent
protected Questionnaire.QuestionnaireItemEnableWhenComponent parseQuestionnaireQuestionnaireItemEnableWhenComponent(com.google.gson.JsonObject json, Questionnaire owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseQuestionnaireQuestionnaireItemEnableWhenComponentProperties
protected void parseQuestionnaireQuestionnaireItemEnableWhenComponentProperties(com.google.gson.JsonObject json, Questionnaire owner, Questionnaire.QuestionnaireItemEnableWhenComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseQuestionnaireQuestionnaireItemAnswerOptionComponent
protected Questionnaire.QuestionnaireItemAnswerOptionComponent parseQuestionnaireQuestionnaireItemAnswerOptionComponent(com.google.gson.JsonObject json, Questionnaire owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseQuestionnaireQuestionnaireItemAnswerOptionComponentProperties
protected void parseQuestionnaireQuestionnaireItemAnswerOptionComponentProperties(com.google.gson.JsonObject json, Questionnaire owner, Questionnaire.QuestionnaireItemAnswerOptionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseQuestionnaireQuestionnaireItemInitialComponent
protected Questionnaire.QuestionnaireItemInitialComponent parseQuestionnaireQuestionnaireItemInitialComponent(com.google.gson.JsonObject json, Questionnaire owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseQuestionnaireQuestionnaireItemInitialComponentProperties
protected void parseQuestionnaireQuestionnaireItemInitialComponentProperties(com.google.gson.JsonObject json, Questionnaire owner, Questionnaire.QuestionnaireItemInitialComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseQuestionnaireResponse
protected QuestionnaireResponse parseQuestionnaireResponse(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseQuestionnaireResponseProperties
protected void parseQuestionnaireResponseProperties(com.google.gson.JsonObject json, QuestionnaireResponse res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseQuestionnaireResponseQuestionnaireResponseItemComponent
protected QuestionnaireResponse.QuestionnaireResponseItemComponent parseQuestionnaireResponseQuestionnaireResponseItemComponent(com.google.gson.JsonObject json, QuestionnaireResponse owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseQuestionnaireResponseQuestionnaireResponseItemComponentProperties
protected void parseQuestionnaireResponseQuestionnaireResponseItemComponentProperties(com.google.gson.JsonObject json, QuestionnaireResponse owner, QuestionnaireResponse.QuestionnaireResponseItemComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseQuestionnaireResponseQuestionnaireResponseItemAnswerComponent
protected QuestionnaireResponse.QuestionnaireResponseItemAnswerComponent parseQuestionnaireResponseQuestionnaireResponseItemAnswerComponent(com.google.gson.JsonObject json, QuestionnaireResponse owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseQuestionnaireResponseQuestionnaireResponseItemAnswerComponentProperties
protected void parseQuestionnaireResponseQuestionnaireResponseItemAnswerComponentProperties(com.google.gson.JsonObject json, QuestionnaireResponse owner, QuestionnaireResponse.QuestionnaireResponseItemAnswerComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRelatedPerson
protected RelatedPerson parseRelatedPerson(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRelatedPersonProperties
protected void parseRelatedPersonProperties(com.google.gson.JsonObject json, RelatedPerson res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRelatedPersonRelatedPersonCommunicationComponent
protected RelatedPerson.RelatedPersonCommunicationComponent parseRelatedPersonRelatedPersonCommunicationComponent(com.google.gson.JsonObject json, RelatedPerson owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRelatedPersonRelatedPersonCommunicationComponentProperties
protected void parseRelatedPersonRelatedPersonCommunicationComponentProperties(com.google.gson.JsonObject json, RelatedPerson owner, RelatedPerson.RelatedPersonCommunicationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRequestGroup
protected RequestGroup parseRequestGroup(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRequestGroupProperties
protected void parseRequestGroupProperties(com.google.gson.JsonObject json, RequestGroup res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRequestGroupRequestGroupActionComponent
protected RequestGroup.RequestGroupActionComponent parseRequestGroupRequestGroupActionComponent(com.google.gson.JsonObject json, RequestGroup owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRequestGroupRequestGroupActionComponentProperties
protected void parseRequestGroupRequestGroupActionComponentProperties(com.google.gson.JsonObject json, RequestGroup owner, RequestGroup.RequestGroupActionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRequestGroupRequestGroupActionConditionComponent
protected RequestGroup.RequestGroupActionConditionComponent parseRequestGroupRequestGroupActionConditionComponent(com.google.gson.JsonObject json, RequestGroup owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRequestGroupRequestGroupActionConditionComponentProperties
protected void parseRequestGroupRequestGroupActionConditionComponentProperties(com.google.gson.JsonObject json, RequestGroup owner, RequestGroup.RequestGroupActionConditionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRequestGroupRequestGroupActionRelatedActionComponent
protected RequestGroup.RequestGroupActionRelatedActionComponent parseRequestGroupRequestGroupActionRelatedActionComponent(com.google.gson.JsonObject json, RequestGroup owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRequestGroupRequestGroupActionRelatedActionComponentProperties
protected void parseRequestGroupRequestGroupActionRelatedActionComponentProperties(com.google.gson.JsonObject json, RequestGroup owner, RequestGroup.RequestGroupActionRelatedActionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseResearchDefinition
protected ResearchDefinition parseResearchDefinition(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseResearchDefinitionProperties
protected void parseResearchDefinitionProperties(com.google.gson.JsonObject json, ResearchDefinition res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseResearchElementDefinition
protected ResearchElementDefinition parseResearchElementDefinition(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseResearchElementDefinitionProperties
protected void parseResearchElementDefinitionProperties(com.google.gson.JsonObject json, ResearchElementDefinition res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseResearchElementDefinitionResearchElementDefinitionCharacteristicComponent
protected ResearchElementDefinition.ResearchElementDefinitionCharacteristicComponent parseResearchElementDefinitionResearchElementDefinitionCharacteristicComponent(com.google.gson.JsonObject json, ResearchElementDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseResearchElementDefinitionResearchElementDefinitionCharacteristicComponentProperties
protected void parseResearchElementDefinitionResearchElementDefinitionCharacteristicComponentProperties(com.google.gson.JsonObject json, ResearchElementDefinition owner, ResearchElementDefinition.ResearchElementDefinitionCharacteristicComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseResearchStudy
protected ResearchStudy parseResearchStudy(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseResearchStudyProperties
protected void parseResearchStudyProperties(com.google.gson.JsonObject json, ResearchStudy res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseResearchStudyResearchStudyArmComponent
protected ResearchStudy.ResearchStudyArmComponent parseResearchStudyResearchStudyArmComponent(com.google.gson.JsonObject json, ResearchStudy owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseResearchStudyResearchStudyArmComponentProperties
protected void parseResearchStudyResearchStudyArmComponentProperties(com.google.gson.JsonObject json, ResearchStudy owner, ResearchStudy.ResearchStudyArmComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseResearchStudyResearchStudyObjectiveComponent
protected ResearchStudy.ResearchStudyObjectiveComponent parseResearchStudyResearchStudyObjectiveComponent(com.google.gson.JsonObject json, ResearchStudy owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseResearchStudyResearchStudyObjectiveComponentProperties
protected void parseResearchStudyResearchStudyObjectiveComponentProperties(com.google.gson.JsonObject json, ResearchStudy owner, ResearchStudy.ResearchStudyObjectiveComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseResearchSubject
protected ResearchSubject parseResearchSubject(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseResearchSubjectProperties
protected void parseResearchSubjectProperties(com.google.gson.JsonObject json, ResearchSubject res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRiskAssessment
protected RiskAssessment parseRiskAssessment(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRiskAssessmentProperties
protected void parseRiskAssessmentProperties(com.google.gson.JsonObject json, RiskAssessment res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRiskAssessmentRiskAssessmentPredictionComponent
protected RiskAssessment.RiskAssessmentPredictionComponent parseRiskAssessmentRiskAssessmentPredictionComponent(com.google.gson.JsonObject json, RiskAssessment owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRiskAssessmentRiskAssessmentPredictionComponentProperties
protected void parseRiskAssessmentRiskAssessmentPredictionComponentProperties(com.google.gson.JsonObject json, RiskAssessment owner, RiskAssessment.RiskAssessmentPredictionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRiskEvidenceSynthesis
protected RiskEvidenceSynthesis parseRiskEvidenceSynthesis(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRiskEvidenceSynthesisProperties
protected void parseRiskEvidenceSynthesisProperties(com.google.gson.JsonObject json, RiskEvidenceSynthesis res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRiskEvidenceSynthesisRiskEvidenceSynthesisSampleSizeComponent
protected RiskEvidenceSynthesis.RiskEvidenceSynthesisSampleSizeComponent parseRiskEvidenceSynthesisRiskEvidenceSynthesisSampleSizeComponent(com.google.gson.JsonObject json, RiskEvidenceSynthesis owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRiskEvidenceSynthesisRiskEvidenceSynthesisSampleSizeComponentProperties
protected void parseRiskEvidenceSynthesisRiskEvidenceSynthesisSampleSizeComponentProperties(com.google.gson.JsonObject json, RiskEvidenceSynthesis owner, RiskEvidenceSynthesis.RiskEvidenceSynthesisSampleSizeComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRiskEvidenceSynthesisRiskEvidenceSynthesisRiskEstimateComponent
protected RiskEvidenceSynthesis.RiskEvidenceSynthesisRiskEstimateComponent parseRiskEvidenceSynthesisRiskEvidenceSynthesisRiskEstimateComponent(com.google.gson.JsonObject json, RiskEvidenceSynthesis owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRiskEvidenceSynthesisRiskEvidenceSynthesisRiskEstimateComponentProperties
protected void parseRiskEvidenceSynthesisRiskEvidenceSynthesisRiskEstimateComponentProperties(com.google.gson.JsonObject json, RiskEvidenceSynthesis owner, RiskEvidenceSynthesis.RiskEvidenceSynthesisRiskEstimateComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRiskEvidenceSynthesisRiskEvidenceSynthesisRiskEstimatePrecisionEstimateComponent
protected RiskEvidenceSynthesis.RiskEvidenceSynthesisRiskEstimatePrecisionEstimateComponent parseRiskEvidenceSynthesisRiskEvidenceSynthesisRiskEstimatePrecisionEstimateComponent(com.google.gson.JsonObject json, RiskEvidenceSynthesis owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRiskEvidenceSynthesisRiskEvidenceSynthesisRiskEstimatePrecisionEstimateComponentProperties
protected void parseRiskEvidenceSynthesisRiskEvidenceSynthesisRiskEstimatePrecisionEstimateComponentProperties(com.google.gson.JsonObject json, RiskEvidenceSynthesis owner, RiskEvidenceSynthesis.RiskEvidenceSynthesisRiskEstimatePrecisionEstimateComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRiskEvidenceSynthesisRiskEvidenceSynthesisCertaintyComponent
protected RiskEvidenceSynthesis.RiskEvidenceSynthesisCertaintyComponent parseRiskEvidenceSynthesisRiskEvidenceSynthesisCertaintyComponent(com.google.gson.JsonObject json, RiskEvidenceSynthesis owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRiskEvidenceSynthesisRiskEvidenceSynthesisCertaintyComponentProperties
protected void parseRiskEvidenceSynthesisRiskEvidenceSynthesisCertaintyComponentProperties(com.google.gson.JsonObject json, RiskEvidenceSynthesis owner, RiskEvidenceSynthesis.RiskEvidenceSynthesisCertaintyComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRiskEvidenceSynthesisRiskEvidenceSynthesisCertaintyCertaintySubcomponentComponent
protected RiskEvidenceSynthesis.RiskEvidenceSynthesisCertaintyCertaintySubcomponentComponent parseRiskEvidenceSynthesisRiskEvidenceSynthesisCertaintyCertaintySubcomponentComponent(com.google.gson.JsonObject json, RiskEvidenceSynthesis owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRiskEvidenceSynthesisRiskEvidenceSynthesisCertaintyCertaintySubcomponentComponentProperties
protected void parseRiskEvidenceSynthesisRiskEvidenceSynthesisCertaintyCertaintySubcomponentComponentProperties(com.google.gson.JsonObject json, RiskEvidenceSynthesis owner, RiskEvidenceSynthesis.RiskEvidenceSynthesisCertaintyCertaintySubcomponentComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSchedule
protected Schedule parseSchedule(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseScheduleProperties
protected void parseScheduleProperties(com.google.gson.JsonObject json, Schedule res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSearchParameter
protected SearchParameter parseSearchParameter(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSearchParameterProperties
protected void parseSearchParameterProperties(com.google.gson.JsonObject json, SearchParameter res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSearchParameterSearchParameterComponentComponent
protected SearchParameter.SearchParameterComponentComponent parseSearchParameterSearchParameterComponentComponent(com.google.gson.JsonObject json, SearchParameter owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSearchParameterSearchParameterComponentComponentProperties
protected void parseSearchParameterSearchParameterComponentComponentProperties(com.google.gson.JsonObject json, SearchParameter owner, SearchParameter.SearchParameterComponentComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseServiceRequest
protected ServiceRequest parseServiceRequest(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseServiceRequestProperties
protected void parseServiceRequestProperties(com.google.gson.JsonObject json, ServiceRequest res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSlot
protected Slot parseSlot(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSlotProperties
protected void parseSlotProperties(com.google.gson.JsonObject json, Slot res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSpecimen
protected Specimen parseSpecimen(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSpecimenProperties
protected void parseSpecimenProperties(com.google.gson.JsonObject json, Specimen res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSpecimenSpecimenCollectionComponent
protected Specimen.SpecimenCollectionComponent parseSpecimenSpecimenCollectionComponent(com.google.gson.JsonObject json, Specimen owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSpecimenSpecimenCollectionComponentProperties
protected void parseSpecimenSpecimenCollectionComponentProperties(com.google.gson.JsonObject json, Specimen owner, Specimen.SpecimenCollectionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSpecimenSpecimenProcessingComponent
protected Specimen.SpecimenProcessingComponent parseSpecimenSpecimenProcessingComponent(com.google.gson.JsonObject json, Specimen owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSpecimenSpecimenProcessingComponentProperties
protected void parseSpecimenSpecimenProcessingComponentProperties(com.google.gson.JsonObject json, Specimen owner, Specimen.SpecimenProcessingComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSpecimenSpecimenContainerComponent
protected Specimen.SpecimenContainerComponent parseSpecimenSpecimenContainerComponent(com.google.gson.JsonObject json, Specimen owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSpecimenSpecimenContainerComponentProperties
protected void parseSpecimenSpecimenContainerComponentProperties(com.google.gson.JsonObject json, Specimen owner, Specimen.SpecimenContainerComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSpecimenDefinition
protected SpecimenDefinition parseSpecimenDefinition(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSpecimenDefinitionProperties
protected void parseSpecimenDefinitionProperties(com.google.gson.JsonObject json, SpecimenDefinition res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSpecimenDefinitionSpecimenDefinitionTypeTestedComponent
protected SpecimenDefinition.SpecimenDefinitionTypeTestedComponent parseSpecimenDefinitionSpecimenDefinitionTypeTestedComponent(com.google.gson.JsonObject json, SpecimenDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSpecimenDefinitionSpecimenDefinitionTypeTestedComponentProperties
protected void parseSpecimenDefinitionSpecimenDefinitionTypeTestedComponentProperties(com.google.gson.JsonObject json, SpecimenDefinition owner, SpecimenDefinition.SpecimenDefinitionTypeTestedComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSpecimenDefinitionSpecimenDefinitionTypeTestedContainerComponent
protected SpecimenDefinition.SpecimenDefinitionTypeTestedContainerComponent parseSpecimenDefinitionSpecimenDefinitionTypeTestedContainerComponent(com.google.gson.JsonObject json, SpecimenDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSpecimenDefinitionSpecimenDefinitionTypeTestedContainerComponentProperties
protected void parseSpecimenDefinitionSpecimenDefinitionTypeTestedContainerComponentProperties(com.google.gson.JsonObject json, SpecimenDefinition owner, SpecimenDefinition.SpecimenDefinitionTypeTestedContainerComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSpecimenDefinitionSpecimenDefinitionTypeTestedContainerAdditiveComponent
protected SpecimenDefinition.SpecimenDefinitionTypeTestedContainerAdditiveComponent parseSpecimenDefinitionSpecimenDefinitionTypeTestedContainerAdditiveComponent(com.google.gson.JsonObject json, SpecimenDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSpecimenDefinitionSpecimenDefinitionTypeTestedContainerAdditiveComponentProperties
protected void parseSpecimenDefinitionSpecimenDefinitionTypeTestedContainerAdditiveComponentProperties(com.google.gson.JsonObject json, SpecimenDefinition owner, SpecimenDefinition.SpecimenDefinitionTypeTestedContainerAdditiveComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSpecimenDefinitionSpecimenDefinitionTypeTestedHandlingComponent
protected SpecimenDefinition.SpecimenDefinitionTypeTestedHandlingComponent parseSpecimenDefinitionSpecimenDefinitionTypeTestedHandlingComponent(com.google.gson.JsonObject json, SpecimenDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSpecimenDefinitionSpecimenDefinitionTypeTestedHandlingComponentProperties
protected void parseSpecimenDefinitionSpecimenDefinitionTypeTestedHandlingComponentProperties(com.google.gson.JsonObject json, SpecimenDefinition owner, SpecimenDefinition.SpecimenDefinitionTypeTestedHandlingComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureDefinition
protected StructureDefinition parseStructureDefinition(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureDefinitionProperties
protected void parseStructureDefinitionProperties(com.google.gson.JsonObject json, StructureDefinition res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureDefinitionStructureDefinitionMappingComponent
protected StructureDefinition.StructureDefinitionMappingComponent parseStructureDefinitionStructureDefinitionMappingComponent(com.google.gson.JsonObject json, StructureDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureDefinitionStructureDefinitionMappingComponentProperties
protected void parseStructureDefinitionStructureDefinitionMappingComponentProperties(com.google.gson.JsonObject json, StructureDefinition owner, StructureDefinition.StructureDefinitionMappingComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureDefinitionStructureDefinitionContextComponent
protected StructureDefinition.StructureDefinitionContextComponent parseStructureDefinitionStructureDefinitionContextComponent(com.google.gson.JsonObject json, StructureDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureDefinitionStructureDefinitionContextComponentProperties
protected void parseStructureDefinitionStructureDefinitionContextComponentProperties(com.google.gson.JsonObject json, StructureDefinition owner, StructureDefinition.StructureDefinitionContextComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureDefinitionStructureDefinitionSnapshotComponent
protected StructureDefinition.StructureDefinitionSnapshotComponent parseStructureDefinitionStructureDefinitionSnapshotComponent(com.google.gson.JsonObject json, StructureDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureDefinitionStructureDefinitionSnapshotComponentProperties
protected void parseStructureDefinitionStructureDefinitionSnapshotComponentProperties(com.google.gson.JsonObject json, StructureDefinition owner, StructureDefinition.StructureDefinitionSnapshotComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureDefinitionStructureDefinitionDifferentialComponent
protected StructureDefinition.StructureDefinitionDifferentialComponent parseStructureDefinitionStructureDefinitionDifferentialComponent(com.google.gson.JsonObject json, StructureDefinition owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureDefinitionStructureDefinitionDifferentialComponentProperties
protected void parseStructureDefinitionStructureDefinitionDifferentialComponentProperties(com.google.gson.JsonObject json, StructureDefinition owner, StructureDefinition.StructureDefinitionDifferentialComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureMap
protected StructureMap parseStructureMap(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureMapProperties
protected void parseStructureMapProperties(com.google.gson.JsonObject json, StructureMap res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureMapStructureMapStructureComponent
protected StructureMap.StructureMapStructureComponent parseStructureMapStructureMapStructureComponent(com.google.gson.JsonObject json, StructureMap owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureMapStructureMapStructureComponentProperties
protected void parseStructureMapStructureMapStructureComponentProperties(com.google.gson.JsonObject json, StructureMap owner, StructureMap.StructureMapStructureComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureMapStructureMapGroupComponent
protected StructureMap.StructureMapGroupComponent parseStructureMapStructureMapGroupComponent(com.google.gson.JsonObject json, StructureMap owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureMapStructureMapGroupComponentProperties
protected void parseStructureMapStructureMapGroupComponentProperties(com.google.gson.JsonObject json, StructureMap owner, StructureMap.StructureMapGroupComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureMapStructureMapGroupInputComponent
protected StructureMap.StructureMapGroupInputComponent parseStructureMapStructureMapGroupInputComponent(com.google.gson.JsonObject json, StructureMap owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureMapStructureMapGroupInputComponentProperties
protected void parseStructureMapStructureMapGroupInputComponentProperties(com.google.gson.JsonObject json, StructureMap owner, StructureMap.StructureMapGroupInputComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureMapStructureMapGroupRuleComponent
protected StructureMap.StructureMapGroupRuleComponent parseStructureMapStructureMapGroupRuleComponent(com.google.gson.JsonObject json, StructureMap owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureMapStructureMapGroupRuleComponentProperties
protected void parseStructureMapStructureMapGroupRuleComponentProperties(com.google.gson.JsonObject json, StructureMap owner, StructureMap.StructureMapGroupRuleComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureMapStructureMapGroupRuleSourceComponent
protected StructureMap.StructureMapGroupRuleSourceComponent parseStructureMapStructureMapGroupRuleSourceComponent(com.google.gson.JsonObject json, StructureMap owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureMapStructureMapGroupRuleSourceComponentProperties
protected void parseStructureMapStructureMapGroupRuleSourceComponentProperties(com.google.gson.JsonObject json, StructureMap owner, StructureMap.StructureMapGroupRuleSourceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureMapStructureMapGroupRuleTargetComponent
protected StructureMap.StructureMapGroupRuleTargetComponent parseStructureMapStructureMapGroupRuleTargetComponent(com.google.gson.JsonObject json, StructureMap owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureMapStructureMapGroupRuleTargetComponentProperties
protected void parseStructureMapStructureMapGroupRuleTargetComponentProperties(com.google.gson.JsonObject json, StructureMap owner, StructureMap.StructureMapGroupRuleTargetComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureMapStructureMapGroupRuleTargetParameterComponent
protected StructureMap.StructureMapGroupRuleTargetParameterComponent parseStructureMapStructureMapGroupRuleTargetParameterComponent(com.google.gson.JsonObject json, StructureMap owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureMapStructureMapGroupRuleTargetParameterComponentProperties
protected void parseStructureMapStructureMapGroupRuleTargetParameterComponentProperties(com.google.gson.JsonObject json, StructureMap owner, StructureMap.StructureMapGroupRuleTargetParameterComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureMapStructureMapGroupRuleDependentComponent
protected StructureMap.StructureMapGroupRuleDependentComponent parseStructureMapStructureMapGroupRuleDependentComponent(com.google.gson.JsonObject json, StructureMap owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureMapStructureMapGroupRuleDependentComponentProperties
protected void parseStructureMapStructureMapGroupRuleDependentComponentProperties(com.google.gson.JsonObject json, StructureMap owner, StructureMap.StructureMapGroupRuleDependentComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubscription
protected Subscription parseSubscription(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubscriptionProperties
protected void parseSubscriptionProperties(com.google.gson.JsonObject json, Subscription res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubscriptionSubscriptionChannelComponent
protected Subscription.SubscriptionChannelComponent parseSubscriptionSubscriptionChannelComponent(com.google.gson.JsonObject json, Subscription owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubscriptionSubscriptionChannelComponentProperties
protected void parseSubscriptionSubscriptionChannelComponentProperties(com.google.gson.JsonObject json, Subscription owner, Subscription.SubscriptionChannelComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstance
protected Substance parseSubstance(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceProperties
protected void parseSubstanceProperties(com.google.gson.JsonObject json, Substance res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSubstanceInstanceComponent
protected Substance.SubstanceInstanceComponent parseSubstanceSubstanceInstanceComponent(com.google.gson.JsonObject json, Substance owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSubstanceInstanceComponentProperties
protected void parseSubstanceSubstanceInstanceComponentProperties(com.google.gson.JsonObject json, Substance owner, Substance.SubstanceInstanceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSubstanceIngredientComponent
protected Substance.SubstanceIngredientComponent parseSubstanceSubstanceIngredientComponent(com.google.gson.JsonObject json, Substance owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSubstanceIngredientComponentProperties
protected void parseSubstanceSubstanceIngredientComponentProperties(com.google.gson.JsonObject json, Substance owner, Substance.SubstanceIngredientComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceNucleicAcid
protected SubstanceNucleicAcid parseSubstanceNucleicAcid(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceNucleicAcidProperties
protected void parseSubstanceNucleicAcidProperties(com.google.gson.JsonObject json, SubstanceNucleicAcid res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceNucleicAcidSubstanceNucleicAcidSubunitComponent
protected SubstanceNucleicAcid.SubstanceNucleicAcidSubunitComponent parseSubstanceNucleicAcidSubstanceNucleicAcidSubunitComponent(com.google.gson.JsonObject json, SubstanceNucleicAcid owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceNucleicAcidSubstanceNucleicAcidSubunitComponentProperties
protected void parseSubstanceNucleicAcidSubstanceNucleicAcidSubunitComponentProperties(com.google.gson.JsonObject json, SubstanceNucleicAcid owner, SubstanceNucleicAcid.SubstanceNucleicAcidSubunitComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceNucleicAcidSubstanceNucleicAcidSubunitLinkageComponent
protected SubstanceNucleicAcid.SubstanceNucleicAcidSubunitLinkageComponent parseSubstanceNucleicAcidSubstanceNucleicAcidSubunitLinkageComponent(com.google.gson.JsonObject json, SubstanceNucleicAcid owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceNucleicAcidSubstanceNucleicAcidSubunitLinkageComponentProperties
protected void parseSubstanceNucleicAcidSubstanceNucleicAcidSubunitLinkageComponentProperties(com.google.gson.JsonObject json, SubstanceNucleicAcid owner, SubstanceNucleicAcid.SubstanceNucleicAcidSubunitLinkageComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceNucleicAcidSubstanceNucleicAcidSubunitSugarComponent
protected SubstanceNucleicAcid.SubstanceNucleicAcidSubunitSugarComponent parseSubstanceNucleicAcidSubstanceNucleicAcidSubunitSugarComponent(com.google.gson.JsonObject json, SubstanceNucleicAcid owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceNucleicAcidSubstanceNucleicAcidSubunitSugarComponentProperties
protected void parseSubstanceNucleicAcidSubstanceNucleicAcidSubunitSugarComponentProperties(com.google.gson.JsonObject json, SubstanceNucleicAcid owner, SubstanceNucleicAcid.SubstanceNucleicAcidSubunitSugarComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstancePolymer
protected SubstancePolymer parseSubstancePolymer(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstancePolymerProperties
protected void parseSubstancePolymerProperties(com.google.gson.JsonObject json, SubstancePolymer res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstancePolymerSubstancePolymerMonomerSetComponent
protected SubstancePolymer.SubstancePolymerMonomerSetComponent parseSubstancePolymerSubstancePolymerMonomerSetComponent(com.google.gson.JsonObject json, SubstancePolymer owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstancePolymerSubstancePolymerMonomerSetComponentProperties
protected void parseSubstancePolymerSubstancePolymerMonomerSetComponentProperties(com.google.gson.JsonObject json, SubstancePolymer owner, SubstancePolymer.SubstancePolymerMonomerSetComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstancePolymerSubstancePolymerMonomerSetStartingMaterialComponent
protected SubstancePolymer.SubstancePolymerMonomerSetStartingMaterialComponent parseSubstancePolymerSubstancePolymerMonomerSetStartingMaterialComponent(com.google.gson.JsonObject json, SubstancePolymer owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstancePolymerSubstancePolymerMonomerSetStartingMaterialComponentProperties
protected void parseSubstancePolymerSubstancePolymerMonomerSetStartingMaterialComponentProperties(com.google.gson.JsonObject json, SubstancePolymer owner, SubstancePolymer.SubstancePolymerMonomerSetStartingMaterialComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstancePolymerSubstancePolymerRepeatComponent
protected SubstancePolymer.SubstancePolymerRepeatComponent parseSubstancePolymerSubstancePolymerRepeatComponent(com.google.gson.JsonObject json, SubstancePolymer owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstancePolymerSubstancePolymerRepeatComponentProperties
protected void parseSubstancePolymerSubstancePolymerRepeatComponentProperties(com.google.gson.JsonObject json, SubstancePolymer owner, SubstancePolymer.SubstancePolymerRepeatComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstancePolymerSubstancePolymerRepeatRepeatUnitComponent
protected SubstancePolymer.SubstancePolymerRepeatRepeatUnitComponent parseSubstancePolymerSubstancePolymerRepeatRepeatUnitComponent(com.google.gson.JsonObject json, SubstancePolymer owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstancePolymerSubstancePolymerRepeatRepeatUnitComponentProperties
protected void parseSubstancePolymerSubstancePolymerRepeatRepeatUnitComponentProperties(com.google.gson.JsonObject json, SubstancePolymer owner, SubstancePolymer.SubstancePolymerRepeatRepeatUnitComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstancePolymerSubstancePolymerRepeatRepeatUnitDegreeOfPolymerisationComponent
protected SubstancePolymer.SubstancePolymerRepeatRepeatUnitDegreeOfPolymerisationComponent parseSubstancePolymerSubstancePolymerRepeatRepeatUnitDegreeOfPolymerisationComponent(com.google.gson.JsonObject json, SubstancePolymer owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstancePolymerSubstancePolymerRepeatRepeatUnitDegreeOfPolymerisationComponentProperties
protected void parseSubstancePolymerSubstancePolymerRepeatRepeatUnitDegreeOfPolymerisationComponentProperties(com.google.gson.JsonObject json, SubstancePolymer owner, SubstancePolymer.SubstancePolymerRepeatRepeatUnitDegreeOfPolymerisationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstancePolymerSubstancePolymerRepeatRepeatUnitStructuralRepresentationComponent
protected SubstancePolymer.SubstancePolymerRepeatRepeatUnitStructuralRepresentationComponent parseSubstancePolymerSubstancePolymerRepeatRepeatUnitStructuralRepresentationComponent(com.google.gson.JsonObject json, SubstancePolymer owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstancePolymerSubstancePolymerRepeatRepeatUnitStructuralRepresentationComponentProperties
protected void parseSubstancePolymerSubstancePolymerRepeatRepeatUnitStructuralRepresentationComponentProperties(com.google.gson.JsonObject json, SubstancePolymer owner, SubstancePolymer.SubstancePolymerRepeatRepeatUnitStructuralRepresentationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceProtein
protected SubstanceProtein parseSubstanceProtein(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceProteinProperties
protected void parseSubstanceProteinProperties(com.google.gson.JsonObject json, SubstanceProtein res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceProteinSubstanceProteinSubunitComponent
protected SubstanceProtein.SubstanceProteinSubunitComponent parseSubstanceProteinSubstanceProteinSubunitComponent(com.google.gson.JsonObject json, SubstanceProtein owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceProteinSubstanceProteinSubunitComponentProperties
protected void parseSubstanceProteinSubstanceProteinSubunitComponentProperties(com.google.gson.JsonObject json, SubstanceProtein owner, SubstanceProtein.SubstanceProteinSubunitComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceReferenceInformation
protected SubstanceReferenceInformation parseSubstanceReferenceInformation(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceReferenceInformationProperties
protected void parseSubstanceReferenceInformationProperties(com.google.gson.JsonObject json, SubstanceReferenceInformation res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceReferenceInformationSubstanceReferenceInformationGeneComponent
protected SubstanceReferenceInformation.SubstanceReferenceInformationGeneComponent parseSubstanceReferenceInformationSubstanceReferenceInformationGeneComponent(com.google.gson.JsonObject json, SubstanceReferenceInformation owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceReferenceInformationSubstanceReferenceInformationGeneComponentProperties
protected void parseSubstanceReferenceInformationSubstanceReferenceInformationGeneComponentProperties(com.google.gson.JsonObject json, SubstanceReferenceInformation owner, SubstanceReferenceInformation.SubstanceReferenceInformationGeneComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceReferenceInformationSubstanceReferenceInformationGeneElementComponent
protected SubstanceReferenceInformation.SubstanceReferenceInformationGeneElementComponent parseSubstanceReferenceInformationSubstanceReferenceInformationGeneElementComponent(com.google.gson.JsonObject json, SubstanceReferenceInformation owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceReferenceInformationSubstanceReferenceInformationGeneElementComponentProperties
protected void parseSubstanceReferenceInformationSubstanceReferenceInformationGeneElementComponentProperties(com.google.gson.JsonObject json, SubstanceReferenceInformation owner, SubstanceReferenceInformation.SubstanceReferenceInformationGeneElementComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceReferenceInformationSubstanceReferenceInformationClassificationComponent
protected SubstanceReferenceInformation.SubstanceReferenceInformationClassificationComponent parseSubstanceReferenceInformationSubstanceReferenceInformationClassificationComponent(com.google.gson.JsonObject json, SubstanceReferenceInformation owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceReferenceInformationSubstanceReferenceInformationClassificationComponentProperties
protected void parseSubstanceReferenceInformationSubstanceReferenceInformationClassificationComponentProperties(com.google.gson.JsonObject json, SubstanceReferenceInformation owner, SubstanceReferenceInformation.SubstanceReferenceInformationClassificationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceReferenceInformationSubstanceReferenceInformationTargetComponent
protected SubstanceReferenceInformation.SubstanceReferenceInformationTargetComponent parseSubstanceReferenceInformationSubstanceReferenceInformationTargetComponent(com.google.gson.JsonObject json, SubstanceReferenceInformation owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceReferenceInformationSubstanceReferenceInformationTargetComponentProperties
protected void parseSubstanceReferenceInformationSubstanceReferenceInformationTargetComponentProperties(com.google.gson.JsonObject json, SubstanceReferenceInformation owner, SubstanceReferenceInformation.SubstanceReferenceInformationTargetComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSourceMaterial
protected SubstanceSourceMaterial parseSubstanceSourceMaterial(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSourceMaterialProperties
protected void parseSubstanceSourceMaterialProperties(com.google.gson.JsonObject json, SubstanceSourceMaterial res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSourceMaterialSubstanceSourceMaterialFractionDescriptionComponent
protected SubstanceSourceMaterial.SubstanceSourceMaterialFractionDescriptionComponent parseSubstanceSourceMaterialSubstanceSourceMaterialFractionDescriptionComponent(com.google.gson.JsonObject json, SubstanceSourceMaterial owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSourceMaterialSubstanceSourceMaterialFractionDescriptionComponentProperties
protected void parseSubstanceSourceMaterialSubstanceSourceMaterialFractionDescriptionComponentProperties(com.google.gson.JsonObject json, SubstanceSourceMaterial owner, SubstanceSourceMaterial.SubstanceSourceMaterialFractionDescriptionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSourceMaterialSubstanceSourceMaterialOrganismComponent
protected SubstanceSourceMaterial.SubstanceSourceMaterialOrganismComponent parseSubstanceSourceMaterialSubstanceSourceMaterialOrganismComponent(com.google.gson.JsonObject json, SubstanceSourceMaterial owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSourceMaterialSubstanceSourceMaterialOrganismComponentProperties
protected void parseSubstanceSourceMaterialSubstanceSourceMaterialOrganismComponentProperties(com.google.gson.JsonObject json, SubstanceSourceMaterial owner, SubstanceSourceMaterial.SubstanceSourceMaterialOrganismComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSourceMaterialSubstanceSourceMaterialOrganismAuthorComponent
protected SubstanceSourceMaterial.SubstanceSourceMaterialOrganismAuthorComponent parseSubstanceSourceMaterialSubstanceSourceMaterialOrganismAuthorComponent(com.google.gson.JsonObject json, SubstanceSourceMaterial owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSourceMaterialSubstanceSourceMaterialOrganismAuthorComponentProperties
protected void parseSubstanceSourceMaterialSubstanceSourceMaterialOrganismAuthorComponentProperties(com.google.gson.JsonObject json, SubstanceSourceMaterial owner, SubstanceSourceMaterial.SubstanceSourceMaterialOrganismAuthorComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSourceMaterialSubstanceSourceMaterialOrganismHybridComponent
protected SubstanceSourceMaterial.SubstanceSourceMaterialOrganismHybridComponent parseSubstanceSourceMaterialSubstanceSourceMaterialOrganismHybridComponent(com.google.gson.JsonObject json, SubstanceSourceMaterial owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSourceMaterialSubstanceSourceMaterialOrganismHybridComponentProperties
protected void parseSubstanceSourceMaterialSubstanceSourceMaterialOrganismHybridComponentProperties(com.google.gson.JsonObject json, SubstanceSourceMaterial owner, SubstanceSourceMaterial.SubstanceSourceMaterialOrganismHybridComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSourceMaterialSubstanceSourceMaterialOrganismOrganismGeneralComponent
protected SubstanceSourceMaterial.SubstanceSourceMaterialOrganismOrganismGeneralComponent parseSubstanceSourceMaterialSubstanceSourceMaterialOrganismOrganismGeneralComponent(com.google.gson.JsonObject json, SubstanceSourceMaterial owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSourceMaterialSubstanceSourceMaterialOrganismOrganismGeneralComponentProperties
protected void parseSubstanceSourceMaterialSubstanceSourceMaterialOrganismOrganismGeneralComponentProperties(com.google.gson.JsonObject json, SubstanceSourceMaterial owner, SubstanceSourceMaterial.SubstanceSourceMaterialOrganismOrganismGeneralComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSourceMaterialSubstanceSourceMaterialPartDescriptionComponent
protected SubstanceSourceMaterial.SubstanceSourceMaterialPartDescriptionComponent parseSubstanceSourceMaterialSubstanceSourceMaterialPartDescriptionComponent(com.google.gson.JsonObject json, SubstanceSourceMaterial owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSourceMaterialSubstanceSourceMaterialPartDescriptionComponentProperties
protected void parseSubstanceSourceMaterialSubstanceSourceMaterialPartDescriptionComponentProperties(com.google.gson.JsonObject json, SubstanceSourceMaterial owner, SubstanceSourceMaterial.SubstanceSourceMaterialPartDescriptionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSpecification
protected SubstanceSpecification parseSubstanceSpecification(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSpecificationProperties
protected void parseSubstanceSpecificationProperties(com.google.gson.JsonObject json, SubstanceSpecification res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSpecificationSubstanceSpecificationMoietyComponent
protected SubstanceSpecification.SubstanceSpecificationMoietyComponent parseSubstanceSpecificationSubstanceSpecificationMoietyComponent(com.google.gson.JsonObject json, SubstanceSpecification owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSpecificationSubstanceSpecificationMoietyComponentProperties
protected void parseSubstanceSpecificationSubstanceSpecificationMoietyComponentProperties(com.google.gson.JsonObject json, SubstanceSpecification owner, SubstanceSpecification.SubstanceSpecificationMoietyComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSpecificationSubstanceSpecificationPropertyComponent
protected SubstanceSpecification.SubstanceSpecificationPropertyComponent parseSubstanceSpecificationSubstanceSpecificationPropertyComponent(com.google.gson.JsonObject json, SubstanceSpecification owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSpecificationSubstanceSpecificationPropertyComponentProperties
protected void parseSubstanceSpecificationSubstanceSpecificationPropertyComponentProperties(com.google.gson.JsonObject json, SubstanceSpecification owner, SubstanceSpecification.SubstanceSpecificationPropertyComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSpecificationSubstanceSpecificationStructureComponent
protected SubstanceSpecification.SubstanceSpecificationStructureComponent parseSubstanceSpecificationSubstanceSpecificationStructureComponent(com.google.gson.JsonObject json, SubstanceSpecification owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSpecificationSubstanceSpecificationStructureComponentProperties
protected void parseSubstanceSpecificationSubstanceSpecificationStructureComponentProperties(com.google.gson.JsonObject json, SubstanceSpecification owner, SubstanceSpecification.SubstanceSpecificationStructureComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSpecificationSubstanceSpecificationStructureIsotopeComponent
protected SubstanceSpecification.SubstanceSpecificationStructureIsotopeComponent parseSubstanceSpecificationSubstanceSpecificationStructureIsotopeComponent(com.google.gson.JsonObject json, SubstanceSpecification owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSpecificationSubstanceSpecificationStructureIsotopeComponentProperties
protected void parseSubstanceSpecificationSubstanceSpecificationStructureIsotopeComponentProperties(com.google.gson.JsonObject json, SubstanceSpecification owner, SubstanceSpecification.SubstanceSpecificationStructureIsotopeComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSpecificationSubstanceSpecificationStructureIsotopeMolecularWeightComponent
protected SubstanceSpecification.SubstanceSpecificationStructureIsotopeMolecularWeightComponent parseSubstanceSpecificationSubstanceSpecificationStructureIsotopeMolecularWeightComponent(com.google.gson.JsonObject json, SubstanceSpecification owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSpecificationSubstanceSpecificationStructureIsotopeMolecularWeightComponentProperties
protected void parseSubstanceSpecificationSubstanceSpecificationStructureIsotopeMolecularWeightComponentProperties(com.google.gson.JsonObject json, SubstanceSpecification owner, SubstanceSpecification.SubstanceSpecificationStructureIsotopeMolecularWeightComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSpecificationSubstanceSpecificationStructureRepresentationComponent
protected SubstanceSpecification.SubstanceSpecificationStructureRepresentationComponent parseSubstanceSpecificationSubstanceSpecificationStructureRepresentationComponent(com.google.gson.JsonObject json, SubstanceSpecification owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSpecificationSubstanceSpecificationStructureRepresentationComponentProperties
protected void parseSubstanceSpecificationSubstanceSpecificationStructureRepresentationComponentProperties(com.google.gson.JsonObject json, SubstanceSpecification owner, SubstanceSpecification.SubstanceSpecificationStructureRepresentationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSpecificationSubstanceSpecificationCodeComponent
protected SubstanceSpecification.SubstanceSpecificationCodeComponent parseSubstanceSpecificationSubstanceSpecificationCodeComponent(com.google.gson.JsonObject json, SubstanceSpecification owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSpecificationSubstanceSpecificationCodeComponentProperties
protected void parseSubstanceSpecificationSubstanceSpecificationCodeComponentProperties(com.google.gson.JsonObject json, SubstanceSpecification owner, SubstanceSpecification.SubstanceSpecificationCodeComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSpecificationSubstanceSpecificationNameComponent
protected SubstanceSpecification.SubstanceSpecificationNameComponent parseSubstanceSpecificationSubstanceSpecificationNameComponent(com.google.gson.JsonObject json, SubstanceSpecification owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSpecificationSubstanceSpecificationNameComponentProperties
protected void parseSubstanceSpecificationSubstanceSpecificationNameComponentProperties(com.google.gson.JsonObject json, SubstanceSpecification owner, SubstanceSpecification.SubstanceSpecificationNameComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSpecificationSubstanceSpecificationNameOfficialComponent
protected SubstanceSpecification.SubstanceSpecificationNameOfficialComponent parseSubstanceSpecificationSubstanceSpecificationNameOfficialComponent(com.google.gson.JsonObject json, SubstanceSpecification owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSpecificationSubstanceSpecificationNameOfficialComponentProperties
protected void parseSubstanceSpecificationSubstanceSpecificationNameOfficialComponentProperties(com.google.gson.JsonObject json, SubstanceSpecification owner, SubstanceSpecification.SubstanceSpecificationNameOfficialComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSpecificationSubstanceSpecificationRelationshipComponent
protected SubstanceSpecification.SubstanceSpecificationRelationshipComponent parseSubstanceSpecificationSubstanceSpecificationRelationshipComponent(com.google.gson.JsonObject json, SubstanceSpecification owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceSpecificationSubstanceSpecificationRelationshipComponentProperties
protected void parseSubstanceSpecificationSubstanceSpecificationRelationshipComponentProperties(com.google.gson.JsonObject json, SubstanceSpecification owner, SubstanceSpecification.SubstanceSpecificationRelationshipComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSupplyDelivery
protected SupplyDelivery parseSupplyDelivery(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSupplyDeliveryProperties
protected void parseSupplyDeliveryProperties(com.google.gson.JsonObject json, SupplyDelivery res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSupplyDeliverySupplyDeliverySuppliedItemComponent
protected SupplyDelivery.SupplyDeliverySuppliedItemComponent parseSupplyDeliverySupplyDeliverySuppliedItemComponent(com.google.gson.JsonObject json, SupplyDelivery owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSupplyDeliverySupplyDeliverySuppliedItemComponentProperties
protected void parseSupplyDeliverySupplyDeliverySuppliedItemComponentProperties(com.google.gson.JsonObject json, SupplyDelivery owner, SupplyDelivery.SupplyDeliverySuppliedItemComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSupplyRequest
protected SupplyRequest parseSupplyRequest(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSupplyRequestProperties
protected void parseSupplyRequestProperties(com.google.gson.JsonObject json, SupplyRequest res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSupplyRequestSupplyRequestParameterComponent
protected SupplyRequest.SupplyRequestParameterComponent parseSupplyRequestSupplyRequestParameterComponent(com.google.gson.JsonObject json, SupplyRequest owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSupplyRequestSupplyRequestParameterComponentProperties
protected void parseSupplyRequestSupplyRequestParameterComponentProperties(com.google.gson.JsonObject json, SupplyRequest owner, SupplyRequest.SupplyRequestParameterComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTask
protected Task parseTask(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTaskProperties
protected void parseTaskProperties(com.google.gson.JsonObject json, Task res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTaskTaskRestrictionComponent
protected Task.TaskRestrictionComponent parseTaskTaskRestrictionComponent(com.google.gson.JsonObject json, Task owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTaskTaskRestrictionComponentProperties
protected void parseTaskTaskRestrictionComponentProperties(com.google.gson.JsonObject json, Task owner, Task.TaskRestrictionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTaskParameterComponent
protected Task.ParameterComponent parseTaskParameterComponent(com.google.gson.JsonObject json, Task owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTaskParameterComponentProperties
protected void parseTaskParameterComponentProperties(com.google.gson.JsonObject json, Task owner, Task.ParameterComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTaskTaskOutputComponent
protected Task.TaskOutputComponent parseTaskTaskOutputComponent(com.google.gson.JsonObject json, Task owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTaskTaskOutputComponentProperties
protected void parseTaskTaskOutputComponentProperties(com.google.gson.JsonObject json, Task owner, Task.TaskOutputComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilities
protected TerminologyCapabilities parseTerminologyCapabilities(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesProperties
protected void parseTerminologyCapabilitiesProperties(com.google.gson.JsonObject json, TerminologyCapabilities res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesTerminologyCapabilitiesSoftwareComponent
protected TerminologyCapabilities.TerminologyCapabilitiesSoftwareComponent parseTerminologyCapabilitiesTerminologyCapabilitiesSoftwareComponent(com.google.gson.JsonObject json, TerminologyCapabilities owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesTerminologyCapabilitiesSoftwareComponentProperties
protected void parseTerminologyCapabilitiesTerminologyCapabilitiesSoftwareComponentProperties(com.google.gson.JsonObject json, TerminologyCapabilities owner, TerminologyCapabilities.TerminologyCapabilitiesSoftwareComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesTerminologyCapabilitiesImplementationComponent
protected TerminologyCapabilities.TerminologyCapabilitiesImplementationComponent parseTerminologyCapabilitiesTerminologyCapabilitiesImplementationComponent(com.google.gson.JsonObject json, TerminologyCapabilities owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesTerminologyCapabilitiesImplementationComponentProperties
protected void parseTerminologyCapabilitiesTerminologyCapabilitiesImplementationComponentProperties(com.google.gson.JsonObject json, TerminologyCapabilities owner, TerminologyCapabilities.TerminologyCapabilitiesImplementationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesTerminologyCapabilitiesCodeSystemComponent
protected TerminologyCapabilities.TerminologyCapabilitiesCodeSystemComponent parseTerminologyCapabilitiesTerminologyCapabilitiesCodeSystemComponent(com.google.gson.JsonObject json, TerminologyCapabilities owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesTerminologyCapabilitiesCodeSystemComponentProperties
protected void parseTerminologyCapabilitiesTerminologyCapabilitiesCodeSystemComponentProperties(com.google.gson.JsonObject json, TerminologyCapabilities owner, TerminologyCapabilities.TerminologyCapabilitiesCodeSystemComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesTerminologyCapabilitiesCodeSystemVersionComponent
protected TerminologyCapabilities.TerminologyCapabilitiesCodeSystemVersionComponent parseTerminologyCapabilitiesTerminologyCapabilitiesCodeSystemVersionComponent(com.google.gson.JsonObject json, TerminologyCapabilities owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesTerminologyCapabilitiesCodeSystemVersionComponentProperties
protected void parseTerminologyCapabilitiesTerminologyCapabilitiesCodeSystemVersionComponentProperties(com.google.gson.JsonObject json, TerminologyCapabilities owner, TerminologyCapabilities.TerminologyCapabilitiesCodeSystemVersionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesTerminologyCapabilitiesCodeSystemVersionFilterComponent
protected TerminologyCapabilities.TerminologyCapabilitiesCodeSystemVersionFilterComponent parseTerminologyCapabilitiesTerminologyCapabilitiesCodeSystemVersionFilterComponent(com.google.gson.JsonObject json, TerminologyCapabilities owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesTerminologyCapabilitiesCodeSystemVersionFilterComponentProperties
protected void parseTerminologyCapabilitiesTerminologyCapabilitiesCodeSystemVersionFilterComponentProperties(com.google.gson.JsonObject json, TerminologyCapabilities owner, TerminologyCapabilities.TerminologyCapabilitiesCodeSystemVersionFilterComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesTerminologyCapabilitiesExpansionComponent
protected TerminologyCapabilities.TerminologyCapabilitiesExpansionComponent parseTerminologyCapabilitiesTerminologyCapabilitiesExpansionComponent(com.google.gson.JsonObject json, TerminologyCapabilities owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesTerminologyCapabilitiesExpansionComponentProperties
protected void parseTerminologyCapabilitiesTerminologyCapabilitiesExpansionComponentProperties(com.google.gson.JsonObject json, TerminologyCapabilities owner, TerminologyCapabilities.TerminologyCapabilitiesExpansionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesTerminologyCapabilitiesExpansionParameterComponent
protected TerminologyCapabilities.TerminologyCapabilitiesExpansionParameterComponent parseTerminologyCapabilitiesTerminologyCapabilitiesExpansionParameterComponent(com.google.gson.JsonObject json, TerminologyCapabilities owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesTerminologyCapabilitiesExpansionParameterComponentProperties
protected void parseTerminologyCapabilitiesTerminologyCapabilitiesExpansionParameterComponentProperties(com.google.gson.JsonObject json, TerminologyCapabilities owner, TerminologyCapabilities.TerminologyCapabilitiesExpansionParameterComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesTerminologyCapabilitiesValidateCodeComponent
protected TerminologyCapabilities.TerminologyCapabilitiesValidateCodeComponent parseTerminologyCapabilitiesTerminologyCapabilitiesValidateCodeComponent(com.google.gson.JsonObject json, TerminologyCapabilities owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesTerminologyCapabilitiesValidateCodeComponentProperties
protected void parseTerminologyCapabilitiesTerminologyCapabilitiesValidateCodeComponentProperties(com.google.gson.JsonObject json, TerminologyCapabilities owner, TerminologyCapabilities.TerminologyCapabilitiesValidateCodeComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesTerminologyCapabilitiesTranslationComponent
protected TerminologyCapabilities.TerminologyCapabilitiesTranslationComponent parseTerminologyCapabilitiesTerminologyCapabilitiesTranslationComponent(com.google.gson.JsonObject json, TerminologyCapabilities owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesTerminologyCapabilitiesTranslationComponentProperties
protected void parseTerminologyCapabilitiesTerminologyCapabilitiesTranslationComponentProperties(com.google.gson.JsonObject json, TerminologyCapabilities owner, TerminologyCapabilities.TerminologyCapabilitiesTranslationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesTerminologyCapabilitiesClosureComponent
protected TerminologyCapabilities.TerminologyCapabilitiesClosureComponent parseTerminologyCapabilitiesTerminologyCapabilitiesClosureComponent(com.google.gson.JsonObject json, TerminologyCapabilities owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesTerminologyCapabilitiesClosureComponentProperties
protected void parseTerminologyCapabilitiesTerminologyCapabilitiesClosureComponentProperties(com.google.gson.JsonObject json, TerminologyCapabilities owner, TerminologyCapabilities.TerminologyCapabilitiesClosureComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestReport
protected TestReport parseTestReport(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestReportProperties
protected void parseTestReportProperties(com.google.gson.JsonObject json, TestReport res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestReportTestReportParticipantComponent
protected TestReport.TestReportParticipantComponent parseTestReportTestReportParticipantComponent(com.google.gson.JsonObject json, TestReport owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestReportTestReportParticipantComponentProperties
protected void parseTestReportTestReportParticipantComponentProperties(com.google.gson.JsonObject json, TestReport owner, TestReport.TestReportParticipantComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestReportTestReportSetupComponent
protected TestReport.TestReportSetupComponent parseTestReportTestReportSetupComponent(com.google.gson.JsonObject json, TestReport owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestReportTestReportSetupComponentProperties
protected void parseTestReportTestReportSetupComponentProperties(com.google.gson.JsonObject json, TestReport owner, TestReport.TestReportSetupComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestReportSetupActionComponent
protected TestReport.SetupActionComponent parseTestReportSetupActionComponent(com.google.gson.JsonObject json, TestReport owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestReportSetupActionComponentProperties
protected void parseTestReportSetupActionComponentProperties(com.google.gson.JsonObject json, TestReport owner, TestReport.SetupActionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestReportSetupActionOperationComponent
protected TestReport.SetupActionOperationComponent parseTestReportSetupActionOperationComponent(com.google.gson.JsonObject json, TestReport owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestReportSetupActionOperationComponentProperties
protected void parseTestReportSetupActionOperationComponentProperties(com.google.gson.JsonObject json, TestReport owner, TestReport.SetupActionOperationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestReportSetupActionAssertComponent
protected TestReport.SetupActionAssertComponent parseTestReportSetupActionAssertComponent(com.google.gson.JsonObject json, TestReport owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestReportSetupActionAssertComponentProperties
protected void parseTestReportSetupActionAssertComponentProperties(com.google.gson.JsonObject json, TestReport owner, TestReport.SetupActionAssertComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestReportTestReportTestComponent
protected TestReport.TestReportTestComponent parseTestReportTestReportTestComponent(com.google.gson.JsonObject json, TestReport owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestReportTestReportTestComponentProperties
protected void parseTestReportTestReportTestComponentProperties(com.google.gson.JsonObject json, TestReport owner, TestReport.TestReportTestComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestReportTestActionComponent
protected TestReport.TestActionComponent parseTestReportTestActionComponent(com.google.gson.JsonObject json, TestReport owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestReportTestActionComponentProperties
protected void parseTestReportTestActionComponentProperties(com.google.gson.JsonObject json, TestReport owner, TestReport.TestActionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestReportTestReportTeardownComponent
protected TestReport.TestReportTeardownComponent parseTestReportTestReportTeardownComponent(com.google.gson.JsonObject json, TestReport owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestReportTestReportTeardownComponentProperties
protected void parseTestReportTestReportTeardownComponentProperties(com.google.gson.JsonObject json, TestReport owner, TestReport.TestReportTeardownComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestReportTeardownActionComponent
protected TestReport.TeardownActionComponent parseTestReportTeardownActionComponent(com.google.gson.JsonObject json, TestReport owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestReportTeardownActionComponentProperties
protected void parseTestReportTeardownActionComponentProperties(com.google.gson.JsonObject json, TestReport owner, TestReport.TeardownActionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScript
protected TestScript parseTestScript(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptProperties
protected void parseTestScriptProperties(com.google.gson.JsonObject json, TestScript res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptTestScriptOriginComponent
protected TestScript.TestScriptOriginComponent parseTestScriptTestScriptOriginComponent(com.google.gson.JsonObject json, TestScript owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptTestScriptOriginComponentProperties
protected void parseTestScriptTestScriptOriginComponentProperties(com.google.gson.JsonObject json, TestScript owner, TestScript.TestScriptOriginComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptTestScriptDestinationComponent
protected TestScript.TestScriptDestinationComponent parseTestScriptTestScriptDestinationComponent(com.google.gson.JsonObject json, TestScript owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptTestScriptDestinationComponentProperties
protected void parseTestScriptTestScriptDestinationComponentProperties(com.google.gson.JsonObject json, TestScript owner, TestScript.TestScriptDestinationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptTestScriptMetadataComponent
protected TestScript.TestScriptMetadataComponent parseTestScriptTestScriptMetadataComponent(com.google.gson.JsonObject json, TestScript owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptTestScriptMetadataComponentProperties
protected void parseTestScriptTestScriptMetadataComponentProperties(com.google.gson.JsonObject json, TestScript owner, TestScript.TestScriptMetadataComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptTestScriptMetadataLinkComponent
protected TestScript.TestScriptMetadataLinkComponent parseTestScriptTestScriptMetadataLinkComponent(com.google.gson.JsonObject json, TestScript owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptTestScriptMetadataLinkComponentProperties
protected void parseTestScriptTestScriptMetadataLinkComponentProperties(com.google.gson.JsonObject json, TestScript owner, TestScript.TestScriptMetadataLinkComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptTestScriptMetadataCapabilityComponent
protected TestScript.TestScriptMetadataCapabilityComponent parseTestScriptTestScriptMetadataCapabilityComponent(com.google.gson.JsonObject json, TestScript owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptTestScriptMetadataCapabilityComponentProperties
protected void parseTestScriptTestScriptMetadataCapabilityComponentProperties(com.google.gson.JsonObject json, TestScript owner, TestScript.TestScriptMetadataCapabilityComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptTestScriptFixtureComponent
protected TestScript.TestScriptFixtureComponent parseTestScriptTestScriptFixtureComponent(com.google.gson.JsonObject json, TestScript owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptTestScriptFixtureComponentProperties
protected void parseTestScriptTestScriptFixtureComponentProperties(com.google.gson.JsonObject json, TestScript owner, TestScript.TestScriptFixtureComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptTestScriptVariableComponent
protected TestScript.TestScriptVariableComponent parseTestScriptTestScriptVariableComponent(com.google.gson.JsonObject json, TestScript owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptTestScriptVariableComponentProperties
protected void parseTestScriptTestScriptVariableComponentProperties(com.google.gson.JsonObject json, TestScript owner, TestScript.TestScriptVariableComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptTestScriptSetupComponent
protected TestScript.TestScriptSetupComponent parseTestScriptTestScriptSetupComponent(com.google.gson.JsonObject json, TestScript owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptTestScriptSetupComponentProperties
protected void parseTestScriptTestScriptSetupComponentProperties(com.google.gson.JsonObject json, TestScript owner, TestScript.TestScriptSetupComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptSetupActionComponent
protected TestScript.SetupActionComponent parseTestScriptSetupActionComponent(com.google.gson.JsonObject json, TestScript owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptSetupActionComponentProperties
protected void parseTestScriptSetupActionComponentProperties(com.google.gson.JsonObject json, TestScript owner, TestScript.SetupActionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptSetupActionOperationComponent
protected TestScript.SetupActionOperationComponent parseTestScriptSetupActionOperationComponent(com.google.gson.JsonObject json, TestScript owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptSetupActionOperationComponentProperties
protected void parseTestScriptSetupActionOperationComponentProperties(com.google.gson.JsonObject json, TestScript owner, TestScript.SetupActionOperationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptSetupActionOperationRequestHeaderComponent
protected TestScript.SetupActionOperationRequestHeaderComponent parseTestScriptSetupActionOperationRequestHeaderComponent(com.google.gson.JsonObject json, TestScript owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptSetupActionOperationRequestHeaderComponentProperties
protected void parseTestScriptSetupActionOperationRequestHeaderComponentProperties(com.google.gson.JsonObject json, TestScript owner, TestScript.SetupActionOperationRequestHeaderComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptSetupActionAssertComponent
protected TestScript.SetupActionAssertComponent parseTestScriptSetupActionAssertComponent(com.google.gson.JsonObject json, TestScript owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptSetupActionAssertComponentProperties
protected void parseTestScriptSetupActionAssertComponentProperties(com.google.gson.JsonObject json, TestScript owner, TestScript.SetupActionAssertComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptTestScriptTestComponent
protected TestScript.TestScriptTestComponent parseTestScriptTestScriptTestComponent(com.google.gson.JsonObject json, TestScript owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptTestScriptTestComponentProperties
protected void parseTestScriptTestScriptTestComponentProperties(com.google.gson.JsonObject json, TestScript owner, TestScript.TestScriptTestComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptTestActionComponent
protected TestScript.TestActionComponent parseTestScriptTestActionComponent(com.google.gson.JsonObject json, TestScript owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptTestActionComponentProperties
protected void parseTestScriptTestActionComponentProperties(com.google.gson.JsonObject json, TestScript owner, TestScript.TestActionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptTestScriptTeardownComponent
protected TestScript.TestScriptTeardownComponent parseTestScriptTestScriptTeardownComponent(com.google.gson.JsonObject json, TestScript owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptTestScriptTeardownComponentProperties
protected void parseTestScriptTestScriptTeardownComponentProperties(com.google.gson.JsonObject json, TestScript owner, TestScript.TestScriptTeardownComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptTeardownActionComponent
protected TestScript.TeardownActionComponent parseTestScriptTeardownActionComponent(com.google.gson.JsonObject json, TestScript owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptTeardownActionComponentProperties
protected void parseTestScriptTeardownActionComponentProperties(com.google.gson.JsonObject json, TestScript owner, TestScript.TeardownActionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseValueSet
protected ValueSet parseValueSet(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseValueSetProperties
protected void parseValueSetProperties(com.google.gson.JsonObject json, ValueSet res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseValueSetValueSetComposeComponent
protected ValueSet.ValueSetComposeComponent parseValueSetValueSetComposeComponent(com.google.gson.JsonObject json, ValueSet owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseValueSetValueSetComposeComponentProperties
protected void parseValueSetValueSetComposeComponentProperties(com.google.gson.JsonObject json, ValueSet owner, ValueSet.ValueSetComposeComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseValueSetConceptSetComponent
protected ValueSet.ConceptSetComponent parseValueSetConceptSetComponent(com.google.gson.JsonObject json, ValueSet owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseValueSetConceptSetComponentProperties
protected void parseValueSetConceptSetComponentProperties(com.google.gson.JsonObject json, ValueSet owner, ValueSet.ConceptSetComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseValueSetConceptReferenceComponent
protected ValueSet.ConceptReferenceComponent parseValueSetConceptReferenceComponent(com.google.gson.JsonObject json, ValueSet owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseValueSetConceptReferenceComponentProperties
protected void parseValueSetConceptReferenceComponentProperties(com.google.gson.JsonObject json, ValueSet owner, ValueSet.ConceptReferenceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseValueSetConceptReferenceDesignationComponent
protected ValueSet.ConceptReferenceDesignationComponent parseValueSetConceptReferenceDesignationComponent(com.google.gson.JsonObject json, ValueSet owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseValueSetConceptReferenceDesignationComponentProperties
protected void parseValueSetConceptReferenceDesignationComponentProperties(com.google.gson.JsonObject json, ValueSet owner, ValueSet.ConceptReferenceDesignationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseValueSetConceptSetFilterComponent
protected ValueSet.ConceptSetFilterComponent parseValueSetConceptSetFilterComponent(com.google.gson.JsonObject json, ValueSet owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseValueSetConceptSetFilterComponentProperties
protected void parseValueSetConceptSetFilterComponentProperties(com.google.gson.JsonObject json, ValueSet owner, ValueSet.ConceptSetFilterComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseValueSetValueSetExpansionComponent
protected ValueSet.ValueSetExpansionComponent parseValueSetValueSetExpansionComponent(com.google.gson.JsonObject json, ValueSet owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseValueSetValueSetExpansionComponentProperties
protected void parseValueSetValueSetExpansionComponentProperties(com.google.gson.JsonObject json, ValueSet owner, ValueSet.ValueSetExpansionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseValueSetValueSetExpansionParameterComponent
protected ValueSet.ValueSetExpansionParameterComponent parseValueSetValueSetExpansionParameterComponent(com.google.gson.JsonObject json, ValueSet owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseValueSetValueSetExpansionParameterComponentProperties
protected void parseValueSetValueSetExpansionParameterComponentProperties(com.google.gson.JsonObject json, ValueSet owner, ValueSet.ValueSetExpansionParameterComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseValueSetValueSetExpansionContainsComponent
protected ValueSet.ValueSetExpansionContainsComponent parseValueSetValueSetExpansionContainsComponent(com.google.gson.JsonObject json, ValueSet owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseValueSetValueSetExpansionContainsComponentProperties
protected void parseValueSetValueSetExpansionContainsComponentProperties(com.google.gson.JsonObject json, ValueSet owner, ValueSet.ValueSetExpansionContainsComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseVerificationResult
protected VerificationResult parseVerificationResult(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseVerificationResultProperties
protected void parseVerificationResultProperties(com.google.gson.JsonObject json, VerificationResult res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseVerificationResultVerificationResultPrimarySourceComponent
protected VerificationResult.VerificationResultPrimarySourceComponent parseVerificationResultVerificationResultPrimarySourceComponent(com.google.gson.JsonObject json, VerificationResult owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseVerificationResultVerificationResultPrimarySourceComponentProperties
protected void parseVerificationResultVerificationResultPrimarySourceComponentProperties(com.google.gson.JsonObject json, VerificationResult owner, VerificationResult.VerificationResultPrimarySourceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseVerificationResultVerificationResultAttestationComponent
protected VerificationResult.VerificationResultAttestationComponent parseVerificationResultVerificationResultAttestationComponent(com.google.gson.JsonObject json, VerificationResult owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseVerificationResultVerificationResultAttestationComponentProperties
protected void parseVerificationResultVerificationResultAttestationComponentProperties(com.google.gson.JsonObject json, VerificationResult owner, VerificationResult.VerificationResultAttestationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseVerificationResultVerificationResultValidatorComponent
protected VerificationResult.VerificationResultValidatorComponent parseVerificationResultVerificationResultValidatorComponent(com.google.gson.JsonObject json, VerificationResult owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseVerificationResultVerificationResultValidatorComponentProperties
protected void parseVerificationResultVerificationResultValidatorComponentProperties(com.google.gson.JsonObject json, VerificationResult owner, VerificationResult.VerificationResultValidatorComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseVisionPrescription
protected VisionPrescription parseVisionPrescription(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseVisionPrescriptionProperties
protected void parseVisionPrescriptionProperties(com.google.gson.JsonObject json, VisionPrescription res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseVisionPrescriptionVisionPrescriptionLensSpecificationComponent
protected VisionPrescription.VisionPrescriptionLensSpecificationComponent parseVisionPrescriptionVisionPrescriptionLensSpecificationComponent(com.google.gson.JsonObject json, VisionPrescription owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseVisionPrescriptionVisionPrescriptionLensSpecificationComponentProperties
protected void parseVisionPrescriptionVisionPrescriptionLensSpecificationComponentProperties(com.google.gson.JsonObject json, VisionPrescription owner, VisionPrescription.VisionPrescriptionLensSpecificationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseVisionPrescriptionPrismComponent
protected VisionPrescription.PrismComponent parseVisionPrescriptionPrismComponent(com.google.gson.JsonObject json, VisionPrescription owner) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseVisionPrescriptionPrismComponentProperties
protected void parseVisionPrescriptionPrismComponentProperties(com.google.gson.JsonObject json, VisionPrescription owner, VisionPrescription.PrismComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseResource
protected Resource parseResource(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Specified by:
parseResourcein classJsonParserBase- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseType
protected Type parseType(String prefix, com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Specified by:
parseTypein classJsonParserBase- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseType
protected Type parseType(com.google.gson.JsonObject json, String type) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Specified by:
parseTypein classJsonParserBase- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
hasTypeName
protected boolean hasTypeName(com.google.gson.JsonObject json, String prefix)
- Specified by:
hasTypeNamein classJsonParserBase
-
parseAnyType
protected Type parseAnyType(com.google.gson.JsonObject json, String type) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Specified by:
parseAnyTypein classJsonParserBase- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
composeElement
protected void composeElement(Element element) throws IOException
- Throws:
IOException
-
composeBackboneElementInner
protected void composeBackboneElementInner(BackboneElement element) throws IOException
- Throws:
IOException
-
composeBackbone
protected void composeBackbone(BackboneElement element) throws IOException
- Throws:
IOException
-
composeBackbone
protected void composeBackbone(BackboneType element) throws IOException
- Throws:
IOException
-
composeEnumerationCore
protected <E extends Enum<E>> void composeEnumerationCore(String name, Enumeration<E> value, EnumFactory e, boolean inArray) throws IOException
- Throws:
IOException
-
composeEnumerationExtras
protected <E extends Enum<E>> void composeEnumerationExtras(String name, Enumeration<E> value, EnumFactory e, boolean inArray) throws IOException
- Throws:
IOException
-
composeDateCore
protected void composeDateCore(String name, DateType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeDateExtras
protected void composeDateExtras(String name, DateType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeDateTimeCore
protected void composeDateTimeCore(String name, DateTimeType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeDateTimeExtras
protected void composeDateTimeExtras(String name, DateTimeType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeCodeCore
protected void composeCodeCore(String name, CodeType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeCodeExtras
protected void composeCodeExtras(String name, CodeType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeStringCore
protected void composeStringCore(String name, StringType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeStringExtras
protected void composeStringExtras(String name, StringType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeIntegerCore
protected void composeIntegerCore(String name, IntegerType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeIntegerExtras
protected void composeIntegerExtras(String name, IntegerType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeOidCore
protected void composeOidCore(String name, OidType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeOidExtras
protected void composeOidExtras(String name, OidType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeCanonicalCore
protected void composeCanonicalCore(String name, CanonicalType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeCanonicalExtras
protected void composeCanonicalExtras(String name, CanonicalType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeUriCore
protected void composeUriCore(String name, UriType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeUriExtras
protected void composeUriExtras(String name, UriType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeUuidCore
protected void composeUuidCore(String name, UuidType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeUuidExtras
protected void composeUuidExtras(String name, UuidType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeUrlCore
protected void composeUrlCore(String name, UrlType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeUrlExtras
protected void composeUrlExtras(String name, UrlType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeInstantCore
protected void composeInstantCore(String name, InstantType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeInstantExtras
protected void composeInstantExtras(String name, InstantType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeBooleanCore
protected void composeBooleanCore(String name, BooleanType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeBooleanExtras
protected void composeBooleanExtras(String name, BooleanType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeBase64BinaryCore
protected void composeBase64BinaryCore(String name, Base64BinaryType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeBase64BinaryExtras
protected void composeBase64BinaryExtras(String name, Base64BinaryType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeUnsignedIntCore
protected void composeUnsignedIntCore(String name, UnsignedIntType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeUnsignedIntExtras
protected void composeUnsignedIntExtras(String name, UnsignedIntType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeMarkdownCore
protected void composeMarkdownCore(String name, MarkdownType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeMarkdownExtras
protected void composeMarkdownExtras(String name, MarkdownType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeTimeCore
protected void composeTimeCore(String name, TimeType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeTimeExtras
protected void composeTimeExtras(String name, TimeType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeIdCore
protected void composeIdCore(String name, IdType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeIdExtras
protected void composeIdExtras(String name, IdType value, boolean inArray) throws IOException
- Throws:
IOException
-
composePositiveIntCore
protected void composePositiveIntCore(String name, PositiveIntType value, boolean inArray) throws IOException
- Throws:
IOException
-
composePositiveIntExtras
protected void composePositiveIntExtras(String name, PositiveIntType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeDecimalCore
protected void composeDecimalCore(String name, DecimalType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeDecimalExtras
protected void composeDecimalExtras(String name, DecimalType value, boolean inArray) throws IOException
- Throws:
IOException
-
composeExtension
protected void composeExtension(String name, Extension element) throws IOException
- Throws:
IOException
-
composeExtensionInner
protected void composeExtensionInner(Extension element) throws IOException
- Throws:
IOException
-
composeNarrative
protected void composeNarrative(String name, Narrative element) throws IOException
- Throws:
IOException
-
composeNarrativeInner
protected void composeNarrativeInner(Narrative element) throws IOException
- Throws:
IOException
-
composeCount
protected void composeCount(String name, Count element) throws IOException
- Throws:
IOException
-
composeCountInner
protected void composeCountInner(Count element) throws IOException
- Throws:
IOException
-
composeDosage
protected void composeDosage(String name, Dosage element) throws IOException
- Throws:
IOException
-
composeDosageInner
protected void composeDosageInner(Dosage element) throws IOException
- Throws:
IOException
-
composeDosageDosageDoseAndRateComponent
protected void composeDosageDosageDoseAndRateComponent(String name, Dosage.DosageDoseAndRateComponent element) throws IOException
- Throws:
IOException
-
composeDosageDosageDoseAndRateComponentInner
protected void composeDosageDosageDoseAndRateComponentInner(Dosage.DosageDoseAndRateComponent element) throws IOException
- Throws:
IOException
-
composeMarketingStatus
protected void composeMarketingStatus(String name, MarketingStatus element) throws IOException
- Throws:
IOException
-
composeMarketingStatusInner
protected void composeMarketingStatusInner(MarketingStatus element) throws IOException
- Throws:
IOException
-
composeSubstanceAmount
protected void composeSubstanceAmount(String name, SubstanceAmount element) throws IOException
- Throws:
IOException
-
composeSubstanceAmountInner
protected void composeSubstanceAmountInner(SubstanceAmount element) throws IOException
- Throws:
IOException
-
composeSubstanceAmountSubstanceAmountReferenceRangeComponent
protected void composeSubstanceAmountSubstanceAmountReferenceRangeComponent(String name, SubstanceAmount.SubstanceAmountReferenceRangeComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceAmountSubstanceAmountReferenceRangeComponentInner
protected void composeSubstanceAmountSubstanceAmountReferenceRangeComponentInner(SubstanceAmount.SubstanceAmountReferenceRangeComponent element) throws IOException
- Throws:
IOException
-
composePopulation
protected void composePopulation(String name, Population element) throws IOException
- Throws:
IOException
-
composePopulationInner
protected void composePopulationInner(Population element) throws IOException
- Throws:
IOException
-
composeDistance
protected void composeDistance(String name, Distance element) throws IOException
- Throws:
IOException
-
composeDistanceInner
protected void composeDistanceInner(Distance element) throws IOException
- Throws:
IOException
-
composeAge
protected void composeAge(String name, Age element) throws IOException
- Throws:
IOException
-
composeAgeInner
protected void composeAgeInner(Age element) throws IOException
- Throws:
IOException
-
composeDuration
protected void composeDuration(String name, Duration element) throws IOException
- Throws:
IOException
-
composeDurationInner
protected void composeDurationInner(Duration element) throws IOException
- Throws:
IOException
-
composeProductShelfLife
protected void composeProductShelfLife(String name, ProductShelfLife element) throws IOException
- Throws:
IOException
-
composeProductShelfLifeInner
protected void composeProductShelfLifeInner(ProductShelfLife element) throws IOException
- Throws:
IOException
-
composeTiming
protected void composeTiming(String name, Timing element) throws IOException
- Throws:
IOException
-
composeTimingInner
protected void composeTimingInner(Timing element) throws IOException
- Throws:
IOException
-
composeTimingTimingRepeatComponent
protected void composeTimingTimingRepeatComponent(String name, Timing.TimingRepeatComponent element) throws IOException
- Throws:
IOException
-
composeTimingTimingRepeatComponentInner
protected void composeTimingTimingRepeatComponentInner(Timing.TimingRepeatComponent element) throws IOException
- Throws:
IOException
-
composeProdCharacteristic
protected void composeProdCharacteristic(String name, ProdCharacteristic element) throws IOException
- Throws:
IOException
-
composeProdCharacteristicInner
protected void composeProdCharacteristicInner(ProdCharacteristic element) throws IOException
- Throws:
IOException
-
composeMeta
protected void composeMeta(String name, Meta element) throws IOException
- Throws:
IOException
-
composeMetaInner
protected void composeMetaInner(Meta element) throws IOException
- Throws:
IOException
-
composeAddress
protected void composeAddress(String name, Address element) throws IOException
- Throws:
IOException
-
composeAddressInner
protected void composeAddressInner(Address element) throws IOException
- Throws:
IOException
-
composeContributor
protected void composeContributor(String name, Contributor element) throws IOException
- Throws:
IOException
-
composeContributorInner
protected void composeContributorInner(Contributor element) throws IOException
- Throws:
IOException
-
composeAttachment
protected void composeAttachment(String name, Attachment element) throws IOException
- Throws:
IOException
-
composeAttachmentInner
protected void composeAttachmentInner(Attachment element) throws IOException
- Throws:
IOException
-
composeDataRequirement
protected void composeDataRequirement(String name, DataRequirement element) throws IOException
- Throws:
IOException
-
composeDataRequirementInner
protected void composeDataRequirementInner(DataRequirement element) throws IOException
- Throws:
IOException
-
composeDataRequirementDataRequirementCodeFilterComponent
protected void composeDataRequirementDataRequirementCodeFilterComponent(String name, DataRequirement.DataRequirementCodeFilterComponent element) throws IOException
- Throws:
IOException
-
composeDataRequirementDataRequirementCodeFilterComponentInner
protected void composeDataRequirementDataRequirementCodeFilterComponentInner(DataRequirement.DataRequirementCodeFilterComponent element) throws IOException
- Throws:
IOException
-
composeDataRequirementDataRequirementDateFilterComponent
protected void composeDataRequirementDataRequirementDateFilterComponent(String name, DataRequirement.DataRequirementDateFilterComponent element) throws IOException
- Throws:
IOException
-
composeDataRequirementDataRequirementDateFilterComponentInner
protected void composeDataRequirementDataRequirementDateFilterComponentInner(DataRequirement.DataRequirementDateFilterComponent element) throws IOException
- Throws:
IOException
-
composeDataRequirementDataRequirementSortComponent
protected void composeDataRequirementDataRequirementSortComponent(String name, DataRequirement.DataRequirementSortComponent element) throws IOException
- Throws:
IOException
-
composeDataRequirementDataRequirementSortComponentInner
protected void composeDataRequirementDataRequirementSortComponentInner(DataRequirement.DataRequirementSortComponent element) throws IOException
- Throws:
IOException
-
composeMoney
protected void composeMoney(String name, Money element) throws IOException
- Throws:
IOException
-
composeMoneyInner
protected void composeMoneyInner(Money element) throws IOException
- Throws:
IOException
-
composeHumanName
protected void composeHumanName(String name, HumanName element) throws IOException
- Throws:
IOException
-
composeHumanNameInner
protected void composeHumanNameInner(HumanName element) throws IOException
- Throws:
IOException
-
composeContactPoint
protected void composeContactPoint(String name, ContactPoint element) throws IOException
- Throws:
IOException
-
composeContactPointInner
protected void composeContactPointInner(ContactPoint element) throws IOException
- Throws:
IOException
-
composeIdentifier
protected void composeIdentifier(String name, Identifier element) throws IOException
- Throws:
IOException
-
composeIdentifierInner
protected void composeIdentifierInner(Identifier element) throws IOException
- Throws:
IOException
-
composeCoding
protected void composeCoding(String name, Coding element) throws IOException
- Throws:
IOException
-
composeCodingInner
protected void composeCodingInner(Coding element) throws IOException
- Throws:
IOException
-
composeSampledData
protected void composeSampledData(String name, SampledData element) throws IOException
- Throws:
IOException
-
composeSampledDataInner
protected void composeSampledDataInner(SampledData element) throws IOException
- Throws:
IOException
-
composeRatio
protected void composeRatio(String name, Ratio element) throws IOException
- Throws:
IOException
-
composeRatioInner
protected void composeRatioInner(Ratio element) throws IOException
- Throws:
IOException
-
composeReference
protected void composeReference(String name, Reference element) throws IOException
- Throws:
IOException
-
composeReferenceInner
protected void composeReferenceInner(Reference element) throws IOException
- Throws:
IOException
-
composeTriggerDefinition
protected void composeTriggerDefinition(String name, TriggerDefinition element) throws IOException
- Throws:
IOException
-
composeTriggerDefinitionInner
protected void composeTriggerDefinitionInner(TriggerDefinition element) throws IOException
- Throws:
IOException
-
composeQuantity
protected void composeQuantity(String name, Quantity element) throws IOException
- Throws:
IOException
-
composeQuantityInner
protected void composeQuantityInner(Quantity element) throws IOException
- Throws:
IOException
-
composePeriod
protected void composePeriod(String name, Period element) throws IOException
- Throws:
IOException
-
composePeriodInner
protected void composePeriodInner(Period element) throws IOException
- Throws:
IOException
-
composeRange
protected void composeRange(String name, Range element) throws IOException
- Throws:
IOException
-
composeRangeInner
protected void composeRangeInner(Range element) throws IOException
- Throws:
IOException
-
composeRelatedArtifact
protected void composeRelatedArtifact(String name, RelatedArtifact element) throws IOException
- Throws:
IOException
-
composeRelatedArtifactInner
protected void composeRelatedArtifactInner(RelatedArtifact element) throws IOException
- Throws:
IOException
-
composeAnnotation
protected void composeAnnotation(String name, Annotation element) throws IOException
- Throws:
IOException
-
composeAnnotationInner
protected void composeAnnotationInner(Annotation element) throws IOException
- Throws:
IOException
-
composeContactDetail
protected void composeContactDetail(String name, ContactDetail element) throws IOException
- Throws:
IOException
-
composeContactDetailInner
protected void composeContactDetailInner(ContactDetail element) throws IOException
- Throws:
IOException
-
composeUsageContext
protected void composeUsageContext(String name, UsageContext element) throws IOException
- Throws:
IOException
-
composeUsageContextInner
protected void composeUsageContextInner(UsageContext element) throws IOException
- Throws:
IOException
-
composeExpression
protected void composeExpression(String name, Expression element) throws IOException
- Throws:
IOException
-
composeExpressionInner
protected void composeExpressionInner(Expression element) throws IOException
- Throws:
IOException
-
composeSignature
protected void composeSignature(String name, Signature element) throws IOException
- Throws:
IOException
-
composeSignatureInner
protected void composeSignatureInner(Signature element) throws IOException
- Throws:
IOException
-
composeCodeableConcept
protected void composeCodeableConcept(String name, CodeableConcept element) throws IOException
- Throws:
IOException
-
composeCodeableConceptInner
protected void composeCodeableConceptInner(CodeableConcept element) throws IOException
- Throws:
IOException
-
composeParameterDefinition
protected void composeParameterDefinition(String name, ParameterDefinition element) throws IOException
- Throws:
IOException
-
composeParameterDefinitionInner
protected void composeParameterDefinitionInner(ParameterDefinition element) throws IOException
- Throws:
IOException
-
composeElementDefinition
protected void composeElementDefinition(String name, ElementDefinition element) throws IOException
- Throws:
IOException
-
composeElementDefinitionInner
protected void composeElementDefinitionInner(ElementDefinition element) throws IOException
- Throws:
IOException
-
composeElementDefinitionElementDefinitionSlicingComponent
protected void composeElementDefinitionElementDefinitionSlicingComponent(String name, ElementDefinition.ElementDefinitionSlicingComponent element) throws IOException
- Throws:
IOException
-
composeElementDefinitionElementDefinitionSlicingComponentInner
protected void composeElementDefinitionElementDefinitionSlicingComponentInner(ElementDefinition.ElementDefinitionSlicingComponent element) throws IOException
- Throws:
IOException
-
composeElementDefinitionElementDefinitionSlicingDiscriminatorComponent
protected void composeElementDefinitionElementDefinitionSlicingDiscriminatorComponent(String name, ElementDefinition.ElementDefinitionSlicingDiscriminatorComponent element) throws IOException
- Throws:
IOException
-
composeElementDefinitionElementDefinitionSlicingDiscriminatorComponentInner
protected void composeElementDefinitionElementDefinitionSlicingDiscriminatorComponentInner(ElementDefinition.ElementDefinitionSlicingDiscriminatorComponent element) throws IOException
- Throws:
IOException
-
composeElementDefinitionElementDefinitionBaseComponent
protected void composeElementDefinitionElementDefinitionBaseComponent(String name, ElementDefinition.ElementDefinitionBaseComponent element) throws IOException
- Throws:
IOException
-
composeElementDefinitionElementDefinitionBaseComponentInner
protected void composeElementDefinitionElementDefinitionBaseComponentInner(ElementDefinition.ElementDefinitionBaseComponent element) throws IOException
- Throws:
IOException
-
composeElementDefinitionTypeRefComponent
protected void composeElementDefinitionTypeRefComponent(String name, ElementDefinition.TypeRefComponent element) throws IOException
- Throws:
IOException
-
composeElementDefinitionTypeRefComponentInner
protected void composeElementDefinitionTypeRefComponentInner(ElementDefinition.TypeRefComponent element) throws IOException
- Throws:
IOException
-
composeElementDefinitionElementDefinitionExampleComponent
protected void composeElementDefinitionElementDefinitionExampleComponent(String name, ElementDefinition.ElementDefinitionExampleComponent element) throws IOException
- Throws:
IOException
-
composeElementDefinitionElementDefinitionExampleComponentInner
protected void composeElementDefinitionElementDefinitionExampleComponentInner(ElementDefinition.ElementDefinitionExampleComponent element) throws IOException
- Throws:
IOException
-
composeElementDefinitionElementDefinitionConstraintComponent
protected void composeElementDefinitionElementDefinitionConstraintComponent(String name, ElementDefinition.ElementDefinitionConstraintComponent element) throws IOException
- Throws:
IOException
-
composeElementDefinitionElementDefinitionConstraintComponentInner
protected void composeElementDefinitionElementDefinitionConstraintComponentInner(ElementDefinition.ElementDefinitionConstraintComponent element) throws IOException
- Throws:
IOException
-
composeElementDefinitionElementDefinitionBindingComponent
protected void composeElementDefinitionElementDefinitionBindingComponent(String name, ElementDefinition.ElementDefinitionBindingComponent element) throws IOException
- Throws:
IOException
-
composeElementDefinitionElementDefinitionBindingComponentInner
protected void composeElementDefinitionElementDefinitionBindingComponentInner(ElementDefinition.ElementDefinitionBindingComponent element) throws IOException
- Throws:
IOException
-
composeElementDefinitionElementDefinitionMappingComponent
protected void composeElementDefinitionElementDefinitionMappingComponent(String name, ElementDefinition.ElementDefinitionMappingComponent element) throws IOException
- Throws:
IOException
-
composeElementDefinitionElementDefinitionMappingComponentInner
protected void composeElementDefinitionElementDefinitionMappingComponentInner(ElementDefinition.ElementDefinitionMappingComponent element) throws IOException
- Throws:
IOException
-
composeDomainResourceElements
protected void composeDomainResourceElements(DomainResource element) throws IOException
- Throws:
IOException
-
composeParameters
protected void composeParameters(String name, Parameters element) throws IOException
- Throws:
IOException
-
composeParametersInner
protected void composeParametersInner(Parameters element) throws IOException
- Throws:
IOException
-
composeParametersParametersParameterComponent
protected void composeParametersParametersParameterComponent(String name, Parameters.ParametersParameterComponent element) throws IOException
- Throws:
IOException
-
composeParametersParametersParameterComponentInner
protected void composeParametersParametersParameterComponentInner(Parameters.ParametersParameterComponent element) throws IOException
- Throws:
IOException
-
composeResourceElements
protected void composeResourceElements(Resource element) throws IOException
- Throws:
IOException
-
composeAccount
protected void composeAccount(String name, Account element) throws IOException
- Throws:
IOException
-
composeAccountInner
protected void composeAccountInner(Account element) throws IOException
- Throws:
IOException
-
composeAccountCoverageComponent
protected void composeAccountCoverageComponent(String name, Account.CoverageComponent element) throws IOException
- Throws:
IOException
-
composeAccountCoverageComponentInner
protected void composeAccountCoverageComponentInner(Account.CoverageComponent element) throws IOException
- Throws:
IOException
-
composeAccountGuarantorComponent
protected void composeAccountGuarantorComponent(String name, Account.GuarantorComponent element) throws IOException
- Throws:
IOException
-
composeAccountGuarantorComponentInner
protected void composeAccountGuarantorComponentInner(Account.GuarantorComponent element) throws IOException
- Throws:
IOException
-
composeActivityDefinition
protected void composeActivityDefinition(String name, ActivityDefinition element) throws IOException
- Throws:
IOException
-
composeActivityDefinitionInner
protected void composeActivityDefinitionInner(ActivityDefinition element) throws IOException
- Throws:
IOException
-
composeActivityDefinitionActivityDefinitionParticipantComponent
protected void composeActivityDefinitionActivityDefinitionParticipantComponent(String name, ActivityDefinition.ActivityDefinitionParticipantComponent element) throws IOException
- Throws:
IOException
-
composeActivityDefinitionActivityDefinitionParticipantComponentInner
protected void composeActivityDefinitionActivityDefinitionParticipantComponentInner(ActivityDefinition.ActivityDefinitionParticipantComponent element) throws IOException
- Throws:
IOException
-
composeActivityDefinitionActivityDefinitionDynamicValueComponent
protected void composeActivityDefinitionActivityDefinitionDynamicValueComponent(String name, ActivityDefinition.ActivityDefinitionDynamicValueComponent element) throws IOException
- Throws:
IOException
-
composeActivityDefinitionActivityDefinitionDynamicValueComponentInner
protected void composeActivityDefinitionActivityDefinitionDynamicValueComponentInner(ActivityDefinition.ActivityDefinitionDynamicValueComponent element) throws IOException
- Throws:
IOException
-
composeAdverseEvent
protected void composeAdverseEvent(String name, AdverseEvent element) throws IOException
- Throws:
IOException
-
composeAdverseEventInner
protected void composeAdverseEventInner(AdverseEvent element) throws IOException
- Throws:
IOException
-
composeAdverseEventAdverseEventSuspectEntityComponent
protected void composeAdverseEventAdverseEventSuspectEntityComponent(String name, AdverseEvent.AdverseEventSuspectEntityComponent element) throws IOException
- Throws:
IOException
-
composeAdverseEventAdverseEventSuspectEntityComponentInner
protected void composeAdverseEventAdverseEventSuspectEntityComponentInner(AdverseEvent.AdverseEventSuspectEntityComponent element) throws IOException
- Throws:
IOException
-
composeAdverseEventAdverseEventSuspectEntityCausalityComponent
protected void composeAdverseEventAdverseEventSuspectEntityCausalityComponent(String name, AdverseEvent.AdverseEventSuspectEntityCausalityComponent element) throws IOException
- Throws:
IOException
-
composeAdverseEventAdverseEventSuspectEntityCausalityComponentInner
protected void composeAdverseEventAdverseEventSuspectEntityCausalityComponentInner(AdverseEvent.AdverseEventSuspectEntityCausalityComponent element) throws IOException
- Throws:
IOException
-
composeAllergyIntolerance
protected void composeAllergyIntolerance(String name, AllergyIntolerance element) throws IOException
- Throws:
IOException
-
composeAllergyIntoleranceInner
protected void composeAllergyIntoleranceInner(AllergyIntolerance element) throws IOException
- Throws:
IOException
-
composeAllergyIntoleranceAllergyIntoleranceReactionComponent
protected void composeAllergyIntoleranceAllergyIntoleranceReactionComponent(String name, AllergyIntolerance.AllergyIntoleranceReactionComponent element) throws IOException
- Throws:
IOException
-
composeAllergyIntoleranceAllergyIntoleranceReactionComponentInner
protected void composeAllergyIntoleranceAllergyIntoleranceReactionComponentInner(AllergyIntolerance.AllergyIntoleranceReactionComponent element) throws IOException
- Throws:
IOException
-
composeAppointment
protected void composeAppointment(String name, Appointment element) throws IOException
- Throws:
IOException
-
composeAppointmentInner
protected void composeAppointmentInner(Appointment element) throws IOException
- Throws:
IOException
-
composeAppointmentAppointmentParticipantComponent
protected void composeAppointmentAppointmentParticipantComponent(String name, Appointment.AppointmentParticipantComponent element) throws IOException
- Throws:
IOException
-
composeAppointmentAppointmentParticipantComponentInner
protected void composeAppointmentAppointmentParticipantComponentInner(Appointment.AppointmentParticipantComponent element) throws IOException
- Throws:
IOException
-
composeAppointmentResponse
protected void composeAppointmentResponse(String name, AppointmentResponse element) throws IOException
- Throws:
IOException
-
composeAppointmentResponseInner
protected void composeAppointmentResponseInner(AppointmentResponse element) throws IOException
- Throws:
IOException
-
composeAuditEvent
protected void composeAuditEvent(String name, AuditEvent element) throws IOException
- Throws:
IOException
-
composeAuditEventInner
protected void composeAuditEventInner(AuditEvent element) throws IOException
- Throws:
IOException
-
composeAuditEventAuditEventAgentComponent
protected void composeAuditEventAuditEventAgentComponent(String name, AuditEvent.AuditEventAgentComponent element) throws IOException
- Throws:
IOException
-
composeAuditEventAuditEventAgentComponentInner
protected void composeAuditEventAuditEventAgentComponentInner(AuditEvent.AuditEventAgentComponent element) throws IOException
- Throws:
IOException
-
composeAuditEventAuditEventAgentNetworkComponent
protected void composeAuditEventAuditEventAgentNetworkComponent(String name, AuditEvent.AuditEventAgentNetworkComponent element) throws IOException
- Throws:
IOException
-
composeAuditEventAuditEventAgentNetworkComponentInner
protected void composeAuditEventAuditEventAgentNetworkComponentInner(AuditEvent.AuditEventAgentNetworkComponent element) throws IOException
- Throws:
IOException
-
composeAuditEventAuditEventSourceComponent
protected void composeAuditEventAuditEventSourceComponent(String name, AuditEvent.AuditEventSourceComponent element) throws IOException
- Throws:
IOException
-
composeAuditEventAuditEventSourceComponentInner
protected void composeAuditEventAuditEventSourceComponentInner(AuditEvent.AuditEventSourceComponent element) throws IOException
- Throws:
IOException
-
composeAuditEventAuditEventEntityComponent
protected void composeAuditEventAuditEventEntityComponent(String name, AuditEvent.AuditEventEntityComponent element) throws IOException
- Throws:
IOException
-
composeAuditEventAuditEventEntityComponentInner
protected void composeAuditEventAuditEventEntityComponentInner(AuditEvent.AuditEventEntityComponent element) throws IOException
- Throws:
IOException
-
composeAuditEventAuditEventEntityDetailComponent
protected void composeAuditEventAuditEventEntityDetailComponent(String name, AuditEvent.AuditEventEntityDetailComponent element) throws IOException
- Throws:
IOException
-
composeAuditEventAuditEventEntityDetailComponentInner
protected void composeAuditEventAuditEventEntityDetailComponentInner(AuditEvent.AuditEventEntityDetailComponent element) throws IOException
- Throws:
IOException
-
composeBasic
protected void composeBasic(String name, Basic element) throws IOException
- Throws:
IOException
-
composeBasicInner
protected void composeBasicInner(Basic element) throws IOException
- Throws:
IOException
-
composeBinary
protected void composeBinary(String name, Binary element) throws IOException
- Throws:
IOException
-
composeBinaryInner
protected void composeBinaryInner(Binary element) throws IOException
- Throws:
IOException
-
composeBiologicallyDerivedProduct
protected void composeBiologicallyDerivedProduct(String name, BiologicallyDerivedProduct element) throws IOException
- Throws:
IOException
-
composeBiologicallyDerivedProductInner
protected void composeBiologicallyDerivedProductInner(BiologicallyDerivedProduct element) throws IOException
- Throws:
IOException
-
composeBiologicallyDerivedProductBiologicallyDerivedProductCollectionComponent
protected void composeBiologicallyDerivedProductBiologicallyDerivedProductCollectionComponent(String name, BiologicallyDerivedProduct.BiologicallyDerivedProductCollectionComponent element) throws IOException
- Throws:
IOException
-
composeBiologicallyDerivedProductBiologicallyDerivedProductCollectionComponentInner
protected void composeBiologicallyDerivedProductBiologicallyDerivedProductCollectionComponentInner(BiologicallyDerivedProduct.BiologicallyDerivedProductCollectionComponent element) throws IOException
- Throws:
IOException
-
composeBiologicallyDerivedProductBiologicallyDerivedProductProcessingComponent
protected void composeBiologicallyDerivedProductBiologicallyDerivedProductProcessingComponent(String name, BiologicallyDerivedProduct.BiologicallyDerivedProductProcessingComponent element) throws IOException
- Throws:
IOException
-
composeBiologicallyDerivedProductBiologicallyDerivedProductProcessingComponentInner
protected void composeBiologicallyDerivedProductBiologicallyDerivedProductProcessingComponentInner(BiologicallyDerivedProduct.BiologicallyDerivedProductProcessingComponent element) throws IOException
- Throws:
IOException
-
composeBiologicallyDerivedProductBiologicallyDerivedProductManipulationComponent
protected void composeBiologicallyDerivedProductBiologicallyDerivedProductManipulationComponent(String name, BiologicallyDerivedProduct.BiologicallyDerivedProductManipulationComponent element) throws IOException
- Throws:
IOException
-
composeBiologicallyDerivedProductBiologicallyDerivedProductManipulationComponentInner
protected void composeBiologicallyDerivedProductBiologicallyDerivedProductManipulationComponentInner(BiologicallyDerivedProduct.BiologicallyDerivedProductManipulationComponent element) throws IOException
- Throws:
IOException
-
composeBiologicallyDerivedProductBiologicallyDerivedProductStorageComponent
protected void composeBiologicallyDerivedProductBiologicallyDerivedProductStorageComponent(String name, BiologicallyDerivedProduct.BiologicallyDerivedProductStorageComponent element) throws IOException
- Throws:
IOException
-
composeBiologicallyDerivedProductBiologicallyDerivedProductStorageComponentInner
protected void composeBiologicallyDerivedProductBiologicallyDerivedProductStorageComponentInner(BiologicallyDerivedProduct.BiologicallyDerivedProductStorageComponent element) throws IOException
- Throws:
IOException
-
composeBodyStructure
protected void composeBodyStructure(String name, BodyStructure element) throws IOException
- Throws:
IOException
-
composeBodyStructureInner
protected void composeBodyStructureInner(BodyStructure element) throws IOException
- Throws:
IOException
-
composeBundle
protected void composeBundle(String name, Bundle element) throws IOException
- Throws:
IOException
-
composeBundleInner
protected void composeBundleInner(Bundle element) throws IOException
- Throws:
IOException
-
composeBundleBundleLinkComponent
protected void composeBundleBundleLinkComponent(String name, Bundle.BundleLinkComponent element) throws IOException
- Throws:
IOException
-
composeBundleBundleLinkComponentInner
protected void composeBundleBundleLinkComponentInner(Bundle.BundleLinkComponent element) throws IOException
- Throws:
IOException
-
composeBundleBundleEntryComponent
protected void composeBundleBundleEntryComponent(String name, Bundle.BundleEntryComponent element) throws IOException
- Throws:
IOException
-
composeBundleBundleEntryComponentInner
protected void composeBundleBundleEntryComponentInner(Bundle.BundleEntryComponent element) throws IOException
- Throws:
IOException
-
composeBundleBundleEntrySearchComponent
protected void composeBundleBundleEntrySearchComponent(String name, Bundle.BundleEntrySearchComponent element) throws IOException
- Throws:
IOException
-
composeBundleBundleEntrySearchComponentInner
protected void composeBundleBundleEntrySearchComponentInner(Bundle.BundleEntrySearchComponent element) throws IOException
- Throws:
IOException
-
composeBundleBundleEntryRequestComponent
protected void composeBundleBundleEntryRequestComponent(String name, Bundle.BundleEntryRequestComponent element) throws IOException
- Throws:
IOException
-
composeBundleBundleEntryRequestComponentInner
protected void composeBundleBundleEntryRequestComponentInner(Bundle.BundleEntryRequestComponent element) throws IOException
- Throws:
IOException
-
composeBundleBundleEntryResponseComponent
protected void composeBundleBundleEntryResponseComponent(String name, Bundle.BundleEntryResponseComponent element) throws IOException
- Throws:
IOException
-
composeBundleBundleEntryResponseComponentInner
protected void composeBundleBundleEntryResponseComponentInner(Bundle.BundleEntryResponseComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatement
protected void composeCapabilityStatement(String name, CapabilityStatement element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementInner
protected void composeCapabilityStatementInner(CapabilityStatement element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementCapabilityStatementSoftwareComponent
protected void composeCapabilityStatementCapabilityStatementSoftwareComponent(String name, CapabilityStatement.CapabilityStatementSoftwareComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementCapabilityStatementSoftwareComponentInner
protected void composeCapabilityStatementCapabilityStatementSoftwareComponentInner(CapabilityStatement.CapabilityStatementSoftwareComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementCapabilityStatementImplementationComponent
protected void composeCapabilityStatementCapabilityStatementImplementationComponent(String name, CapabilityStatement.CapabilityStatementImplementationComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementCapabilityStatementImplementationComponentInner
protected void composeCapabilityStatementCapabilityStatementImplementationComponentInner(CapabilityStatement.CapabilityStatementImplementationComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementCapabilityStatementRestComponent
protected void composeCapabilityStatementCapabilityStatementRestComponent(String name, CapabilityStatement.CapabilityStatementRestComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementCapabilityStatementRestComponentInner
protected void composeCapabilityStatementCapabilityStatementRestComponentInner(CapabilityStatement.CapabilityStatementRestComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementCapabilityStatementRestSecurityComponent
protected void composeCapabilityStatementCapabilityStatementRestSecurityComponent(String name, CapabilityStatement.CapabilityStatementRestSecurityComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementCapabilityStatementRestSecurityComponentInner
protected void composeCapabilityStatementCapabilityStatementRestSecurityComponentInner(CapabilityStatement.CapabilityStatementRestSecurityComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementCapabilityStatementRestResourceComponent
protected void composeCapabilityStatementCapabilityStatementRestResourceComponent(String name, CapabilityStatement.CapabilityStatementRestResourceComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementCapabilityStatementRestResourceComponentInner
protected void composeCapabilityStatementCapabilityStatementRestResourceComponentInner(CapabilityStatement.CapabilityStatementRestResourceComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementResourceInteractionComponent
protected void composeCapabilityStatementResourceInteractionComponent(String name, CapabilityStatement.ResourceInteractionComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementResourceInteractionComponentInner
protected void composeCapabilityStatementResourceInteractionComponentInner(CapabilityStatement.ResourceInteractionComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementCapabilityStatementRestResourceSearchParamComponent
protected void composeCapabilityStatementCapabilityStatementRestResourceSearchParamComponent(String name, CapabilityStatement.CapabilityStatementRestResourceSearchParamComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementCapabilityStatementRestResourceSearchParamComponentInner
protected void composeCapabilityStatementCapabilityStatementRestResourceSearchParamComponentInner(CapabilityStatement.CapabilityStatementRestResourceSearchParamComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementCapabilityStatementRestResourceOperationComponent
protected void composeCapabilityStatementCapabilityStatementRestResourceOperationComponent(String name, CapabilityStatement.CapabilityStatementRestResourceOperationComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementCapabilityStatementRestResourceOperationComponentInner
protected void composeCapabilityStatementCapabilityStatementRestResourceOperationComponentInner(CapabilityStatement.CapabilityStatementRestResourceOperationComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementSystemInteractionComponent
protected void composeCapabilityStatementSystemInteractionComponent(String name, CapabilityStatement.SystemInteractionComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementSystemInteractionComponentInner
protected void composeCapabilityStatementSystemInteractionComponentInner(CapabilityStatement.SystemInteractionComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementCapabilityStatementMessagingComponent
protected void composeCapabilityStatementCapabilityStatementMessagingComponent(String name, CapabilityStatement.CapabilityStatementMessagingComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementCapabilityStatementMessagingComponentInner
protected void composeCapabilityStatementCapabilityStatementMessagingComponentInner(CapabilityStatement.CapabilityStatementMessagingComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementCapabilityStatementMessagingEndpointComponent
protected void composeCapabilityStatementCapabilityStatementMessagingEndpointComponent(String name, CapabilityStatement.CapabilityStatementMessagingEndpointComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementCapabilityStatementMessagingEndpointComponentInner
protected void composeCapabilityStatementCapabilityStatementMessagingEndpointComponentInner(CapabilityStatement.CapabilityStatementMessagingEndpointComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementCapabilityStatementMessagingSupportedMessageComponent
protected void composeCapabilityStatementCapabilityStatementMessagingSupportedMessageComponent(String name, CapabilityStatement.CapabilityStatementMessagingSupportedMessageComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementCapabilityStatementMessagingSupportedMessageComponentInner
protected void composeCapabilityStatementCapabilityStatementMessagingSupportedMessageComponentInner(CapabilityStatement.CapabilityStatementMessagingSupportedMessageComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementCapabilityStatementDocumentComponent
protected void composeCapabilityStatementCapabilityStatementDocumentComponent(String name, CapabilityStatement.CapabilityStatementDocumentComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementCapabilityStatementDocumentComponentInner
protected void composeCapabilityStatementCapabilityStatementDocumentComponentInner(CapabilityStatement.CapabilityStatementDocumentComponent element) throws IOException
- Throws:
IOException
-
composeCarePlan
protected void composeCarePlan(String name, CarePlan element) throws IOException
- Throws:
IOException
-
composeCarePlanInner
protected void composeCarePlanInner(CarePlan element) throws IOException
- Throws:
IOException
-
composeCarePlanCarePlanActivityComponent
protected void composeCarePlanCarePlanActivityComponent(String name, CarePlan.CarePlanActivityComponent element) throws IOException
- Throws:
IOException
-
composeCarePlanCarePlanActivityComponentInner
protected void composeCarePlanCarePlanActivityComponentInner(CarePlan.CarePlanActivityComponent element) throws IOException
- Throws:
IOException
-
composeCarePlanCarePlanActivityDetailComponent
protected void composeCarePlanCarePlanActivityDetailComponent(String name, CarePlan.CarePlanActivityDetailComponent element) throws IOException
- Throws:
IOException
-
composeCarePlanCarePlanActivityDetailComponentInner
protected void composeCarePlanCarePlanActivityDetailComponentInner(CarePlan.CarePlanActivityDetailComponent element) throws IOException
- Throws:
IOException
-
composeCareTeam
protected void composeCareTeam(String name, CareTeam element) throws IOException
- Throws:
IOException
-
composeCareTeamInner
protected void composeCareTeamInner(CareTeam element) throws IOException
- Throws:
IOException
-
composeCareTeamCareTeamParticipantComponent
protected void composeCareTeamCareTeamParticipantComponent(String name, CareTeam.CareTeamParticipantComponent element) throws IOException
- Throws:
IOException
-
composeCareTeamCareTeamParticipantComponentInner
protected void composeCareTeamCareTeamParticipantComponentInner(CareTeam.CareTeamParticipantComponent element) throws IOException
- Throws:
IOException
-
composeCatalogEntry
protected void composeCatalogEntry(String name, CatalogEntry element) throws IOException
- Throws:
IOException
-
composeCatalogEntryInner
protected void composeCatalogEntryInner(CatalogEntry element) throws IOException
- Throws:
IOException
-
composeCatalogEntryCatalogEntryRelatedEntryComponent
protected void composeCatalogEntryCatalogEntryRelatedEntryComponent(String name, CatalogEntry.CatalogEntryRelatedEntryComponent element) throws IOException
- Throws:
IOException
-
composeCatalogEntryCatalogEntryRelatedEntryComponentInner
protected void composeCatalogEntryCatalogEntryRelatedEntryComponentInner(CatalogEntry.CatalogEntryRelatedEntryComponent element) throws IOException
- Throws:
IOException
-
composeChargeItem
protected void composeChargeItem(String name, ChargeItem element) throws IOException
- Throws:
IOException
-
composeChargeItemInner
protected void composeChargeItemInner(ChargeItem element) throws IOException
- Throws:
IOException
-
composeChargeItemChargeItemPerformerComponent
protected void composeChargeItemChargeItemPerformerComponent(String name, ChargeItem.ChargeItemPerformerComponent element) throws IOException
- Throws:
IOException
-
composeChargeItemChargeItemPerformerComponentInner
protected void composeChargeItemChargeItemPerformerComponentInner(ChargeItem.ChargeItemPerformerComponent element) throws IOException
- Throws:
IOException
-
composeChargeItemDefinition
protected void composeChargeItemDefinition(String name, ChargeItemDefinition element) throws IOException
- Throws:
IOException
-
composeChargeItemDefinitionInner
protected void composeChargeItemDefinitionInner(ChargeItemDefinition element) throws IOException
- Throws:
IOException
-
composeChargeItemDefinitionChargeItemDefinitionApplicabilityComponent
protected void composeChargeItemDefinitionChargeItemDefinitionApplicabilityComponent(String name, ChargeItemDefinition.ChargeItemDefinitionApplicabilityComponent element) throws IOException
- Throws:
IOException
-
composeChargeItemDefinitionChargeItemDefinitionApplicabilityComponentInner
protected void composeChargeItemDefinitionChargeItemDefinitionApplicabilityComponentInner(ChargeItemDefinition.ChargeItemDefinitionApplicabilityComponent element) throws IOException
- Throws:
IOException
-
composeChargeItemDefinitionChargeItemDefinitionPropertyGroupComponent
protected void composeChargeItemDefinitionChargeItemDefinitionPropertyGroupComponent(String name, ChargeItemDefinition.ChargeItemDefinitionPropertyGroupComponent element) throws IOException
- Throws:
IOException
-
composeChargeItemDefinitionChargeItemDefinitionPropertyGroupComponentInner
protected void composeChargeItemDefinitionChargeItemDefinitionPropertyGroupComponentInner(ChargeItemDefinition.ChargeItemDefinitionPropertyGroupComponent element) throws IOException
- Throws:
IOException
-
composeChargeItemDefinitionChargeItemDefinitionPropertyGroupPriceComponentComponent
protected void composeChargeItemDefinitionChargeItemDefinitionPropertyGroupPriceComponentComponent(String name, ChargeItemDefinition.ChargeItemDefinitionPropertyGroupPriceComponentComponent element) throws IOException
- Throws:
IOException
-
composeChargeItemDefinitionChargeItemDefinitionPropertyGroupPriceComponentComponentInner
protected void composeChargeItemDefinitionChargeItemDefinitionPropertyGroupPriceComponentComponentInner(ChargeItemDefinition.ChargeItemDefinitionPropertyGroupPriceComponentComponent element) throws IOException
- Throws:
IOException
-
composeClaim
protected void composeClaim(String name, Claim element) throws IOException
- Throws:
IOException
-
composeClaimInner
protected void composeClaimInner(Claim element) throws IOException
- Throws:
IOException
-
composeClaimRelatedClaimComponent
protected void composeClaimRelatedClaimComponent(String name, Claim.RelatedClaimComponent element) throws IOException
- Throws:
IOException
-
composeClaimRelatedClaimComponentInner
protected void composeClaimRelatedClaimComponentInner(Claim.RelatedClaimComponent element) throws IOException
- Throws:
IOException
-
composeClaimPayeeComponent
protected void composeClaimPayeeComponent(String name, Claim.PayeeComponent element) throws IOException
- Throws:
IOException
-
composeClaimPayeeComponentInner
protected void composeClaimPayeeComponentInner(Claim.PayeeComponent element) throws IOException
- Throws:
IOException
-
composeClaimCareTeamComponent
protected void composeClaimCareTeamComponent(String name, Claim.CareTeamComponent element) throws IOException
- Throws:
IOException
-
composeClaimCareTeamComponentInner
protected void composeClaimCareTeamComponentInner(Claim.CareTeamComponent element) throws IOException
- Throws:
IOException
-
composeClaimSupportingInformationComponent
protected void composeClaimSupportingInformationComponent(String name, Claim.SupportingInformationComponent element) throws IOException
- Throws:
IOException
-
composeClaimSupportingInformationComponentInner
protected void composeClaimSupportingInformationComponentInner(Claim.SupportingInformationComponent element) throws IOException
- Throws:
IOException
-
composeClaimDiagnosisComponent
protected void composeClaimDiagnosisComponent(String name, Claim.DiagnosisComponent element) throws IOException
- Throws:
IOException
-
composeClaimDiagnosisComponentInner
protected void composeClaimDiagnosisComponentInner(Claim.DiagnosisComponent element) throws IOException
- Throws:
IOException
-
composeClaimProcedureComponent
protected void composeClaimProcedureComponent(String name, Claim.ProcedureComponent element) throws IOException
- Throws:
IOException
-
composeClaimProcedureComponentInner
protected void composeClaimProcedureComponentInner(Claim.ProcedureComponent element) throws IOException
- Throws:
IOException
-
composeClaimInsuranceComponent
protected void composeClaimInsuranceComponent(String name, Claim.InsuranceComponent element) throws IOException
- Throws:
IOException
-
composeClaimInsuranceComponentInner
protected void composeClaimInsuranceComponentInner(Claim.InsuranceComponent element) throws IOException
- Throws:
IOException
-
composeClaimAccidentComponent
protected void composeClaimAccidentComponent(String name, Claim.AccidentComponent element) throws IOException
- Throws:
IOException
-
composeClaimAccidentComponentInner
protected void composeClaimAccidentComponentInner(Claim.AccidentComponent element) throws IOException
- Throws:
IOException
-
composeClaimItemComponent
protected void composeClaimItemComponent(String name, Claim.ItemComponent element) throws IOException
- Throws:
IOException
-
composeClaimItemComponentInner
protected void composeClaimItemComponentInner(Claim.ItemComponent element) throws IOException
- Throws:
IOException
-
composeClaimDetailComponent
protected void composeClaimDetailComponent(String name, Claim.DetailComponent element) throws IOException
- Throws:
IOException
-
composeClaimDetailComponentInner
protected void composeClaimDetailComponentInner(Claim.DetailComponent element) throws IOException
- Throws:
IOException
-
composeClaimSubDetailComponent
protected void composeClaimSubDetailComponent(String name, Claim.SubDetailComponent element) throws IOException
- Throws:
IOException
-
composeClaimSubDetailComponentInner
protected void composeClaimSubDetailComponentInner(Claim.SubDetailComponent element) throws IOException
- Throws:
IOException
-
composeClaimResponse
protected void composeClaimResponse(String name, ClaimResponse element) throws IOException
- Throws:
IOException
-
composeClaimResponseInner
protected void composeClaimResponseInner(ClaimResponse element) throws IOException
- Throws:
IOException
-
composeClaimResponseItemComponent
protected void composeClaimResponseItemComponent(String name, ClaimResponse.ItemComponent element) throws IOException
- Throws:
IOException
-
composeClaimResponseItemComponentInner
protected void composeClaimResponseItemComponentInner(ClaimResponse.ItemComponent element) throws IOException
- Throws:
IOException
-
composeClaimResponseAdjudicationComponent
protected void composeClaimResponseAdjudicationComponent(String name, ClaimResponse.AdjudicationComponent element) throws IOException
- Throws:
IOException
-
composeClaimResponseAdjudicationComponentInner
protected void composeClaimResponseAdjudicationComponentInner(ClaimResponse.AdjudicationComponent element) throws IOException
- Throws:
IOException
-
composeClaimResponseItemDetailComponent
protected void composeClaimResponseItemDetailComponent(String name, ClaimResponse.ItemDetailComponent element) throws IOException
- Throws:
IOException
-
composeClaimResponseItemDetailComponentInner
protected void composeClaimResponseItemDetailComponentInner(ClaimResponse.ItemDetailComponent element) throws IOException
- Throws:
IOException
-
composeClaimResponseSubDetailComponent
protected void composeClaimResponseSubDetailComponent(String name, ClaimResponse.SubDetailComponent element) throws IOException
- Throws:
IOException
-
composeClaimResponseSubDetailComponentInner
protected void composeClaimResponseSubDetailComponentInner(ClaimResponse.SubDetailComponent element) throws IOException
- Throws:
IOException
-
composeClaimResponseAddedItemComponent
protected void composeClaimResponseAddedItemComponent(String name, ClaimResponse.AddedItemComponent element) throws IOException
- Throws:
IOException
-
composeClaimResponseAddedItemComponentInner
protected void composeClaimResponseAddedItemComponentInner(ClaimResponse.AddedItemComponent element) throws IOException
- Throws:
IOException
-
composeClaimResponseAddedItemDetailComponent
protected void composeClaimResponseAddedItemDetailComponent(String name, ClaimResponse.AddedItemDetailComponent element) throws IOException
- Throws:
IOException
-
composeClaimResponseAddedItemDetailComponentInner
protected void composeClaimResponseAddedItemDetailComponentInner(ClaimResponse.AddedItemDetailComponent element) throws IOException
- Throws:
IOException
-
composeClaimResponseAddedItemSubDetailComponent
protected void composeClaimResponseAddedItemSubDetailComponent(String name, ClaimResponse.AddedItemSubDetailComponent element) throws IOException
- Throws:
IOException
-
composeClaimResponseAddedItemSubDetailComponentInner
protected void composeClaimResponseAddedItemSubDetailComponentInner(ClaimResponse.AddedItemSubDetailComponent element) throws IOException
- Throws:
IOException
-
composeClaimResponseTotalComponent
protected void composeClaimResponseTotalComponent(String name, ClaimResponse.TotalComponent element) throws IOException
- Throws:
IOException
-
composeClaimResponseTotalComponentInner
protected void composeClaimResponseTotalComponentInner(ClaimResponse.TotalComponent element) throws IOException
- Throws:
IOException
-
composeClaimResponsePaymentComponent
protected void composeClaimResponsePaymentComponent(String name, ClaimResponse.PaymentComponent element) throws IOException
- Throws:
IOException
-
composeClaimResponsePaymentComponentInner
protected void composeClaimResponsePaymentComponentInner(ClaimResponse.PaymentComponent element) throws IOException
- Throws:
IOException
-
composeClaimResponseNoteComponent
protected void composeClaimResponseNoteComponent(String name, ClaimResponse.NoteComponent element) throws IOException
- Throws:
IOException
-
composeClaimResponseNoteComponentInner
protected void composeClaimResponseNoteComponentInner(ClaimResponse.NoteComponent element) throws IOException
- Throws:
IOException
-
composeClaimResponseInsuranceComponent
protected void composeClaimResponseInsuranceComponent(String name, ClaimResponse.InsuranceComponent element) throws IOException
- Throws:
IOException
-
composeClaimResponseInsuranceComponentInner
protected void composeClaimResponseInsuranceComponentInner(ClaimResponse.InsuranceComponent element) throws IOException
- Throws:
IOException
-
composeClaimResponseErrorComponent
protected void composeClaimResponseErrorComponent(String name, ClaimResponse.ErrorComponent element) throws IOException
- Throws:
IOException
-
composeClaimResponseErrorComponentInner
protected void composeClaimResponseErrorComponentInner(ClaimResponse.ErrorComponent element) throws IOException
- Throws:
IOException
-
composeClinicalImpression
protected void composeClinicalImpression(String name, ClinicalImpression element) throws IOException
- Throws:
IOException
-
composeClinicalImpressionInner
protected void composeClinicalImpressionInner(ClinicalImpression element) throws IOException
- Throws:
IOException
-
composeClinicalImpressionClinicalImpressionInvestigationComponent
protected void composeClinicalImpressionClinicalImpressionInvestigationComponent(String name, ClinicalImpression.ClinicalImpressionInvestigationComponent element) throws IOException
- Throws:
IOException
-
composeClinicalImpressionClinicalImpressionInvestigationComponentInner
protected void composeClinicalImpressionClinicalImpressionInvestigationComponentInner(ClinicalImpression.ClinicalImpressionInvestigationComponent element) throws IOException
- Throws:
IOException
-
composeClinicalImpressionClinicalImpressionFindingComponent
protected void composeClinicalImpressionClinicalImpressionFindingComponent(String name, ClinicalImpression.ClinicalImpressionFindingComponent element) throws IOException
- Throws:
IOException
-
composeClinicalImpressionClinicalImpressionFindingComponentInner
protected void composeClinicalImpressionClinicalImpressionFindingComponentInner(ClinicalImpression.ClinicalImpressionFindingComponent element) throws IOException
- Throws:
IOException
-
composeCodeSystem
protected void composeCodeSystem(String name, CodeSystem element) throws IOException
- Throws:
IOException
-
composeCodeSystemInner
protected void composeCodeSystemInner(CodeSystem element) throws IOException
- Throws:
IOException
-
composeCodeSystemCodeSystemFilterComponent
protected void composeCodeSystemCodeSystemFilterComponent(String name, CodeSystem.CodeSystemFilterComponent element) throws IOException
- Throws:
IOException
-
composeCodeSystemCodeSystemFilterComponentInner
protected void composeCodeSystemCodeSystemFilterComponentInner(CodeSystem.CodeSystemFilterComponent element) throws IOException
- Throws:
IOException
-
composeCodeSystemPropertyComponent
protected void composeCodeSystemPropertyComponent(String name, CodeSystem.PropertyComponent element) throws IOException
- Throws:
IOException
-
composeCodeSystemPropertyComponentInner
protected void composeCodeSystemPropertyComponentInner(CodeSystem.PropertyComponent element) throws IOException
- Throws:
IOException
-
composeCodeSystemConceptDefinitionComponent
protected void composeCodeSystemConceptDefinitionComponent(String name, CodeSystem.ConceptDefinitionComponent element) throws IOException
- Throws:
IOException
-
composeCodeSystemConceptDefinitionComponentInner
protected void composeCodeSystemConceptDefinitionComponentInner(CodeSystem.ConceptDefinitionComponent element) throws IOException
- Throws:
IOException
-
composeCodeSystemConceptDefinitionDesignationComponent
protected void composeCodeSystemConceptDefinitionDesignationComponent(String name, CodeSystem.ConceptDefinitionDesignationComponent element) throws IOException
- Throws:
IOException
-
composeCodeSystemConceptDefinitionDesignationComponentInner
protected void composeCodeSystemConceptDefinitionDesignationComponentInner(CodeSystem.ConceptDefinitionDesignationComponent element) throws IOException
- Throws:
IOException
-
composeCodeSystemConceptPropertyComponent
protected void composeCodeSystemConceptPropertyComponent(String name, CodeSystem.ConceptPropertyComponent element) throws IOException
- Throws:
IOException
-
composeCodeSystemConceptPropertyComponentInner
protected void composeCodeSystemConceptPropertyComponentInner(CodeSystem.ConceptPropertyComponent element) throws IOException
- Throws:
IOException
-
composeCommunication
protected void composeCommunication(String name, Communication element) throws IOException
- Throws:
IOException
-
composeCommunicationInner
protected void composeCommunicationInner(Communication element) throws IOException
- Throws:
IOException
-
composeCommunicationCommunicationPayloadComponent
protected void composeCommunicationCommunicationPayloadComponent(String name, Communication.CommunicationPayloadComponent element) throws IOException
- Throws:
IOException
-
composeCommunicationCommunicationPayloadComponentInner
protected void composeCommunicationCommunicationPayloadComponentInner(Communication.CommunicationPayloadComponent element) throws IOException
- Throws:
IOException
-
composeCommunicationRequest
protected void composeCommunicationRequest(String name, CommunicationRequest element) throws IOException
- Throws:
IOException
-
composeCommunicationRequestInner
protected void composeCommunicationRequestInner(CommunicationRequest element) throws IOException
- Throws:
IOException
-
composeCommunicationRequestCommunicationRequestPayloadComponent
protected void composeCommunicationRequestCommunicationRequestPayloadComponent(String name, CommunicationRequest.CommunicationRequestPayloadComponent element) throws IOException
- Throws:
IOException
-
composeCommunicationRequestCommunicationRequestPayloadComponentInner
protected void composeCommunicationRequestCommunicationRequestPayloadComponentInner(CommunicationRequest.CommunicationRequestPayloadComponent element) throws IOException
- Throws:
IOException
-
composeCompartmentDefinition
protected void composeCompartmentDefinition(String name, CompartmentDefinition element) throws IOException
- Throws:
IOException
-
composeCompartmentDefinitionInner
protected void composeCompartmentDefinitionInner(CompartmentDefinition element) throws IOException
- Throws:
IOException
-
composeCompartmentDefinitionCompartmentDefinitionResourceComponent
protected void composeCompartmentDefinitionCompartmentDefinitionResourceComponent(String name, CompartmentDefinition.CompartmentDefinitionResourceComponent element) throws IOException
- Throws:
IOException
-
composeCompartmentDefinitionCompartmentDefinitionResourceComponentInner
protected void composeCompartmentDefinitionCompartmentDefinitionResourceComponentInner(CompartmentDefinition.CompartmentDefinitionResourceComponent element) throws IOException
- Throws:
IOException
-
composeComposition
protected void composeComposition(String name, Composition element) throws IOException
- Throws:
IOException
-
composeCompositionInner
protected void composeCompositionInner(Composition element) throws IOException
- Throws:
IOException
-
composeCompositionCompositionAttesterComponent
protected void composeCompositionCompositionAttesterComponent(String name, Composition.CompositionAttesterComponent element) throws IOException
- Throws:
IOException
-
composeCompositionCompositionAttesterComponentInner
protected void composeCompositionCompositionAttesterComponentInner(Composition.CompositionAttesterComponent element) throws IOException
- Throws:
IOException
-
composeCompositionCompositionRelatesToComponent
protected void composeCompositionCompositionRelatesToComponent(String name, Composition.CompositionRelatesToComponent element) throws IOException
- Throws:
IOException
-
composeCompositionCompositionRelatesToComponentInner
protected void composeCompositionCompositionRelatesToComponentInner(Composition.CompositionRelatesToComponent element) throws IOException
- Throws:
IOException
-
composeCompositionCompositionEventComponent
protected void composeCompositionCompositionEventComponent(String name, Composition.CompositionEventComponent element) throws IOException
- Throws:
IOException
-
composeCompositionCompositionEventComponentInner
protected void composeCompositionCompositionEventComponentInner(Composition.CompositionEventComponent element) throws IOException
- Throws:
IOException
-
composeCompositionSectionComponent
protected void composeCompositionSectionComponent(String name, Composition.SectionComponent element) throws IOException
- Throws:
IOException
-
composeCompositionSectionComponentInner
protected void composeCompositionSectionComponentInner(Composition.SectionComponent element) throws IOException
- Throws:
IOException
-
composeConceptMap
protected void composeConceptMap(String name, ConceptMap element) throws IOException
- Throws:
IOException
-
composeConceptMapInner
protected void composeConceptMapInner(ConceptMap element) throws IOException
- Throws:
IOException
-
composeConceptMapConceptMapGroupComponent
protected void composeConceptMapConceptMapGroupComponent(String name, ConceptMap.ConceptMapGroupComponent element) throws IOException
- Throws:
IOException
-
composeConceptMapConceptMapGroupComponentInner
protected void composeConceptMapConceptMapGroupComponentInner(ConceptMap.ConceptMapGroupComponent element) throws IOException
- Throws:
IOException
-
composeConceptMapSourceElementComponent
protected void composeConceptMapSourceElementComponent(String name, ConceptMap.SourceElementComponent element) throws IOException
- Throws:
IOException
-
composeConceptMapSourceElementComponentInner
protected void composeConceptMapSourceElementComponentInner(ConceptMap.SourceElementComponent element) throws IOException
- Throws:
IOException
-
composeConceptMapTargetElementComponent
protected void composeConceptMapTargetElementComponent(String name, ConceptMap.TargetElementComponent element) throws IOException
- Throws:
IOException
-
composeConceptMapTargetElementComponentInner
protected void composeConceptMapTargetElementComponentInner(ConceptMap.TargetElementComponent element) throws IOException
- Throws:
IOException
-
composeConceptMapOtherElementComponent
protected void composeConceptMapOtherElementComponent(String name, ConceptMap.OtherElementComponent element) throws IOException
- Throws:
IOException
-
composeConceptMapOtherElementComponentInner
protected void composeConceptMapOtherElementComponentInner(ConceptMap.OtherElementComponent element) throws IOException
- Throws:
IOException
-
composeConceptMapConceptMapGroupUnmappedComponent
protected void composeConceptMapConceptMapGroupUnmappedComponent(String name, ConceptMap.ConceptMapGroupUnmappedComponent element) throws IOException
- Throws:
IOException
-
composeConceptMapConceptMapGroupUnmappedComponentInner
protected void composeConceptMapConceptMapGroupUnmappedComponentInner(ConceptMap.ConceptMapGroupUnmappedComponent element) throws IOException
- Throws:
IOException
-
composeCondition
protected void composeCondition(String name, Condition element) throws IOException
- Throws:
IOException
-
composeConditionInner
protected void composeConditionInner(Condition element) throws IOException
- Throws:
IOException
-
composeConditionConditionStageComponent
protected void composeConditionConditionStageComponent(String name, Condition.ConditionStageComponent element) throws IOException
- Throws:
IOException
-
composeConditionConditionStageComponentInner
protected void composeConditionConditionStageComponentInner(Condition.ConditionStageComponent element) throws IOException
- Throws:
IOException
-
composeConditionConditionEvidenceComponent
protected void composeConditionConditionEvidenceComponent(String name, Condition.ConditionEvidenceComponent element) throws IOException
- Throws:
IOException
-
composeConditionConditionEvidenceComponentInner
protected void composeConditionConditionEvidenceComponentInner(Condition.ConditionEvidenceComponent element) throws IOException
- Throws:
IOException
-
composeConsent
protected void composeConsent(String name, Consent element) throws IOException
- Throws:
IOException
-
composeConsentInner
protected void composeConsentInner(Consent element) throws IOException
- Throws:
IOException
-
composeConsentConsentPolicyComponent
protected void composeConsentConsentPolicyComponent(String name, Consent.ConsentPolicyComponent element) throws IOException
- Throws:
IOException
-
composeConsentConsentPolicyComponentInner
protected void composeConsentConsentPolicyComponentInner(Consent.ConsentPolicyComponent element) throws IOException
- Throws:
IOException
-
composeConsentConsentVerificationComponent
protected void composeConsentConsentVerificationComponent(String name, Consent.ConsentVerificationComponent element) throws IOException
- Throws:
IOException
-
composeConsentConsentVerificationComponentInner
protected void composeConsentConsentVerificationComponentInner(Consent.ConsentVerificationComponent element) throws IOException
- Throws:
IOException
-
composeConsentprovisionComponent
protected void composeConsentprovisionComponent(String name, Consent.provisionComponent element) throws IOException
- Throws:
IOException
-
composeConsentprovisionComponentInner
protected void composeConsentprovisionComponentInner(Consent.provisionComponent element) throws IOException
- Throws:
IOException
-
composeConsentprovisionActorComponent
protected void composeConsentprovisionActorComponent(String name, Consent.provisionActorComponent element) throws IOException
- Throws:
IOException
-
composeConsentprovisionActorComponentInner
protected void composeConsentprovisionActorComponentInner(Consent.provisionActorComponent element) throws IOException
- Throws:
IOException
-
composeConsentprovisionDataComponent
protected void composeConsentprovisionDataComponent(String name, Consent.provisionDataComponent element) throws IOException
- Throws:
IOException
-
composeConsentprovisionDataComponentInner
protected void composeConsentprovisionDataComponentInner(Consent.provisionDataComponent element) throws IOException
- Throws:
IOException
-
composeContract
protected void composeContract(String name, Contract element) throws IOException
- Throws:
IOException
-
composeContractInner
protected void composeContractInner(Contract element) throws IOException
- Throws:
IOException
-
composeContractContentDefinitionComponent
protected void composeContractContentDefinitionComponent(String name, Contract.ContentDefinitionComponent element) throws IOException
- Throws:
IOException
-
composeContractContentDefinitionComponentInner
protected void composeContractContentDefinitionComponentInner(Contract.ContentDefinitionComponent element) throws IOException
- Throws:
IOException
-
composeContractTermComponent
protected void composeContractTermComponent(String name, Contract.TermComponent element) throws IOException
- Throws:
IOException
-
composeContractTermComponentInner
protected void composeContractTermComponentInner(Contract.TermComponent element) throws IOException
- Throws:
IOException
-
composeContractSecurityLabelComponent
protected void composeContractSecurityLabelComponent(String name, Contract.SecurityLabelComponent element) throws IOException
- Throws:
IOException
-
composeContractSecurityLabelComponentInner
protected void composeContractSecurityLabelComponentInner(Contract.SecurityLabelComponent element) throws IOException
- Throws:
IOException
-
composeContractContractOfferComponent
protected void composeContractContractOfferComponent(String name, Contract.ContractOfferComponent element) throws IOException
- Throws:
IOException
-
composeContractContractOfferComponentInner
protected void composeContractContractOfferComponentInner(Contract.ContractOfferComponent element) throws IOException
- Throws:
IOException
-
composeContractContractPartyComponent
protected void composeContractContractPartyComponent(String name, Contract.ContractPartyComponent element) throws IOException
- Throws:
IOException
-
composeContractContractPartyComponentInner
protected void composeContractContractPartyComponentInner(Contract.ContractPartyComponent element) throws IOException
- Throws:
IOException
-
composeContractAnswerComponent
protected void composeContractAnswerComponent(String name, Contract.AnswerComponent element) throws IOException
- Throws:
IOException
-
composeContractAnswerComponentInner
protected void composeContractAnswerComponentInner(Contract.AnswerComponent element) throws IOException
- Throws:
IOException
-
composeContractContractAssetComponent
protected void composeContractContractAssetComponent(String name, Contract.ContractAssetComponent element) throws IOException
- Throws:
IOException
-
composeContractContractAssetComponentInner
protected void composeContractContractAssetComponentInner(Contract.ContractAssetComponent element) throws IOException
- Throws:
IOException
-
composeContractAssetContextComponent
protected void composeContractAssetContextComponent(String name, Contract.AssetContextComponent element) throws IOException
- Throws:
IOException
-
composeContractAssetContextComponentInner
protected void composeContractAssetContextComponentInner(Contract.AssetContextComponent element) throws IOException
- Throws:
IOException
-
composeContractValuedItemComponent
protected void composeContractValuedItemComponent(String name, Contract.ValuedItemComponent element) throws IOException
- Throws:
IOException
-
composeContractValuedItemComponentInner
protected void composeContractValuedItemComponentInner(Contract.ValuedItemComponent element) throws IOException
- Throws:
IOException
-
composeContractActionComponent
protected void composeContractActionComponent(String name, Contract.ActionComponent element) throws IOException
- Throws:
IOException
-
composeContractActionComponentInner
protected void composeContractActionComponentInner(Contract.ActionComponent element) throws IOException
- Throws:
IOException
-
composeContractActionSubjectComponent
protected void composeContractActionSubjectComponent(String name, Contract.ActionSubjectComponent element) throws IOException
- Throws:
IOException
-
composeContractActionSubjectComponentInner
protected void composeContractActionSubjectComponentInner(Contract.ActionSubjectComponent element) throws IOException
- Throws:
IOException
-
composeContractSignatoryComponent
protected void composeContractSignatoryComponent(String name, Contract.SignatoryComponent element) throws IOException
- Throws:
IOException
-
composeContractSignatoryComponentInner
protected void composeContractSignatoryComponentInner(Contract.SignatoryComponent element) throws IOException
- Throws:
IOException
-
composeContractFriendlyLanguageComponent
protected void composeContractFriendlyLanguageComponent(String name, Contract.FriendlyLanguageComponent element) throws IOException
- Throws:
IOException
-
composeContractFriendlyLanguageComponentInner
protected void composeContractFriendlyLanguageComponentInner(Contract.FriendlyLanguageComponent element) throws IOException
- Throws:
IOException
-
composeContractLegalLanguageComponent
protected void composeContractLegalLanguageComponent(String name, Contract.LegalLanguageComponent element) throws IOException
- Throws:
IOException
-
composeContractLegalLanguageComponentInner
protected void composeContractLegalLanguageComponentInner(Contract.LegalLanguageComponent element) throws IOException
- Throws:
IOException
-
composeContractComputableLanguageComponent
protected void composeContractComputableLanguageComponent(String name, Contract.ComputableLanguageComponent element) throws IOException
- Throws:
IOException
-
composeContractComputableLanguageComponentInner
protected void composeContractComputableLanguageComponentInner(Contract.ComputableLanguageComponent element) throws IOException
- Throws:
IOException
-
composeCoverage
protected void composeCoverage(String name, Coverage element) throws IOException
- Throws:
IOException
-
composeCoverageInner
protected void composeCoverageInner(Coverage element) throws IOException
- Throws:
IOException
-
composeCoverageClassComponent
protected void composeCoverageClassComponent(String name, Coverage.ClassComponent element) throws IOException
- Throws:
IOException
-
composeCoverageClassComponentInner
protected void composeCoverageClassComponentInner(Coverage.ClassComponent element) throws IOException
- Throws:
IOException
-
composeCoverageCostToBeneficiaryComponent
protected void composeCoverageCostToBeneficiaryComponent(String name, Coverage.CostToBeneficiaryComponent element) throws IOException
- Throws:
IOException
-
composeCoverageCostToBeneficiaryComponentInner
protected void composeCoverageCostToBeneficiaryComponentInner(Coverage.CostToBeneficiaryComponent element) throws IOException
- Throws:
IOException
-
composeCoverageExemptionComponent
protected void composeCoverageExemptionComponent(String name, Coverage.ExemptionComponent element) throws IOException
- Throws:
IOException
-
composeCoverageExemptionComponentInner
protected void composeCoverageExemptionComponentInner(Coverage.ExemptionComponent element) throws IOException
- Throws:
IOException
-
composeCoverageEligibilityRequest
protected void composeCoverageEligibilityRequest(String name, CoverageEligibilityRequest element) throws IOException
- Throws:
IOException
-
composeCoverageEligibilityRequestInner
protected void composeCoverageEligibilityRequestInner(CoverageEligibilityRequest element) throws IOException
- Throws:
IOException
-
composeCoverageEligibilityRequestSupportingInformationComponent
protected void composeCoverageEligibilityRequestSupportingInformationComponent(String name, CoverageEligibilityRequest.SupportingInformationComponent element) throws IOException
- Throws:
IOException
-
composeCoverageEligibilityRequestSupportingInformationComponentInner
protected void composeCoverageEligibilityRequestSupportingInformationComponentInner(CoverageEligibilityRequest.SupportingInformationComponent element) throws IOException
- Throws:
IOException
-
composeCoverageEligibilityRequestInsuranceComponent
protected void composeCoverageEligibilityRequestInsuranceComponent(String name, CoverageEligibilityRequest.InsuranceComponent element) throws IOException
- Throws:
IOException
-
composeCoverageEligibilityRequestInsuranceComponentInner
protected void composeCoverageEligibilityRequestInsuranceComponentInner(CoverageEligibilityRequest.InsuranceComponent element) throws IOException
- Throws:
IOException
-
composeCoverageEligibilityRequestDetailsComponent
protected void composeCoverageEligibilityRequestDetailsComponent(String name, CoverageEligibilityRequest.DetailsComponent element) throws IOException
- Throws:
IOException
-
composeCoverageEligibilityRequestDetailsComponentInner
protected void composeCoverageEligibilityRequestDetailsComponentInner(CoverageEligibilityRequest.DetailsComponent element) throws IOException
- Throws:
IOException
-
composeCoverageEligibilityRequestDiagnosisComponent
protected void composeCoverageEligibilityRequestDiagnosisComponent(String name, CoverageEligibilityRequest.DiagnosisComponent element) throws IOException
- Throws:
IOException
-
composeCoverageEligibilityRequestDiagnosisComponentInner
protected void composeCoverageEligibilityRequestDiagnosisComponentInner(CoverageEligibilityRequest.DiagnosisComponent element) throws IOException
- Throws:
IOException
-
composeCoverageEligibilityResponse
protected void composeCoverageEligibilityResponse(String name, CoverageEligibilityResponse element) throws IOException
- Throws:
IOException
-
composeCoverageEligibilityResponseInner
protected void composeCoverageEligibilityResponseInner(CoverageEligibilityResponse element) throws IOException
- Throws:
IOException
-
composeCoverageEligibilityResponseInsuranceComponent
protected void composeCoverageEligibilityResponseInsuranceComponent(String name, CoverageEligibilityResponse.InsuranceComponent element) throws IOException
- Throws:
IOException
-
composeCoverageEligibilityResponseInsuranceComponentInner
protected void composeCoverageEligibilityResponseInsuranceComponentInner(CoverageEligibilityResponse.InsuranceComponent element) throws IOException
- Throws:
IOException
-
composeCoverageEligibilityResponseItemsComponent
protected void composeCoverageEligibilityResponseItemsComponent(String name, CoverageEligibilityResponse.ItemsComponent element) throws IOException
- Throws:
IOException
-
composeCoverageEligibilityResponseItemsComponentInner
protected void composeCoverageEligibilityResponseItemsComponentInner(CoverageEligibilityResponse.ItemsComponent element) throws IOException
- Throws:
IOException
-
composeCoverageEligibilityResponseBenefitComponent
protected void composeCoverageEligibilityResponseBenefitComponent(String name, CoverageEligibilityResponse.BenefitComponent element) throws IOException
- Throws:
IOException
-
composeCoverageEligibilityResponseBenefitComponentInner
protected void composeCoverageEligibilityResponseBenefitComponentInner(CoverageEligibilityResponse.BenefitComponent element) throws IOException
- Throws:
IOException
-
composeCoverageEligibilityResponseErrorsComponent
protected void composeCoverageEligibilityResponseErrorsComponent(String name, CoverageEligibilityResponse.ErrorsComponent element) throws IOException
- Throws:
IOException
-
composeCoverageEligibilityResponseErrorsComponentInner
protected void composeCoverageEligibilityResponseErrorsComponentInner(CoverageEligibilityResponse.ErrorsComponent element) throws IOException
- Throws:
IOException
-
composeDetectedIssue
protected void composeDetectedIssue(String name, DetectedIssue element) throws IOException
- Throws:
IOException
-
composeDetectedIssueInner
protected void composeDetectedIssueInner(DetectedIssue element) throws IOException
- Throws:
IOException
-
composeDetectedIssueDetectedIssueEvidenceComponent
protected void composeDetectedIssueDetectedIssueEvidenceComponent(String name, DetectedIssue.DetectedIssueEvidenceComponent element) throws IOException
- Throws:
IOException
-
composeDetectedIssueDetectedIssueEvidenceComponentInner
protected void composeDetectedIssueDetectedIssueEvidenceComponentInner(DetectedIssue.DetectedIssueEvidenceComponent element) throws IOException
- Throws:
IOException
-
composeDetectedIssueDetectedIssueMitigationComponent
protected void composeDetectedIssueDetectedIssueMitigationComponent(String name, DetectedIssue.DetectedIssueMitigationComponent element) throws IOException
- Throws:
IOException
-
composeDetectedIssueDetectedIssueMitigationComponentInner
protected void composeDetectedIssueDetectedIssueMitigationComponentInner(DetectedIssue.DetectedIssueMitigationComponent element) throws IOException
- Throws:
IOException
-
composeDevice
protected void composeDevice(String name, Device element) throws IOException
- Throws:
IOException
-
composeDeviceInner
protected void composeDeviceInner(Device element) throws IOException
- Throws:
IOException
-
composeDeviceDeviceUdiCarrierComponent
protected void composeDeviceDeviceUdiCarrierComponent(String name, Device.DeviceUdiCarrierComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDeviceUdiCarrierComponentInner
protected void composeDeviceDeviceUdiCarrierComponentInner(Device.DeviceUdiCarrierComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDeviceDeviceNameComponent
protected void composeDeviceDeviceDeviceNameComponent(String name, Device.DeviceDeviceNameComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDeviceDeviceNameComponentInner
protected void composeDeviceDeviceDeviceNameComponentInner(Device.DeviceDeviceNameComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDeviceSpecializationComponent
protected void composeDeviceDeviceSpecializationComponent(String name, Device.DeviceSpecializationComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDeviceSpecializationComponentInner
protected void composeDeviceDeviceSpecializationComponentInner(Device.DeviceSpecializationComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDeviceVersionComponent
protected void composeDeviceDeviceVersionComponent(String name, Device.DeviceVersionComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDeviceVersionComponentInner
protected void composeDeviceDeviceVersionComponentInner(Device.DeviceVersionComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDevicePropertyComponent
protected void composeDeviceDevicePropertyComponent(String name, Device.DevicePropertyComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDevicePropertyComponentInner
protected void composeDeviceDevicePropertyComponentInner(Device.DevicePropertyComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDefinition
protected void composeDeviceDefinition(String name, DeviceDefinition element) throws IOException
- Throws:
IOException
-
composeDeviceDefinitionInner
protected void composeDeviceDefinitionInner(DeviceDefinition element) throws IOException
- Throws:
IOException
-
composeDeviceDefinitionDeviceDefinitionUdiDeviceIdentifierComponent
protected void composeDeviceDefinitionDeviceDefinitionUdiDeviceIdentifierComponent(String name, DeviceDefinition.DeviceDefinitionUdiDeviceIdentifierComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDefinitionDeviceDefinitionUdiDeviceIdentifierComponentInner
protected void composeDeviceDefinitionDeviceDefinitionUdiDeviceIdentifierComponentInner(DeviceDefinition.DeviceDefinitionUdiDeviceIdentifierComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDefinitionDeviceDefinitionDeviceNameComponent
protected void composeDeviceDefinitionDeviceDefinitionDeviceNameComponent(String name, DeviceDefinition.DeviceDefinitionDeviceNameComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDefinitionDeviceDefinitionDeviceNameComponentInner
protected void composeDeviceDefinitionDeviceDefinitionDeviceNameComponentInner(DeviceDefinition.DeviceDefinitionDeviceNameComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDefinitionDeviceDefinitionSpecializationComponent
protected void composeDeviceDefinitionDeviceDefinitionSpecializationComponent(String name, DeviceDefinition.DeviceDefinitionSpecializationComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDefinitionDeviceDefinitionSpecializationComponentInner
protected void composeDeviceDefinitionDeviceDefinitionSpecializationComponentInner(DeviceDefinition.DeviceDefinitionSpecializationComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDefinitionDeviceDefinitionCapabilityComponent
protected void composeDeviceDefinitionDeviceDefinitionCapabilityComponent(String name, DeviceDefinition.DeviceDefinitionCapabilityComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDefinitionDeviceDefinitionCapabilityComponentInner
protected void composeDeviceDefinitionDeviceDefinitionCapabilityComponentInner(DeviceDefinition.DeviceDefinitionCapabilityComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDefinitionDeviceDefinitionPropertyComponent
protected void composeDeviceDefinitionDeviceDefinitionPropertyComponent(String name, DeviceDefinition.DeviceDefinitionPropertyComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDefinitionDeviceDefinitionPropertyComponentInner
protected void composeDeviceDefinitionDeviceDefinitionPropertyComponentInner(DeviceDefinition.DeviceDefinitionPropertyComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDefinitionDeviceDefinitionMaterialComponent
protected void composeDeviceDefinitionDeviceDefinitionMaterialComponent(String name, DeviceDefinition.DeviceDefinitionMaterialComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDefinitionDeviceDefinitionMaterialComponentInner
protected void composeDeviceDefinitionDeviceDefinitionMaterialComponentInner(DeviceDefinition.DeviceDefinitionMaterialComponent element) throws IOException
- Throws:
IOException
-
composeDeviceMetric
protected void composeDeviceMetric(String name, DeviceMetric element) throws IOException
- Throws:
IOException
-
composeDeviceMetricInner
protected void composeDeviceMetricInner(DeviceMetric element) throws IOException
- Throws:
IOException
-
composeDeviceMetricDeviceMetricCalibrationComponent
protected void composeDeviceMetricDeviceMetricCalibrationComponent(String name, DeviceMetric.DeviceMetricCalibrationComponent element) throws IOException
- Throws:
IOException
-
composeDeviceMetricDeviceMetricCalibrationComponentInner
protected void composeDeviceMetricDeviceMetricCalibrationComponentInner(DeviceMetric.DeviceMetricCalibrationComponent element) throws IOException
- Throws:
IOException
-
composeDeviceRequest
protected void composeDeviceRequest(String name, DeviceRequest element) throws IOException
- Throws:
IOException
-
composeDeviceRequestInner
protected void composeDeviceRequestInner(DeviceRequest element) throws IOException
- Throws:
IOException
-
composeDeviceRequestDeviceRequestParameterComponent
protected void composeDeviceRequestDeviceRequestParameterComponent(String name, DeviceRequest.DeviceRequestParameterComponent element) throws IOException
- Throws:
IOException
-
composeDeviceRequestDeviceRequestParameterComponentInner
protected void composeDeviceRequestDeviceRequestParameterComponentInner(DeviceRequest.DeviceRequestParameterComponent element) throws IOException
- Throws:
IOException
-
composeDeviceUseStatement
protected void composeDeviceUseStatement(String name, DeviceUseStatement element) throws IOException
- Throws:
IOException
-
composeDeviceUseStatementInner
protected void composeDeviceUseStatementInner(DeviceUseStatement element) throws IOException
- Throws:
IOException
-
composeDiagnosticReport
protected void composeDiagnosticReport(String name, DiagnosticReport element) throws IOException
- Throws:
IOException
-
composeDiagnosticReportInner
protected void composeDiagnosticReportInner(DiagnosticReport element) throws IOException
- Throws:
IOException
-
composeDiagnosticReportDiagnosticReportMediaComponent
protected void composeDiagnosticReportDiagnosticReportMediaComponent(String name, DiagnosticReport.DiagnosticReportMediaComponent element) throws IOException
- Throws:
IOException
-
composeDiagnosticReportDiagnosticReportMediaComponentInner
protected void composeDiagnosticReportDiagnosticReportMediaComponentInner(DiagnosticReport.DiagnosticReportMediaComponent element) throws IOException
- Throws:
IOException
-
composeDocumentManifest
protected void composeDocumentManifest(String name, DocumentManifest element) throws IOException
- Throws:
IOException
-
composeDocumentManifestInner
protected void composeDocumentManifestInner(DocumentManifest element) throws IOException
- Throws:
IOException
-
composeDocumentManifestDocumentManifestRelatedComponent
protected void composeDocumentManifestDocumentManifestRelatedComponent(String name, DocumentManifest.DocumentManifestRelatedComponent element) throws IOException
- Throws:
IOException
-
composeDocumentManifestDocumentManifestRelatedComponentInner
protected void composeDocumentManifestDocumentManifestRelatedComponentInner(DocumentManifest.DocumentManifestRelatedComponent element) throws IOException
- Throws:
IOException
-
composeDocumentReference
protected void composeDocumentReference(String name, DocumentReference element) throws IOException
- Throws:
IOException
-
composeDocumentReferenceInner
protected void composeDocumentReferenceInner(DocumentReference element) throws IOException
- Throws:
IOException
-
composeDocumentReferenceDocumentReferenceRelatesToComponent
protected void composeDocumentReferenceDocumentReferenceRelatesToComponent(String name, DocumentReference.DocumentReferenceRelatesToComponent element) throws IOException
- Throws:
IOException
-
composeDocumentReferenceDocumentReferenceRelatesToComponentInner
protected void composeDocumentReferenceDocumentReferenceRelatesToComponentInner(DocumentReference.DocumentReferenceRelatesToComponent element) throws IOException
- Throws:
IOException
-
composeDocumentReferenceDocumentReferenceContentComponent
protected void composeDocumentReferenceDocumentReferenceContentComponent(String name, DocumentReference.DocumentReferenceContentComponent element) throws IOException
- Throws:
IOException
-
composeDocumentReferenceDocumentReferenceContentComponentInner
protected void composeDocumentReferenceDocumentReferenceContentComponentInner(DocumentReference.DocumentReferenceContentComponent element) throws IOException
- Throws:
IOException
-
composeDocumentReferenceDocumentReferenceContextComponent
protected void composeDocumentReferenceDocumentReferenceContextComponent(String name, DocumentReference.DocumentReferenceContextComponent element) throws IOException
- Throws:
IOException
-
composeDocumentReferenceDocumentReferenceContextComponentInner
protected void composeDocumentReferenceDocumentReferenceContextComponentInner(DocumentReference.DocumentReferenceContextComponent element) throws IOException
- Throws:
IOException
-
composeEffectEvidenceSynthesis
protected void composeEffectEvidenceSynthesis(String name, EffectEvidenceSynthesis element) throws IOException
- Throws:
IOException
-
composeEffectEvidenceSynthesisInner
protected void composeEffectEvidenceSynthesisInner(EffectEvidenceSynthesis element) throws IOException
- Throws:
IOException
-
composeEffectEvidenceSynthesisEffectEvidenceSynthesisSampleSizeComponent
protected void composeEffectEvidenceSynthesisEffectEvidenceSynthesisSampleSizeComponent(String name, EffectEvidenceSynthesis.EffectEvidenceSynthesisSampleSizeComponent element) throws IOException
- Throws:
IOException
-
composeEffectEvidenceSynthesisEffectEvidenceSynthesisSampleSizeComponentInner
protected void composeEffectEvidenceSynthesisEffectEvidenceSynthesisSampleSizeComponentInner(EffectEvidenceSynthesis.EffectEvidenceSynthesisSampleSizeComponent element) throws IOException
- Throws:
IOException
-
composeEffectEvidenceSynthesisEffectEvidenceSynthesisResultsByExposureComponent
protected void composeEffectEvidenceSynthesisEffectEvidenceSynthesisResultsByExposureComponent(String name, EffectEvidenceSynthesis.EffectEvidenceSynthesisResultsByExposureComponent element) throws IOException
- Throws:
IOException
-
composeEffectEvidenceSynthesisEffectEvidenceSynthesisResultsByExposureComponentInner
protected void composeEffectEvidenceSynthesisEffectEvidenceSynthesisResultsByExposureComponentInner(EffectEvidenceSynthesis.EffectEvidenceSynthesisResultsByExposureComponent element) throws IOException
- Throws:
IOException
-
composeEffectEvidenceSynthesisEffectEvidenceSynthesisEffectEstimateComponent
protected void composeEffectEvidenceSynthesisEffectEvidenceSynthesisEffectEstimateComponent(String name, EffectEvidenceSynthesis.EffectEvidenceSynthesisEffectEstimateComponent element) throws IOException
- Throws:
IOException
-
composeEffectEvidenceSynthesisEffectEvidenceSynthesisEffectEstimateComponentInner
protected void composeEffectEvidenceSynthesisEffectEvidenceSynthesisEffectEstimateComponentInner(EffectEvidenceSynthesis.EffectEvidenceSynthesisEffectEstimateComponent element) throws IOException
- Throws:
IOException
-
composeEffectEvidenceSynthesisEffectEvidenceSynthesisEffectEstimatePrecisionEstimateComponent
protected void composeEffectEvidenceSynthesisEffectEvidenceSynthesisEffectEstimatePrecisionEstimateComponent(String name, EffectEvidenceSynthesis.EffectEvidenceSynthesisEffectEstimatePrecisionEstimateComponent element) throws IOException
- Throws:
IOException
-
composeEffectEvidenceSynthesisEffectEvidenceSynthesisEffectEstimatePrecisionEstimateComponentInner
protected void composeEffectEvidenceSynthesisEffectEvidenceSynthesisEffectEstimatePrecisionEstimateComponentInner(EffectEvidenceSynthesis.EffectEvidenceSynthesisEffectEstimatePrecisionEstimateComponent element) throws IOException
- Throws:
IOException
-
composeEffectEvidenceSynthesisEffectEvidenceSynthesisCertaintyComponent
protected void composeEffectEvidenceSynthesisEffectEvidenceSynthesisCertaintyComponent(String name, EffectEvidenceSynthesis.EffectEvidenceSynthesisCertaintyComponent element) throws IOException
- Throws:
IOException
-
composeEffectEvidenceSynthesisEffectEvidenceSynthesisCertaintyComponentInner
protected void composeEffectEvidenceSynthesisEffectEvidenceSynthesisCertaintyComponentInner(EffectEvidenceSynthesis.EffectEvidenceSynthesisCertaintyComponent element) throws IOException
- Throws:
IOException
-
composeEffectEvidenceSynthesisEffectEvidenceSynthesisCertaintyCertaintySubcomponentComponent
protected void composeEffectEvidenceSynthesisEffectEvidenceSynthesisCertaintyCertaintySubcomponentComponent(String name, EffectEvidenceSynthesis.EffectEvidenceSynthesisCertaintyCertaintySubcomponentComponent element) throws IOException
- Throws:
IOException
-
composeEffectEvidenceSynthesisEffectEvidenceSynthesisCertaintyCertaintySubcomponentComponentInner
protected void composeEffectEvidenceSynthesisEffectEvidenceSynthesisCertaintyCertaintySubcomponentComponentInner(EffectEvidenceSynthesis.EffectEvidenceSynthesisCertaintyCertaintySubcomponentComponent element) throws IOException
- Throws:
IOException
-
composeEncounter
protected void composeEncounter(String name, Encounter element) throws IOException
- Throws:
IOException
-
composeEncounterInner
protected void composeEncounterInner(Encounter element) throws IOException
- Throws:
IOException
-
composeEncounterStatusHistoryComponent
protected void composeEncounterStatusHistoryComponent(String name, Encounter.StatusHistoryComponent element) throws IOException
- Throws:
IOException
-
composeEncounterStatusHistoryComponentInner
protected void composeEncounterStatusHistoryComponentInner(Encounter.StatusHistoryComponent element) throws IOException
- Throws:
IOException
-
composeEncounterClassHistoryComponent
protected void composeEncounterClassHistoryComponent(String name, Encounter.ClassHistoryComponent element) throws IOException
- Throws:
IOException
-
composeEncounterClassHistoryComponentInner
protected void composeEncounterClassHistoryComponentInner(Encounter.ClassHistoryComponent element) throws IOException
- Throws:
IOException
-
composeEncounterEncounterParticipantComponent
protected void composeEncounterEncounterParticipantComponent(String name, Encounter.EncounterParticipantComponent element) throws IOException
- Throws:
IOException
-
composeEncounterEncounterParticipantComponentInner
protected void composeEncounterEncounterParticipantComponentInner(Encounter.EncounterParticipantComponent element) throws IOException
- Throws:
IOException
-
composeEncounterDiagnosisComponent
protected void composeEncounterDiagnosisComponent(String name, Encounter.DiagnosisComponent element) throws IOException
- Throws:
IOException
-
composeEncounterDiagnosisComponentInner
protected void composeEncounterDiagnosisComponentInner(Encounter.DiagnosisComponent element) throws IOException
- Throws:
IOException
-
composeEncounterEncounterHospitalizationComponent
protected void composeEncounterEncounterHospitalizationComponent(String name, Encounter.EncounterHospitalizationComponent element) throws IOException
- Throws:
IOException
-
composeEncounterEncounterHospitalizationComponentInner
protected void composeEncounterEncounterHospitalizationComponentInner(Encounter.EncounterHospitalizationComponent element) throws IOException
- Throws:
IOException
-
composeEncounterEncounterLocationComponent
protected void composeEncounterEncounterLocationComponent(String name, Encounter.EncounterLocationComponent element) throws IOException
- Throws:
IOException
-
composeEncounterEncounterLocationComponentInner
protected void composeEncounterEncounterLocationComponentInner(Encounter.EncounterLocationComponent element) throws IOException
- Throws:
IOException
-
composeEndpoint
protected void composeEndpoint(String name, Endpoint element) throws IOException
- Throws:
IOException
-
composeEndpointInner
protected void composeEndpointInner(Endpoint element) throws IOException
- Throws:
IOException
-
composeEnrollmentRequest
protected void composeEnrollmentRequest(String name, EnrollmentRequest element) throws IOException
- Throws:
IOException
-
composeEnrollmentRequestInner
protected void composeEnrollmentRequestInner(EnrollmentRequest element) throws IOException
- Throws:
IOException
-
composeEnrollmentResponse
protected void composeEnrollmentResponse(String name, EnrollmentResponse element) throws IOException
- Throws:
IOException
-
composeEnrollmentResponseInner
protected void composeEnrollmentResponseInner(EnrollmentResponse element) throws IOException
- Throws:
IOException
-
composeEpisodeOfCare
protected void composeEpisodeOfCare(String name, EpisodeOfCare element) throws IOException
- Throws:
IOException
-
composeEpisodeOfCareInner
protected void composeEpisodeOfCareInner(EpisodeOfCare element) throws IOException
- Throws:
IOException
-
composeEpisodeOfCareEpisodeOfCareStatusHistoryComponent
protected void composeEpisodeOfCareEpisodeOfCareStatusHistoryComponent(String name, EpisodeOfCare.EpisodeOfCareStatusHistoryComponent element) throws IOException
- Throws:
IOException
-
composeEpisodeOfCareEpisodeOfCareStatusHistoryComponentInner
protected void composeEpisodeOfCareEpisodeOfCareStatusHistoryComponentInner(EpisodeOfCare.EpisodeOfCareStatusHistoryComponent element) throws IOException
- Throws:
IOException
-
composeEpisodeOfCareDiagnosisComponent
protected void composeEpisodeOfCareDiagnosisComponent(String name, EpisodeOfCare.DiagnosisComponent element) throws IOException
- Throws:
IOException
-
composeEpisodeOfCareDiagnosisComponentInner
protected void composeEpisodeOfCareDiagnosisComponentInner(EpisodeOfCare.DiagnosisComponent element) throws IOException
- Throws:
IOException
-
composeEventDefinition
protected void composeEventDefinition(String name, EventDefinition element) throws IOException
- Throws:
IOException
-
composeEventDefinitionInner
protected void composeEventDefinitionInner(EventDefinition element) throws IOException
- Throws:
IOException
-
composeEvidence
protected void composeEvidence(String name, Evidence element) throws IOException
- Throws:
IOException
-
composeEvidenceInner
protected void composeEvidenceInner(Evidence element) throws IOException
- Throws:
IOException
-
composeEvidenceVariable
protected void composeEvidenceVariable(String name, EvidenceVariable element) throws IOException
- Throws:
IOException
-
composeEvidenceVariableInner
protected void composeEvidenceVariableInner(EvidenceVariable element) throws IOException
- Throws:
IOException
-
composeEvidenceVariableEvidenceVariableCharacteristicComponent
protected void composeEvidenceVariableEvidenceVariableCharacteristicComponent(String name, EvidenceVariable.EvidenceVariableCharacteristicComponent element) throws IOException
- Throws:
IOException
-
composeEvidenceVariableEvidenceVariableCharacteristicComponentInner
protected void composeEvidenceVariableEvidenceVariableCharacteristicComponentInner(EvidenceVariable.EvidenceVariableCharacteristicComponent element) throws IOException
- Throws:
IOException
-
composeExampleScenario
protected void composeExampleScenario(String name, ExampleScenario element) throws IOException
- Throws:
IOException
-
composeExampleScenarioInner
protected void composeExampleScenarioInner(ExampleScenario element) throws IOException
- Throws:
IOException
-
composeExampleScenarioExampleScenarioActorComponent
protected void composeExampleScenarioExampleScenarioActorComponent(String name, ExampleScenario.ExampleScenarioActorComponent element) throws IOException
- Throws:
IOException
-
composeExampleScenarioExampleScenarioActorComponentInner
protected void composeExampleScenarioExampleScenarioActorComponentInner(ExampleScenario.ExampleScenarioActorComponent element) throws IOException
- Throws:
IOException
-
composeExampleScenarioExampleScenarioInstanceComponent
protected void composeExampleScenarioExampleScenarioInstanceComponent(String name, ExampleScenario.ExampleScenarioInstanceComponent element) throws IOException
- Throws:
IOException
-
composeExampleScenarioExampleScenarioInstanceComponentInner
protected void composeExampleScenarioExampleScenarioInstanceComponentInner(ExampleScenario.ExampleScenarioInstanceComponent element) throws IOException
- Throws:
IOException
-
composeExampleScenarioExampleScenarioInstanceVersionComponent
protected void composeExampleScenarioExampleScenarioInstanceVersionComponent(String name, ExampleScenario.ExampleScenarioInstanceVersionComponent element) throws IOException
- Throws:
IOException
-
composeExampleScenarioExampleScenarioInstanceVersionComponentInner
protected void composeExampleScenarioExampleScenarioInstanceVersionComponentInner(ExampleScenario.ExampleScenarioInstanceVersionComponent element) throws IOException
- Throws:
IOException
-
composeExampleScenarioExampleScenarioInstanceContainedInstanceComponent
protected void composeExampleScenarioExampleScenarioInstanceContainedInstanceComponent(String name, ExampleScenario.ExampleScenarioInstanceContainedInstanceComponent element) throws IOException
- Throws:
IOException
-
composeExampleScenarioExampleScenarioInstanceContainedInstanceComponentInner
protected void composeExampleScenarioExampleScenarioInstanceContainedInstanceComponentInner(ExampleScenario.ExampleScenarioInstanceContainedInstanceComponent element) throws IOException
- Throws:
IOException
-
composeExampleScenarioExampleScenarioProcessComponent
protected void composeExampleScenarioExampleScenarioProcessComponent(String name, ExampleScenario.ExampleScenarioProcessComponent element) throws IOException
- Throws:
IOException
-
composeExampleScenarioExampleScenarioProcessComponentInner
protected void composeExampleScenarioExampleScenarioProcessComponentInner(ExampleScenario.ExampleScenarioProcessComponent element) throws IOException
- Throws:
IOException
-
composeExampleScenarioExampleScenarioProcessStepComponent
protected void composeExampleScenarioExampleScenarioProcessStepComponent(String name, ExampleScenario.ExampleScenarioProcessStepComponent element) throws IOException
- Throws:
IOException
-
composeExampleScenarioExampleScenarioProcessStepComponentInner
protected void composeExampleScenarioExampleScenarioProcessStepComponentInner(ExampleScenario.ExampleScenarioProcessStepComponent element) throws IOException
- Throws:
IOException
-
composeExampleScenarioExampleScenarioProcessStepOperationComponent
protected void composeExampleScenarioExampleScenarioProcessStepOperationComponent(String name, ExampleScenario.ExampleScenarioProcessStepOperationComponent element) throws IOException
- Throws:
IOException
-
composeExampleScenarioExampleScenarioProcessStepOperationComponentInner
protected void composeExampleScenarioExampleScenarioProcessStepOperationComponentInner(ExampleScenario.ExampleScenarioProcessStepOperationComponent element) throws IOException
- Throws:
IOException
-
composeExampleScenarioExampleScenarioProcessStepAlternativeComponent
protected void composeExampleScenarioExampleScenarioProcessStepAlternativeComponent(String name, ExampleScenario.ExampleScenarioProcessStepAlternativeComponent element) throws IOException
- Throws:
IOException
-
composeExampleScenarioExampleScenarioProcessStepAlternativeComponentInner
protected void composeExampleScenarioExampleScenarioProcessStepAlternativeComponentInner(ExampleScenario.ExampleScenarioProcessStepAlternativeComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefit
protected void composeExplanationOfBenefit(String name, ExplanationOfBenefit element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitInner
protected void composeExplanationOfBenefitInner(ExplanationOfBenefit element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitRelatedClaimComponent
protected void composeExplanationOfBenefitRelatedClaimComponent(String name, ExplanationOfBenefit.RelatedClaimComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitRelatedClaimComponentInner
protected void composeExplanationOfBenefitRelatedClaimComponentInner(ExplanationOfBenefit.RelatedClaimComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitPayeeComponent
protected void composeExplanationOfBenefitPayeeComponent(String name, ExplanationOfBenefit.PayeeComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitPayeeComponentInner
protected void composeExplanationOfBenefitPayeeComponentInner(ExplanationOfBenefit.PayeeComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitCareTeamComponent
protected void composeExplanationOfBenefitCareTeamComponent(String name, ExplanationOfBenefit.CareTeamComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitCareTeamComponentInner
protected void composeExplanationOfBenefitCareTeamComponentInner(ExplanationOfBenefit.CareTeamComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitSupportingInformationComponent
protected void composeExplanationOfBenefitSupportingInformationComponent(String name, ExplanationOfBenefit.SupportingInformationComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitSupportingInformationComponentInner
protected void composeExplanationOfBenefitSupportingInformationComponentInner(ExplanationOfBenefit.SupportingInformationComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitDiagnosisComponent
protected void composeExplanationOfBenefitDiagnosisComponent(String name, ExplanationOfBenefit.DiagnosisComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitDiagnosisComponentInner
protected void composeExplanationOfBenefitDiagnosisComponentInner(ExplanationOfBenefit.DiagnosisComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitProcedureComponent
protected void composeExplanationOfBenefitProcedureComponent(String name, ExplanationOfBenefit.ProcedureComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitProcedureComponentInner
protected void composeExplanationOfBenefitProcedureComponentInner(ExplanationOfBenefit.ProcedureComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitInsuranceComponent
protected void composeExplanationOfBenefitInsuranceComponent(String name, ExplanationOfBenefit.InsuranceComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitInsuranceComponentInner
protected void composeExplanationOfBenefitInsuranceComponentInner(ExplanationOfBenefit.InsuranceComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitAccidentComponent
protected void composeExplanationOfBenefitAccidentComponent(String name, ExplanationOfBenefit.AccidentComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitAccidentComponentInner
protected void composeExplanationOfBenefitAccidentComponentInner(ExplanationOfBenefit.AccidentComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitItemComponent
protected void composeExplanationOfBenefitItemComponent(String name, ExplanationOfBenefit.ItemComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitItemComponentInner
protected void composeExplanationOfBenefitItemComponentInner(ExplanationOfBenefit.ItemComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitAdjudicationComponent
protected void composeExplanationOfBenefitAdjudicationComponent(String name, ExplanationOfBenefit.AdjudicationComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitAdjudicationComponentInner
protected void composeExplanationOfBenefitAdjudicationComponentInner(ExplanationOfBenefit.AdjudicationComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitDetailComponent
protected void composeExplanationOfBenefitDetailComponent(String name, ExplanationOfBenefit.DetailComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitDetailComponentInner
protected void composeExplanationOfBenefitDetailComponentInner(ExplanationOfBenefit.DetailComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitSubDetailComponent
protected void composeExplanationOfBenefitSubDetailComponent(String name, ExplanationOfBenefit.SubDetailComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitSubDetailComponentInner
protected void composeExplanationOfBenefitSubDetailComponentInner(ExplanationOfBenefit.SubDetailComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitAddedItemComponent
protected void composeExplanationOfBenefitAddedItemComponent(String name, ExplanationOfBenefit.AddedItemComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitAddedItemComponentInner
protected void composeExplanationOfBenefitAddedItemComponentInner(ExplanationOfBenefit.AddedItemComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitAddedItemDetailComponent
protected void composeExplanationOfBenefitAddedItemDetailComponent(String name, ExplanationOfBenefit.AddedItemDetailComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitAddedItemDetailComponentInner
protected void composeExplanationOfBenefitAddedItemDetailComponentInner(ExplanationOfBenefit.AddedItemDetailComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitAddedItemDetailSubDetailComponent
protected void composeExplanationOfBenefitAddedItemDetailSubDetailComponent(String name, ExplanationOfBenefit.AddedItemDetailSubDetailComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitAddedItemDetailSubDetailComponentInner
protected void composeExplanationOfBenefitAddedItemDetailSubDetailComponentInner(ExplanationOfBenefit.AddedItemDetailSubDetailComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitTotalComponent
protected void composeExplanationOfBenefitTotalComponent(String name, ExplanationOfBenefit.TotalComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitTotalComponentInner
protected void composeExplanationOfBenefitTotalComponentInner(ExplanationOfBenefit.TotalComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitPaymentComponent
protected void composeExplanationOfBenefitPaymentComponent(String name, ExplanationOfBenefit.PaymentComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitPaymentComponentInner
protected void composeExplanationOfBenefitPaymentComponentInner(ExplanationOfBenefit.PaymentComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitNoteComponent
protected void composeExplanationOfBenefitNoteComponent(String name, ExplanationOfBenefit.NoteComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitNoteComponentInner
protected void composeExplanationOfBenefitNoteComponentInner(ExplanationOfBenefit.NoteComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitBenefitBalanceComponent
protected void composeExplanationOfBenefitBenefitBalanceComponent(String name, ExplanationOfBenefit.BenefitBalanceComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitBenefitBalanceComponentInner
protected void composeExplanationOfBenefitBenefitBalanceComponentInner(ExplanationOfBenefit.BenefitBalanceComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitBenefitComponent
protected void composeExplanationOfBenefitBenefitComponent(String name, ExplanationOfBenefit.BenefitComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitBenefitComponentInner
protected void composeExplanationOfBenefitBenefitComponentInner(ExplanationOfBenefit.BenefitComponent element) throws IOException
- Throws:
IOException
-
composeFamilyMemberHistory
protected void composeFamilyMemberHistory(String name, FamilyMemberHistory element) throws IOException
- Throws:
IOException
-
composeFamilyMemberHistoryInner
protected void composeFamilyMemberHistoryInner(FamilyMemberHistory element) throws IOException
- Throws:
IOException
-
composeFamilyMemberHistoryFamilyMemberHistoryConditionComponent
protected void composeFamilyMemberHistoryFamilyMemberHistoryConditionComponent(String name, FamilyMemberHistory.FamilyMemberHistoryConditionComponent element) throws IOException
- Throws:
IOException
-
composeFamilyMemberHistoryFamilyMemberHistoryConditionComponentInner
protected void composeFamilyMemberHistoryFamilyMemberHistoryConditionComponentInner(FamilyMemberHistory.FamilyMemberHistoryConditionComponent element) throws IOException
- Throws:
IOException
-
composeFlag
protected void composeFlag(String name, Flag element) throws IOException
- Throws:
IOException
-
composeFlagInner
protected void composeFlagInner(Flag element) throws IOException
- Throws:
IOException
-
composeGoal
protected void composeGoal(String name, Goal element) throws IOException
- Throws:
IOException
-
composeGoalInner
protected void composeGoalInner(Goal element) throws IOException
- Throws:
IOException
-
composeGoalGoalTargetComponent
protected void composeGoalGoalTargetComponent(String name, Goal.GoalTargetComponent element) throws IOException
- Throws:
IOException
-
composeGoalGoalTargetComponentInner
protected void composeGoalGoalTargetComponentInner(Goal.GoalTargetComponent element) throws IOException
- Throws:
IOException
-
composeGraphDefinition
protected void composeGraphDefinition(String name, GraphDefinition element) throws IOException
- Throws:
IOException
-
composeGraphDefinitionInner
protected void composeGraphDefinitionInner(GraphDefinition element) throws IOException
- Throws:
IOException
-
composeGraphDefinitionGraphDefinitionLinkComponent
protected void composeGraphDefinitionGraphDefinitionLinkComponent(String name, GraphDefinition.GraphDefinitionLinkComponent element) throws IOException
- Throws:
IOException
-
composeGraphDefinitionGraphDefinitionLinkComponentInner
protected void composeGraphDefinitionGraphDefinitionLinkComponentInner(GraphDefinition.GraphDefinitionLinkComponent element) throws IOException
- Throws:
IOException
-
composeGraphDefinitionGraphDefinitionLinkTargetComponent
protected void composeGraphDefinitionGraphDefinitionLinkTargetComponent(String name, GraphDefinition.GraphDefinitionLinkTargetComponent element) throws IOException
- Throws:
IOException
-
composeGraphDefinitionGraphDefinitionLinkTargetComponentInner
protected void composeGraphDefinitionGraphDefinitionLinkTargetComponentInner(GraphDefinition.GraphDefinitionLinkTargetComponent element) throws IOException
- Throws:
IOException
-
composeGraphDefinitionGraphDefinitionLinkTargetCompartmentComponent
protected void composeGraphDefinitionGraphDefinitionLinkTargetCompartmentComponent(String name, GraphDefinition.GraphDefinitionLinkTargetCompartmentComponent element) throws IOException
- Throws:
IOException
-
composeGraphDefinitionGraphDefinitionLinkTargetCompartmentComponentInner
protected void composeGraphDefinitionGraphDefinitionLinkTargetCompartmentComponentInner(GraphDefinition.GraphDefinitionLinkTargetCompartmentComponent element) throws IOException
- Throws:
IOException
-
composeGroup
protected void composeGroup(String name, Group element) throws IOException
- Throws:
IOException
-
composeGroupInner
protected void composeGroupInner(Group element) throws IOException
- Throws:
IOException
-
composeGroupGroupCharacteristicComponent
protected void composeGroupGroupCharacteristicComponent(String name, Group.GroupCharacteristicComponent element) throws IOException
- Throws:
IOException
-
composeGroupGroupCharacteristicComponentInner
protected void composeGroupGroupCharacteristicComponentInner(Group.GroupCharacteristicComponent element) throws IOException
- Throws:
IOException
-
composeGroupGroupMemberComponent
protected void composeGroupGroupMemberComponent(String name, Group.GroupMemberComponent element) throws IOException
- Throws:
IOException
-
composeGroupGroupMemberComponentInner
protected void composeGroupGroupMemberComponentInner(Group.GroupMemberComponent element) throws IOException
- Throws:
IOException
-
composeGuidanceResponse
protected void composeGuidanceResponse(String name, GuidanceResponse element) throws IOException
- Throws:
IOException
-
composeGuidanceResponseInner
protected void composeGuidanceResponseInner(GuidanceResponse element) throws IOException
- Throws:
IOException
-
composeHealthcareService
protected void composeHealthcareService(String name, HealthcareService element) throws IOException
- Throws:
IOException
-
composeHealthcareServiceInner
protected void composeHealthcareServiceInner(HealthcareService element) throws IOException
- Throws:
IOException
-
composeHealthcareServiceHealthcareServiceEligibilityComponent
protected void composeHealthcareServiceHealthcareServiceEligibilityComponent(String name, HealthcareService.HealthcareServiceEligibilityComponent element) throws IOException
- Throws:
IOException
-
composeHealthcareServiceHealthcareServiceEligibilityComponentInner
protected void composeHealthcareServiceHealthcareServiceEligibilityComponentInner(HealthcareService.HealthcareServiceEligibilityComponent element) throws IOException
- Throws:
IOException
-
composeHealthcareServiceHealthcareServiceAvailableTimeComponent
protected void composeHealthcareServiceHealthcareServiceAvailableTimeComponent(String name, HealthcareService.HealthcareServiceAvailableTimeComponent element) throws IOException
- Throws:
IOException
-
composeHealthcareServiceHealthcareServiceAvailableTimeComponentInner
protected void composeHealthcareServiceHealthcareServiceAvailableTimeComponentInner(HealthcareService.HealthcareServiceAvailableTimeComponent element) throws IOException
- Throws:
IOException
-
composeHealthcareServiceHealthcareServiceNotAvailableComponent
protected void composeHealthcareServiceHealthcareServiceNotAvailableComponent(String name, HealthcareService.HealthcareServiceNotAvailableComponent element) throws IOException
- Throws:
IOException
-
composeHealthcareServiceHealthcareServiceNotAvailableComponentInner
protected void composeHealthcareServiceHealthcareServiceNotAvailableComponentInner(HealthcareService.HealthcareServiceNotAvailableComponent element) throws IOException
- Throws:
IOException
-
composeImagingStudy
protected void composeImagingStudy(String name, ImagingStudy element) throws IOException
- Throws:
IOException
-
composeImagingStudyInner
protected void composeImagingStudyInner(ImagingStudy element) throws IOException
- Throws:
IOException
-
composeImagingStudyImagingStudySeriesComponent
protected void composeImagingStudyImagingStudySeriesComponent(String name, ImagingStudy.ImagingStudySeriesComponent element) throws IOException
- Throws:
IOException
-
composeImagingStudyImagingStudySeriesComponentInner
protected void composeImagingStudyImagingStudySeriesComponentInner(ImagingStudy.ImagingStudySeriesComponent element) throws IOException
- Throws:
IOException
-
composeImagingStudyImagingStudySeriesPerformerComponent
protected void composeImagingStudyImagingStudySeriesPerformerComponent(String name, ImagingStudy.ImagingStudySeriesPerformerComponent element) throws IOException
- Throws:
IOException
-
composeImagingStudyImagingStudySeriesPerformerComponentInner
protected void composeImagingStudyImagingStudySeriesPerformerComponentInner(ImagingStudy.ImagingStudySeriesPerformerComponent element) throws IOException
- Throws:
IOException
-
composeImagingStudyImagingStudySeriesInstanceComponent
protected void composeImagingStudyImagingStudySeriesInstanceComponent(String name, ImagingStudy.ImagingStudySeriesInstanceComponent element) throws IOException
- Throws:
IOException
-
composeImagingStudyImagingStudySeriesInstanceComponentInner
protected void composeImagingStudyImagingStudySeriesInstanceComponentInner(ImagingStudy.ImagingStudySeriesInstanceComponent element) throws IOException
- Throws:
IOException
-
composeImmunization
protected void composeImmunization(String name, Immunization element) throws IOException
- Throws:
IOException
-
composeImmunizationInner
protected void composeImmunizationInner(Immunization element) throws IOException
- Throws:
IOException
-
composeImmunizationImmunizationPerformerComponent
protected void composeImmunizationImmunizationPerformerComponent(String name, Immunization.ImmunizationPerformerComponent element) throws IOException
- Throws:
IOException
-
composeImmunizationImmunizationPerformerComponentInner
protected void composeImmunizationImmunizationPerformerComponentInner(Immunization.ImmunizationPerformerComponent element) throws IOException
- Throws:
IOException
-
composeImmunizationImmunizationEducationComponent
protected void composeImmunizationImmunizationEducationComponent(String name, Immunization.ImmunizationEducationComponent element) throws IOException
- Throws:
IOException
-
composeImmunizationImmunizationEducationComponentInner
protected void composeImmunizationImmunizationEducationComponentInner(Immunization.ImmunizationEducationComponent element) throws IOException
- Throws:
IOException
-
composeImmunizationImmunizationReactionComponent
protected void composeImmunizationImmunizationReactionComponent(String name, Immunization.ImmunizationReactionComponent element) throws IOException
- Throws:
IOException
-
composeImmunizationImmunizationReactionComponentInner
protected void composeImmunizationImmunizationReactionComponentInner(Immunization.ImmunizationReactionComponent element) throws IOException
- Throws:
IOException
-
composeImmunizationImmunizationProtocolAppliedComponent
protected void composeImmunizationImmunizationProtocolAppliedComponent(String name, Immunization.ImmunizationProtocolAppliedComponent element) throws IOException
- Throws:
IOException
-
composeImmunizationImmunizationProtocolAppliedComponentInner
protected void composeImmunizationImmunizationProtocolAppliedComponentInner(Immunization.ImmunizationProtocolAppliedComponent element) throws IOException
- Throws:
IOException
-
composeImmunizationEvaluation
protected void composeImmunizationEvaluation(String name, ImmunizationEvaluation element) throws IOException
- Throws:
IOException
-
composeImmunizationEvaluationInner
protected void composeImmunizationEvaluationInner(ImmunizationEvaluation element) throws IOException
- Throws:
IOException
-
composeImmunizationRecommendation
protected void composeImmunizationRecommendation(String name, ImmunizationRecommendation element) throws IOException
- Throws:
IOException
-
composeImmunizationRecommendationInner
protected void composeImmunizationRecommendationInner(ImmunizationRecommendation element) throws IOException
- Throws:
IOException
-
composeImmunizationRecommendationImmunizationRecommendationRecommendationComponent
protected void composeImmunizationRecommendationImmunizationRecommendationRecommendationComponent(String name, ImmunizationRecommendation.ImmunizationRecommendationRecommendationComponent element) throws IOException
- Throws:
IOException
-
composeImmunizationRecommendationImmunizationRecommendationRecommendationComponentInner
protected void composeImmunizationRecommendationImmunizationRecommendationRecommendationComponentInner(ImmunizationRecommendation.ImmunizationRecommendationRecommendationComponent element) throws IOException
- Throws:
IOException
-
composeImmunizationRecommendationImmunizationRecommendationRecommendationDateCriterionComponent
protected void composeImmunizationRecommendationImmunizationRecommendationRecommendationDateCriterionComponent(String name, ImmunizationRecommendation.ImmunizationRecommendationRecommendationDateCriterionComponent element) throws IOException
- Throws:
IOException
-
composeImmunizationRecommendationImmunizationRecommendationRecommendationDateCriterionComponentInner
protected void composeImmunizationRecommendationImmunizationRecommendationRecommendationDateCriterionComponentInner(ImmunizationRecommendation.ImmunizationRecommendationRecommendationDateCriterionComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuide
protected void composeImplementationGuide(String name, ImplementationGuide element) throws IOException
- Throws:
IOException
-
composeImplementationGuideInner
protected void composeImplementationGuideInner(ImplementationGuide element) throws IOException
- Throws:
IOException
-
composeImplementationGuideImplementationGuideDependsOnComponent
protected void composeImplementationGuideImplementationGuideDependsOnComponent(String name, ImplementationGuide.ImplementationGuideDependsOnComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideImplementationGuideDependsOnComponentInner
protected void composeImplementationGuideImplementationGuideDependsOnComponentInner(ImplementationGuide.ImplementationGuideDependsOnComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideImplementationGuideGlobalComponent
protected void composeImplementationGuideImplementationGuideGlobalComponent(String name, ImplementationGuide.ImplementationGuideGlobalComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideImplementationGuideGlobalComponentInner
protected void composeImplementationGuideImplementationGuideGlobalComponentInner(ImplementationGuide.ImplementationGuideGlobalComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideImplementationGuideDefinitionComponent
protected void composeImplementationGuideImplementationGuideDefinitionComponent(String name, ImplementationGuide.ImplementationGuideDefinitionComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideImplementationGuideDefinitionComponentInner
protected void composeImplementationGuideImplementationGuideDefinitionComponentInner(ImplementationGuide.ImplementationGuideDefinitionComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideImplementationGuideDefinitionGroupingComponent
protected void composeImplementationGuideImplementationGuideDefinitionGroupingComponent(String name, ImplementationGuide.ImplementationGuideDefinitionGroupingComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideImplementationGuideDefinitionGroupingComponentInner
protected void composeImplementationGuideImplementationGuideDefinitionGroupingComponentInner(ImplementationGuide.ImplementationGuideDefinitionGroupingComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideImplementationGuideDefinitionResourceComponent
protected void composeImplementationGuideImplementationGuideDefinitionResourceComponent(String name, ImplementationGuide.ImplementationGuideDefinitionResourceComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideImplementationGuideDefinitionResourceComponentInner
protected void composeImplementationGuideImplementationGuideDefinitionResourceComponentInner(ImplementationGuide.ImplementationGuideDefinitionResourceComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideImplementationGuideDefinitionPageComponent
protected void composeImplementationGuideImplementationGuideDefinitionPageComponent(String name, ImplementationGuide.ImplementationGuideDefinitionPageComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideImplementationGuideDefinitionPageComponentInner
protected void composeImplementationGuideImplementationGuideDefinitionPageComponentInner(ImplementationGuide.ImplementationGuideDefinitionPageComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideImplementationGuideDefinitionParameterComponent
protected void composeImplementationGuideImplementationGuideDefinitionParameterComponent(String name, ImplementationGuide.ImplementationGuideDefinitionParameterComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideImplementationGuideDefinitionParameterComponentInner
protected void composeImplementationGuideImplementationGuideDefinitionParameterComponentInner(ImplementationGuide.ImplementationGuideDefinitionParameterComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideImplementationGuideDefinitionTemplateComponent
protected void composeImplementationGuideImplementationGuideDefinitionTemplateComponent(String name, ImplementationGuide.ImplementationGuideDefinitionTemplateComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideImplementationGuideDefinitionTemplateComponentInner
protected void composeImplementationGuideImplementationGuideDefinitionTemplateComponentInner(ImplementationGuide.ImplementationGuideDefinitionTemplateComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideImplementationGuideManifestComponent
protected void composeImplementationGuideImplementationGuideManifestComponent(String name, ImplementationGuide.ImplementationGuideManifestComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideImplementationGuideManifestComponentInner
protected void composeImplementationGuideImplementationGuideManifestComponentInner(ImplementationGuide.ImplementationGuideManifestComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideManifestResourceComponent
protected void composeImplementationGuideManifestResourceComponent(String name, ImplementationGuide.ManifestResourceComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideManifestResourceComponentInner
protected void composeImplementationGuideManifestResourceComponentInner(ImplementationGuide.ManifestResourceComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideManifestPageComponent
protected void composeImplementationGuideManifestPageComponent(String name, ImplementationGuide.ManifestPageComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideManifestPageComponentInner
protected void composeImplementationGuideManifestPageComponentInner(ImplementationGuide.ManifestPageComponent element) throws IOException
- Throws:
IOException
-
composeInsurancePlan
protected void composeInsurancePlan(String name, InsurancePlan element) throws IOException
- Throws:
IOException
-
composeInsurancePlanInner
protected void composeInsurancePlanInner(InsurancePlan element) throws IOException
- Throws:
IOException
-
composeInsurancePlanInsurancePlanContactComponent
protected void composeInsurancePlanInsurancePlanContactComponent(String name, InsurancePlan.InsurancePlanContactComponent element) throws IOException
- Throws:
IOException
-
composeInsurancePlanInsurancePlanContactComponentInner
protected void composeInsurancePlanInsurancePlanContactComponentInner(InsurancePlan.InsurancePlanContactComponent element) throws IOException
- Throws:
IOException
-
composeInsurancePlanInsurancePlanCoverageComponent
protected void composeInsurancePlanInsurancePlanCoverageComponent(String name, InsurancePlan.InsurancePlanCoverageComponent element) throws IOException
- Throws:
IOException
-
composeInsurancePlanInsurancePlanCoverageComponentInner
protected void composeInsurancePlanInsurancePlanCoverageComponentInner(InsurancePlan.InsurancePlanCoverageComponent element) throws IOException
- Throws:
IOException
-
composeInsurancePlanCoverageBenefitComponent
protected void composeInsurancePlanCoverageBenefitComponent(String name, InsurancePlan.CoverageBenefitComponent element) throws IOException
- Throws:
IOException
-
composeInsurancePlanCoverageBenefitComponentInner
protected void composeInsurancePlanCoverageBenefitComponentInner(InsurancePlan.CoverageBenefitComponent element) throws IOException
- Throws:
IOException
-
composeInsurancePlanCoverageBenefitLimitComponent
protected void composeInsurancePlanCoverageBenefitLimitComponent(String name, InsurancePlan.CoverageBenefitLimitComponent element) throws IOException
- Throws:
IOException
-
composeInsurancePlanCoverageBenefitLimitComponentInner
protected void composeInsurancePlanCoverageBenefitLimitComponentInner(InsurancePlan.CoverageBenefitLimitComponent element) throws IOException
- Throws:
IOException
-
composeInsurancePlanInsurancePlanPlanComponent
protected void composeInsurancePlanInsurancePlanPlanComponent(String name, InsurancePlan.InsurancePlanPlanComponent element) throws IOException
- Throws:
IOException
-
composeInsurancePlanInsurancePlanPlanComponentInner
protected void composeInsurancePlanInsurancePlanPlanComponentInner(InsurancePlan.InsurancePlanPlanComponent element) throws IOException
- Throws:
IOException
-
composeInsurancePlanInsurancePlanPlanGeneralCostComponent
protected void composeInsurancePlanInsurancePlanPlanGeneralCostComponent(String name, InsurancePlan.InsurancePlanPlanGeneralCostComponent element) throws IOException
- Throws:
IOException
-
composeInsurancePlanInsurancePlanPlanGeneralCostComponentInner
protected void composeInsurancePlanInsurancePlanPlanGeneralCostComponentInner(InsurancePlan.InsurancePlanPlanGeneralCostComponent element) throws IOException
- Throws:
IOException
-
composeInsurancePlanInsurancePlanPlanSpecificCostComponent
protected void composeInsurancePlanInsurancePlanPlanSpecificCostComponent(String name, InsurancePlan.InsurancePlanPlanSpecificCostComponent element) throws IOException
- Throws:
IOException
-
composeInsurancePlanInsurancePlanPlanSpecificCostComponentInner
protected void composeInsurancePlanInsurancePlanPlanSpecificCostComponentInner(InsurancePlan.InsurancePlanPlanSpecificCostComponent element) throws IOException
- Throws:
IOException
-
composeInsurancePlanPlanBenefitComponent
protected void composeInsurancePlanPlanBenefitComponent(String name, InsurancePlan.PlanBenefitComponent element) throws IOException
- Throws:
IOException
-
composeInsurancePlanPlanBenefitComponentInner
protected void composeInsurancePlanPlanBenefitComponentInner(InsurancePlan.PlanBenefitComponent element) throws IOException
- Throws:
IOException
-
composeInsurancePlanPlanBenefitCostComponent
protected void composeInsurancePlanPlanBenefitCostComponent(String name, InsurancePlan.PlanBenefitCostComponent element) throws IOException
- Throws:
IOException
-
composeInsurancePlanPlanBenefitCostComponentInner
protected void composeInsurancePlanPlanBenefitCostComponentInner(InsurancePlan.PlanBenefitCostComponent element) throws IOException
- Throws:
IOException
-
composeInvoice
protected void composeInvoice(String name, Invoice element) throws IOException
- Throws:
IOException
-
composeInvoiceInner
protected void composeInvoiceInner(Invoice element) throws IOException
- Throws:
IOException
-
composeInvoiceInvoiceParticipantComponent
protected void composeInvoiceInvoiceParticipantComponent(String name, Invoice.InvoiceParticipantComponent element) throws IOException
- Throws:
IOException
-
composeInvoiceInvoiceParticipantComponentInner
protected void composeInvoiceInvoiceParticipantComponentInner(Invoice.InvoiceParticipantComponent element) throws IOException
- Throws:
IOException
-
composeInvoiceInvoiceLineItemComponent
protected void composeInvoiceInvoiceLineItemComponent(String name, Invoice.InvoiceLineItemComponent element) throws IOException
- Throws:
IOException
-
composeInvoiceInvoiceLineItemComponentInner
protected void composeInvoiceInvoiceLineItemComponentInner(Invoice.InvoiceLineItemComponent element) throws IOException
- Throws:
IOException
-
composeInvoiceInvoiceLineItemPriceComponentComponent
protected void composeInvoiceInvoiceLineItemPriceComponentComponent(String name, Invoice.InvoiceLineItemPriceComponentComponent element) throws IOException
- Throws:
IOException
-
composeInvoiceInvoiceLineItemPriceComponentComponentInner
protected void composeInvoiceInvoiceLineItemPriceComponentComponentInner(Invoice.InvoiceLineItemPriceComponentComponent element) throws IOException
- Throws:
IOException
-
composeLibrary
protected void composeLibrary(String name, Library element) throws IOException
- Throws:
IOException
-
composeLibraryInner
protected void composeLibraryInner(Library element) throws IOException
- Throws:
IOException
-
composeLinkage
protected void composeLinkage(String name, Linkage element) throws IOException
- Throws:
IOException
-
composeLinkageInner
protected void composeLinkageInner(Linkage element) throws IOException
- Throws:
IOException
-
composeLinkageLinkageItemComponent
protected void composeLinkageLinkageItemComponent(String name, Linkage.LinkageItemComponent element) throws IOException
- Throws:
IOException
-
composeLinkageLinkageItemComponentInner
protected void composeLinkageLinkageItemComponentInner(Linkage.LinkageItemComponent element) throws IOException
- Throws:
IOException
-
composeListResource
protected void composeListResource(String name, ListResource element) throws IOException
- Throws:
IOException
-
composeListResourceInner
protected void composeListResourceInner(ListResource element) throws IOException
- Throws:
IOException
-
composeListResourceListEntryComponent
protected void composeListResourceListEntryComponent(String name, ListResource.ListEntryComponent element) throws IOException
- Throws:
IOException
-
composeListResourceListEntryComponentInner
protected void composeListResourceListEntryComponentInner(ListResource.ListEntryComponent element) throws IOException
- Throws:
IOException
-
composeLocation
protected void composeLocation(String name, Location element) throws IOException
- Throws:
IOException
-
composeLocationInner
protected void composeLocationInner(Location element) throws IOException
- Throws:
IOException
-
composeLocationLocationPositionComponent
protected void composeLocationLocationPositionComponent(String name, Location.LocationPositionComponent element) throws IOException
- Throws:
IOException
-
composeLocationLocationPositionComponentInner
protected void composeLocationLocationPositionComponentInner(Location.LocationPositionComponent element) throws IOException
- Throws:
IOException
-
composeLocationLocationHoursOfOperationComponent
protected void composeLocationLocationHoursOfOperationComponent(String name, Location.LocationHoursOfOperationComponent element) throws IOException
- Throws:
IOException
-
composeLocationLocationHoursOfOperationComponentInner
protected void composeLocationLocationHoursOfOperationComponentInner(Location.LocationHoursOfOperationComponent element) throws IOException
- Throws:
IOException
-
composeMeasure
protected void composeMeasure(String name, Measure element) throws IOException
- Throws:
IOException
-
composeMeasureInner
protected void composeMeasureInner(Measure element) throws IOException
- Throws:
IOException
-
composeMeasureMeasureGroupComponent
protected void composeMeasureMeasureGroupComponent(String name, Measure.MeasureGroupComponent element) throws IOException
- Throws:
IOException
-
composeMeasureMeasureGroupComponentInner
protected void composeMeasureMeasureGroupComponentInner(Measure.MeasureGroupComponent element) throws IOException
- Throws:
IOException
-
composeMeasureMeasureGroupPopulationComponent
protected void composeMeasureMeasureGroupPopulationComponent(String name, Measure.MeasureGroupPopulationComponent element) throws IOException
- Throws:
IOException
-
composeMeasureMeasureGroupPopulationComponentInner
protected void composeMeasureMeasureGroupPopulationComponentInner(Measure.MeasureGroupPopulationComponent element) throws IOException
- Throws:
IOException
-
composeMeasureMeasureGroupStratifierComponent
protected void composeMeasureMeasureGroupStratifierComponent(String name, Measure.MeasureGroupStratifierComponent element) throws IOException
- Throws:
IOException
-
composeMeasureMeasureGroupStratifierComponentInner
protected void composeMeasureMeasureGroupStratifierComponentInner(Measure.MeasureGroupStratifierComponent element) throws IOException
- Throws:
IOException
-
composeMeasureMeasureGroupStratifierComponentComponent
protected void composeMeasureMeasureGroupStratifierComponentComponent(String name, Measure.MeasureGroupStratifierComponentComponent element) throws IOException
- Throws:
IOException
-
composeMeasureMeasureGroupStratifierComponentComponentInner
protected void composeMeasureMeasureGroupStratifierComponentComponentInner(Measure.MeasureGroupStratifierComponentComponent element) throws IOException
- Throws:
IOException
-
composeMeasureMeasureSupplementalDataComponent
protected void composeMeasureMeasureSupplementalDataComponent(String name, Measure.MeasureSupplementalDataComponent element) throws IOException
- Throws:
IOException
-
composeMeasureMeasureSupplementalDataComponentInner
protected void composeMeasureMeasureSupplementalDataComponentInner(Measure.MeasureSupplementalDataComponent element) throws IOException
- Throws:
IOException
-
composeMeasureReport
protected void composeMeasureReport(String name, MeasureReport element) throws IOException
- Throws:
IOException
-
composeMeasureReportInner
protected void composeMeasureReportInner(MeasureReport element) throws IOException
- Throws:
IOException
-
composeMeasureReportMeasureReportGroupComponent
protected void composeMeasureReportMeasureReportGroupComponent(String name, MeasureReport.MeasureReportGroupComponent element) throws IOException
- Throws:
IOException
-
composeMeasureReportMeasureReportGroupComponentInner
protected void composeMeasureReportMeasureReportGroupComponentInner(MeasureReport.MeasureReportGroupComponent element) throws IOException
- Throws:
IOException
-
composeMeasureReportMeasureReportGroupPopulationComponent
protected void composeMeasureReportMeasureReportGroupPopulationComponent(String name, MeasureReport.MeasureReportGroupPopulationComponent element) throws IOException
- Throws:
IOException
-
composeMeasureReportMeasureReportGroupPopulationComponentInner
protected void composeMeasureReportMeasureReportGroupPopulationComponentInner(MeasureReport.MeasureReportGroupPopulationComponent element) throws IOException
- Throws:
IOException
-
composeMeasureReportMeasureReportGroupStratifierComponent
protected void composeMeasureReportMeasureReportGroupStratifierComponent(String name, MeasureReport.MeasureReportGroupStratifierComponent element) throws IOException
- Throws:
IOException
-
composeMeasureReportMeasureReportGroupStratifierComponentInner
protected void composeMeasureReportMeasureReportGroupStratifierComponentInner(MeasureReport.MeasureReportGroupStratifierComponent element) throws IOException
- Throws:
IOException
-
composeMeasureReportStratifierGroupComponent
protected void composeMeasureReportStratifierGroupComponent(String name, MeasureReport.StratifierGroupComponent element) throws IOException
- Throws:
IOException
-
composeMeasureReportStratifierGroupComponentInner
protected void composeMeasureReportStratifierGroupComponentInner(MeasureReport.StratifierGroupComponent element) throws IOException
- Throws:
IOException
-
composeMeasureReportStratifierGroupComponentComponent
protected void composeMeasureReportStratifierGroupComponentComponent(String name, MeasureReport.StratifierGroupComponentComponent element) throws IOException
- Throws:
IOException
-
composeMeasureReportStratifierGroupComponentComponentInner
protected void composeMeasureReportStratifierGroupComponentComponentInner(MeasureReport.StratifierGroupComponentComponent element) throws IOException
- Throws:
IOException
-
composeMeasureReportStratifierGroupPopulationComponent
protected void composeMeasureReportStratifierGroupPopulationComponent(String name, MeasureReport.StratifierGroupPopulationComponent element) throws IOException
- Throws:
IOException
-
composeMeasureReportStratifierGroupPopulationComponentInner
protected void composeMeasureReportStratifierGroupPopulationComponentInner(MeasureReport.StratifierGroupPopulationComponent element) throws IOException
- Throws:
IOException
-
composeMedia
protected void composeMedia(String name, Media element) throws IOException
- Throws:
IOException
-
composeMediaInner
protected void composeMediaInner(Media element) throws IOException
- Throws:
IOException
-
composeMedication
protected void composeMedication(String name, Medication element) throws IOException
- Throws:
IOException
-
composeMedicationInner
protected void composeMedicationInner(Medication element) throws IOException
- Throws:
IOException
-
composeMedicationMedicationIngredientComponent
protected void composeMedicationMedicationIngredientComponent(String name, Medication.MedicationIngredientComponent element) throws IOException
- Throws:
IOException
-
composeMedicationMedicationIngredientComponentInner
protected void composeMedicationMedicationIngredientComponentInner(Medication.MedicationIngredientComponent element) throws IOException
- Throws:
IOException
-
composeMedicationMedicationBatchComponent
protected void composeMedicationMedicationBatchComponent(String name, Medication.MedicationBatchComponent element) throws IOException
- Throws:
IOException
-
composeMedicationMedicationBatchComponentInner
protected void composeMedicationMedicationBatchComponentInner(Medication.MedicationBatchComponent element) throws IOException
- Throws:
IOException
-
composeMedicationAdministration
protected void composeMedicationAdministration(String name, MedicationAdministration element) throws IOException
- Throws:
IOException
-
composeMedicationAdministrationInner
protected void composeMedicationAdministrationInner(MedicationAdministration element) throws IOException
- Throws:
IOException
-
composeMedicationAdministrationMedicationAdministrationPerformerComponent
protected void composeMedicationAdministrationMedicationAdministrationPerformerComponent(String name, MedicationAdministration.MedicationAdministrationPerformerComponent element) throws IOException
- Throws:
IOException
-
composeMedicationAdministrationMedicationAdministrationPerformerComponentInner
protected void composeMedicationAdministrationMedicationAdministrationPerformerComponentInner(MedicationAdministration.MedicationAdministrationPerformerComponent element) throws IOException
- Throws:
IOException
-
composeMedicationAdministrationMedicationAdministrationDosageComponent
protected void composeMedicationAdministrationMedicationAdministrationDosageComponent(String name, MedicationAdministration.MedicationAdministrationDosageComponent element) throws IOException
- Throws:
IOException
-
composeMedicationAdministrationMedicationAdministrationDosageComponentInner
protected void composeMedicationAdministrationMedicationAdministrationDosageComponentInner(MedicationAdministration.MedicationAdministrationDosageComponent element) throws IOException
- Throws:
IOException
-
composeMedicationDispense
protected void composeMedicationDispense(String name, MedicationDispense element) throws IOException
- Throws:
IOException
-
composeMedicationDispenseInner
protected void composeMedicationDispenseInner(MedicationDispense element) throws IOException
- Throws:
IOException
-
composeMedicationDispenseMedicationDispensePerformerComponent
protected void composeMedicationDispenseMedicationDispensePerformerComponent(String name, MedicationDispense.MedicationDispensePerformerComponent element) throws IOException
- Throws:
IOException
-
composeMedicationDispenseMedicationDispensePerformerComponentInner
protected void composeMedicationDispenseMedicationDispensePerformerComponentInner(MedicationDispense.MedicationDispensePerformerComponent element) throws IOException
- Throws:
IOException
-
composeMedicationDispenseMedicationDispenseSubstitutionComponent
protected void composeMedicationDispenseMedicationDispenseSubstitutionComponent(String name, MedicationDispense.MedicationDispenseSubstitutionComponent element) throws IOException
- Throws:
IOException
-
composeMedicationDispenseMedicationDispenseSubstitutionComponentInner
protected void composeMedicationDispenseMedicationDispenseSubstitutionComponentInner(MedicationDispense.MedicationDispenseSubstitutionComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledge
protected void composeMedicationKnowledge(String name, MedicationKnowledge element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeInner
protected void composeMedicationKnowledgeInner(MedicationKnowledge element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMedicationKnowledgeRelatedMedicationKnowledgeComponent
protected void composeMedicationKnowledgeMedicationKnowledgeRelatedMedicationKnowledgeComponent(String name, MedicationKnowledge.MedicationKnowledgeRelatedMedicationKnowledgeComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMedicationKnowledgeRelatedMedicationKnowledgeComponentInner
protected void composeMedicationKnowledgeMedicationKnowledgeRelatedMedicationKnowledgeComponentInner(MedicationKnowledge.MedicationKnowledgeRelatedMedicationKnowledgeComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMedicationKnowledgeMonographComponent
protected void composeMedicationKnowledgeMedicationKnowledgeMonographComponent(String name, MedicationKnowledge.MedicationKnowledgeMonographComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMedicationKnowledgeMonographComponentInner
protected void composeMedicationKnowledgeMedicationKnowledgeMonographComponentInner(MedicationKnowledge.MedicationKnowledgeMonographComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMedicationKnowledgeIngredientComponent
protected void composeMedicationKnowledgeMedicationKnowledgeIngredientComponent(String name, MedicationKnowledge.MedicationKnowledgeIngredientComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMedicationKnowledgeIngredientComponentInner
protected void composeMedicationKnowledgeMedicationKnowledgeIngredientComponentInner(MedicationKnowledge.MedicationKnowledgeIngredientComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMedicationKnowledgeCostComponent
protected void composeMedicationKnowledgeMedicationKnowledgeCostComponent(String name, MedicationKnowledge.MedicationKnowledgeCostComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMedicationKnowledgeCostComponentInner
protected void composeMedicationKnowledgeMedicationKnowledgeCostComponentInner(MedicationKnowledge.MedicationKnowledgeCostComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMedicationKnowledgeMonitoringProgramComponent
protected void composeMedicationKnowledgeMedicationKnowledgeMonitoringProgramComponent(String name, MedicationKnowledge.MedicationKnowledgeMonitoringProgramComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMedicationKnowledgeMonitoringProgramComponentInner
protected void composeMedicationKnowledgeMedicationKnowledgeMonitoringProgramComponentInner(MedicationKnowledge.MedicationKnowledgeMonitoringProgramComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMedicationKnowledgeAdministrationGuidelinesComponent
protected void composeMedicationKnowledgeMedicationKnowledgeAdministrationGuidelinesComponent(String name, MedicationKnowledge.MedicationKnowledgeAdministrationGuidelinesComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMedicationKnowledgeAdministrationGuidelinesComponentInner
protected void composeMedicationKnowledgeMedicationKnowledgeAdministrationGuidelinesComponentInner(MedicationKnowledge.MedicationKnowledgeAdministrationGuidelinesComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMedicationKnowledgeAdministrationGuidelinesDosageComponent
protected void composeMedicationKnowledgeMedicationKnowledgeAdministrationGuidelinesDosageComponent(String name, MedicationKnowledge.MedicationKnowledgeAdministrationGuidelinesDosageComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMedicationKnowledgeAdministrationGuidelinesDosageComponentInner
protected void composeMedicationKnowledgeMedicationKnowledgeAdministrationGuidelinesDosageComponentInner(MedicationKnowledge.MedicationKnowledgeAdministrationGuidelinesDosageComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMedicationKnowledgeAdministrationGuidelinesPatientCharacteristicsComponent
protected void composeMedicationKnowledgeMedicationKnowledgeAdministrationGuidelinesPatientCharacteristicsComponent(String name, MedicationKnowledge.MedicationKnowledgeAdministrationGuidelinesPatientCharacteristicsComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMedicationKnowledgeAdministrationGuidelinesPatientCharacteristicsComponentInner
protected void composeMedicationKnowledgeMedicationKnowledgeAdministrationGuidelinesPatientCharacteristicsComponentInner(MedicationKnowledge.MedicationKnowledgeAdministrationGuidelinesPatientCharacteristicsComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMedicationKnowledgeMedicineClassificationComponent
protected void composeMedicationKnowledgeMedicationKnowledgeMedicineClassificationComponent(String name, MedicationKnowledge.MedicationKnowledgeMedicineClassificationComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMedicationKnowledgeMedicineClassificationComponentInner
protected void composeMedicationKnowledgeMedicationKnowledgeMedicineClassificationComponentInner(MedicationKnowledge.MedicationKnowledgeMedicineClassificationComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMedicationKnowledgePackagingComponent
protected void composeMedicationKnowledgeMedicationKnowledgePackagingComponent(String name, MedicationKnowledge.MedicationKnowledgePackagingComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMedicationKnowledgePackagingComponentInner
protected void composeMedicationKnowledgeMedicationKnowledgePackagingComponentInner(MedicationKnowledge.MedicationKnowledgePackagingComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMedicationKnowledgeDrugCharacteristicComponent
protected void composeMedicationKnowledgeMedicationKnowledgeDrugCharacteristicComponent(String name, MedicationKnowledge.MedicationKnowledgeDrugCharacteristicComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMedicationKnowledgeDrugCharacteristicComponentInner
protected void composeMedicationKnowledgeMedicationKnowledgeDrugCharacteristicComponentInner(MedicationKnowledge.MedicationKnowledgeDrugCharacteristicComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMedicationKnowledgeRegulatoryComponent
protected void composeMedicationKnowledgeMedicationKnowledgeRegulatoryComponent(String name, MedicationKnowledge.MedicationKnowledgeRegulatoryComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMedicationKnowledgeRegulatoryComponentInner
protected void composeMedicationKnowledgeMedicationKnowledgeRegulatoryComponentInner(MedicationKnowledge.MedicationKnowledgeRegulatoryComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMedicationKnowledgeRegulatorySubstitutionComponent
protected void composeMedicationKnowledgeMedicationKnowledgeRegulatorySubstitutionComponent(String name, MedicationKnowledge.MedicationKnowledgeRegulatorySubstitutionComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMedicationKnowledgeRegulatorySubstitutionComponentInner
protected void composeMedicationKnowledgeMedicationKnowledgeRegulatorySubstitutionComponentInner(MedicationKnowledge.MedicationKnowledgeRegulatorySubstitutionComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMedicationKnowledgeRegulatoryScheduleComponent
protected void composeMedicationKnowledgeMedicationKnowledgeRegulatoryScheduleComponent(String name, MedicationKnowledge.MedicationKnowledgeRegulatoryScheduleComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMedicationKnowledgeRegulatoryScheduleComponentInner
protected void composeMedicationKnowledgeMedicationKnowledgeRegulatoryScheduleComponentInner(MedicationKnowledge.MedicationKnowledgeRegulatoryScheduleComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMedicationKnowledgeRegulatoryMaxDispenseComponent
protected void composeMedicationKnowledgeMedicationKnowledgeRegulatoryMaxDispenseComponent(String name, MedicationKnowledge.MedicationKnowledgeRegulatoryMaxDispenseComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMedicationKnowledgeRegulatoryMaxDispenseComponentInner
protected void composeMedicationKnowledgeMedicationKnowledgeRegulatoryMaxDispenseComponentInner(MedicationKnowledge.MedicationKnowledgeRegulatoryMaxDispenseComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMedicationKnowledgeKineticsComponent
protected void composeMedicationKnowledgeMedicationKnowledgeKineticsComponent(String name, MedicationKnowledge.MedicationKnowledgeKineticsComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMedicationKnowledgeKineticsComponentInner
protected void composeMedicationKnowledgeMedicationKnowledgeKineticsComponentInner(MedicationKnowledge.MedicationKnowledgeKineticsComponent element) throws IOException
- Throws:
IOException
-
composeMedicationRequest
protected void composeMedicationRequest(String name, MedicationRequest element) throws IOException
- Throws:
IOException
-
composeMedicationRequestInner
protected void composeMedicationRequestInner(MedicationRequest element) throws IOException
- Throws:
IOException
-
composeMedicationRequestMedicationRequestDispenseRequestComponent
protected void composeMedicationRequestMedicationRequestDispenseRequestComponent(String name, MedicationRequest.MedicationRequestDispenseRequestComponent element) throws IOException
- Throws:
IOException
-
composeMedicationRequestMedicationRequestDispenseRequestComponentInner
protected void composeMedicationRequestMedicationRequestDispenseRequestComponentInner(MedicationRequest.MedicationRequestDispenseRequestComponent element) throws IOException
- Throws:
IOException
-
composeMedicationRequestMedicationRequestDispenseRequestInitialFillComponent
protected void composeMedicationRequestMedicationRequestDispenseRequestInitialFillComponent(String name, MedicationRequest.MedicationRequestDispenseRequestInitialFillComponent element) throws IOException
- Throws:
IOException
-
composeMedicationRequestMedicationRequestDispenseRequestInitialFillComponentInner
protected void composeMedicationRequestMedicationRequestDispenseRequestInitialFillComponentInner(MedicationRequest.MedicationRequestDispenseRequestInitialFillComponent element) throws IOException
- Throws:
IOException
-
composeMedicationRequestMedicationRequestSubstitutionComponent
protected void composeMedicationRequestMedicationRequestSubstitutionComponent(String name, MedicationRequest.MedicationRequestSubstitutionComponent element) throws IOException
- Throws:
IOException
-
composeMedicationRequestMedicationRequestSubstitutionComponentInner
protected void composeMedicationRequestMedicationRequestSubstitutionComponentInner(MedicationRequest.MedicationRequestSubstitutionComponent element) throws IOException
- Throws:
IOException
-
composeMedicationStatement
protected void composeMedicationStatement(String name, MedicationStatement element) throws IOException
- Throws:
IOException
-
composeMedicationStatementInner
protected void composeMedicationStatementInner(MedicationStatement element) throws IOException
- Throws:
IOException
-
composeMedicinalProduct
protected void composeMedicinalProduct(String name, MedicinalProduct element) throws IOException
- Throws:
IOException
-
composeMedicinalProductInner
protected void composeMedicinalProductInner(MedicinalProduct element) throws IOException
- Throws:
IOException
-
composeMedicinalProductMedicinalProductNameComponent
protected void composeMedicinalProductMedicinalProductNameComponent(String name, MedicinalProduct.MedicinalProductNameComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductMedicinalProductNameComponentInner
protected void composeMedicinalProductMedicinalProductNameComponentInner(MedicinalProduct.MedicinalProductNameComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductMedicinalProductNameNamePartComponent
protected void composeMedicinalProductMedicinalProductNameNamePartComponent(String name, MedicinalProduct.MedicinalProductNameNamePartComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductMedicinalProductNameNamePartComponentInner
protected void composeMedicinalProductMedicinalProductNameNamePartComponentInner(MedicinalProduct.MedicinalProductNameNamePartComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductMedicinalProductNameCountryLanguageComponent
protected void composeMedicinalProductMedicinalProductNameCountryLanguageComponent(String name, MedicinalProduct.MedicinalProductNameCountryLanguageComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductMedicinalProductNameCountryLanguageComponentInner
protected void composeMedicinalProductMedicinalProductNameCountryLanguageComponentInner(MedicinalProduct.MedicinalProductNameCountryLanguageComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductMedicinalProductManufacturingBusinessOperationComponent
protected void composeMedicinalProductMedicinalProductManufacturingBusinessOperationComponent(String name, MedicinalProduct.MedicinalProductManufacturingBusinessOperationComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductMedicinalProductManufacturingBusinessOperationComponentInner
protected void composeMedicinalProductMedicinalProductManufacturingBusinessOperationComponentInner(MedicinalProduct.MedicinalProductManufacturingBusinessOperationComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductMedicinalProductSpecialDesignationComponent
protected void composeMedicinalProductMedicinalProductSpecialDesignationComponent(String name, MedicinalProduct.MedicinalProductSpecialDesignationComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductMedicinalProductSpecialDesignationComponentInner
protected void composeMedicinalProductMedicinalProductSpecialDesignationComponentInner(MedicinalProduct.MedicinalProductSpecialDesignationComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductAuthorization
protected void composeMedicinalProductAuthorization(String name, MedicinalProductAuthorization element) throws IOException
- Throws:
IOException
-
composeMedicinalProductAuthorizationInner
protected void composeMedicinalProductAuthorizationInner(MedicinalProductAuthorization element) throws IOException
- Throws:
IOException
-
composeMedicinalProductAuthorizationMedicinalProductAuthorizationJurisdictionalAuthorizationComponent
protected void composeMedicinalProductAuthorizationMedicinalProductAuthorizationJurisdictionalAuthorizationComponent(String name, MedicinalProductAuthorization.MedicinalProductAuthorizationJurisdictionalAuthorizationComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductAuthorizationMedicinalProductAuthorizationJurisdictionalAuthorizationComponentInner
protected void composeMedicinalProductAuthorizationMedicinalProductAuthorizationJurisdictionalAuthorizationComponentInner(MedicinalProductAuthorization.MedicinalProductAuthorizationJurisdictionalAuthorizationComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductAuthorizationMedicinalProductAuthorizationProcedureComponent
protected void composeMedicinalProductAuthorizationMedicinalProductAuthorizationProcedureComponent(String name, MedicinalProductAuthorization.MedicinalProductAuthorizationProcedureComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductAuthorizationMedicinalProductAuthorizationProcedureComponentInner
protected void composeMedicinalProductAuthorizationMedicinalProductAuthorizationProcedureComponentInner(MedicinalProductAuthorization.MedicinalProductAuthorizationProcedureComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductContraindication
protected void composeMedicinalProductContraindication(String name, MedicinalProductContraindication element) throws IOException
- Throws:
IOException
-
composeMedicinalProductContraindicationInner
protected void composeMedicinalProductContraindicationInner(MedicinalProductContraindication element) throws IOException
- Throws:
IOException
-
composeMedicinalProductContraindicationMedicinalProductContraindicationOtherTherapyComponent
protected void composeMedicinalProductContraindicationMedicinalProductContraindicationOtherTherapyComponent(String name, MedicinalProductContraindication.MedicinalProductContraindicationOtherTherapyComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductContraindicationMedicinalProductContraindicationOtherTherapyComponentInner
protected void composeMedicinalProductContraindicationMedicinalProductContraindicationOtherTherapyComponentInner(MedicinalProductContraindication.MedicinalProductContraindicationOtherTherapyComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductIndication
protected void composeMedicinalProductIndication(String name, MedicinalProductIndication element) throws IOException
- Throws:
IOException
-
composeMedicinalProductIndicationInner
protected void composeMedicinalProductIndicationInner(MedicinalProductIndication element) throws IOException
- Throws:
IOException
-
composeMedicinalProductIndicationMedicinalProductIndicationOtherTherapyComponent
protected void composeMedicinalProductIndicationMedicinalProductIndicationOtherTherapyComponent(String name, MedicinalProductIndication.MedicinalProductIndicationOtherTherapyComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductIndicationMedicinalProductIndicationOtherTherapyComponentInner
protected void composeMedicinalProductIndicationMedicinalProductIndicationOtherTherapyComponentInner(MedicinalProductIndication.MedicinalProductIndicationOtherTherapyComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductIngredient
protected void composeMedicinalProductIngredient(String name, MedicinalProductIngredient element) throws IOException
- Throws:
IOException
-
composeMedicinalProductIngredientInner
protected void composeMedicinalProductIngredientInner(MedicinalProductIngredient element) throws IOException
- Throws:
IOException
-
composeMedicinalProductIngredientMedicinalProductIngredientSpecifiedSubstanceComponent
protected void composeMedicinalProductIngredientMedicinalProductIngredientSpecifiedSubstanceComponent(String name, MedicinalProductIngredient.MedicinalProductIngredientSpecifiedSubstanceComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductIngredientMedicinalProductIngredientSpecifiedSubstanceComponentInner
protected void composeMedicinalProductIngredientMedicinalProductIngredientSpecifiedSubstanceComponentInner(MedicinalProductIngredient.MedicinalProductIngredientSpecifiedSubstanceComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductIngredientMedicinalProductIngredientSpecifiedSubstanceStrengthComponent
protected void composeMedicinalProductIngredientMedicinalProductIngredientSpecifiedSubstanceStrengthComponent(String name, MedicinalProductIngredient.MedicinalProductIngredientSpecifiedSubstanceStrengthComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductIngredientMedicinalProductIngredientSpecifiedSubstanceStrengthComponentInner
protected void composeMedicinalProductIngredientMedicinalProductIngredientSpecifiedSubstanceStrengthComponentInner(MedicinalProductIngredient.MedicinalProductIngredientSpecifiedSubstanceStrengthComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductIngredientMedicinalProductIngredientSpecifiedSubstanceStrengthReferenceStrengthComponent
protected void composeMedicinalProductIngredientMedicinalProductIngredientSpecifiedSubstanceStrengthReferenceStrengthComponent(String name, MedicinalProductIngredient.MedicinalProductIngredientSpecifiedSubstanceStrengthReferenceStrengthComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductIngredientMedicinalProductIngredientSpecifiedSubstanceStrengthReferenceStrengthComponentInner
protected void composeMedicinalProductIngredientMedicinalProductIngredientSpecifiedSubstanceStrengthReferenceStrengthComponentInner(MedicinalProductIngredient.MedicinalProductIngredientSpecifiedSubstanceStrengthReferenceStrengthComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductIngredientMedicinalProductIngredientSubstanceComponent
protected void composeMedicinalProductIngredientMedicinalProductIngredientSubstanceComponent(String name, MedicinalProductIngredient.MedicinalProductIngredientSubstanceComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductIngredientMedicinalProductIngredientSubstanceComponentInner
protected void composeMedicinalProductIngredientMedicinalProductIngredientSubstanceComponentInner(MedicinalProductIngredient.MedicinalProductIngredientSubstanceComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductInteraction
protected void composeMedicinalProductInteraction(String name, MedicinalProductInteraction element) throws IOException
- Throws:
IOException
-
composeMedicinalProductInteractionInner
protected void composeMedicinalProductInteractionInner(MedicinalProductInteraction element) throws IOException
- Throws:
IOException
-
composeMedicinalProductInteractionMedicinalProductInteractionInteractantComponent
protected void composeMedicinalProductInteractionMedicinalProductInteractionInteractantComponent(String name, MedicinalProductInteraction.MedicinalProductInteractionInteractantComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductInteractionMedicinalProductInteractionInteractantComponentInner
protected void composeMedicinalProductInteractionMedicinalProductInteractionInteractantComponentInner(MedicinalProductInteraction.MedicinalProductInteractionInteractantComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductManufactured
protected void composeMedicinalProductManufactured(String name, MedicinalProductManufactured element) throws IOException
- Throws:
IOException
-
composeMedicinalProductManufacturedInner
protected void composeMedicinalProductManufacturedInner(MedicinalProductManufactured element) throws IOException
- Throws:
IOException
-
composeMedicinalProductPackaged
protected void composeMedicinalProductPackaged(String name, MedicinalProductPackaged element) throws IOException
- Throws:
IOException
-
composeMedicinalProductPackagedInner
protected void composeMedicinalProductPackagedInner(MedicinalProductPackaged element) throws IOException
- Throws:
IOException
-
composeMedicinalProductPackagedMedicinalProductPackagedBatchIdentifierComponent
protected void composeMedicinalProductPackagedMedicinalProductPackagedBatchIdentifierComponent(String name, MedicinalProductPackaged.MedicinalProductPackagedBatchIdentifierComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductPackagedMedicinalProductPackagedBatchIdentifierComponentInner
protected void composeMedicinalProductPackagedMedicinalProductPackagedBatchIdentifierComponentInner(MedicinalProductPackaged.MedicinalProductPackagedBatchIdentifierComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductPackagedMedicinalProductPackagedPackageItemComponent
protected void composeMedicinalProductPackagedMedicinalProductPackagedPackageItemComponent(String name, MedicinalProductPackaged.MedicinalProductPackagedPackageItemComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductPackagedMedicinalProductPackagedPackageItemComponentInner
protected void composeMedicinalProductPackagedMedicinalProductPackagedPackageItemComponentInner(MedicinalProductPackaged.MedicinalProductPackagedPackageItemComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductPharmaceutical
protected void composeMedicinalProductPharmaceutical(String name, MedicinalProductPharmaceutical element) throws IOException
- Throws:
IOException
-
composeMedicinalProductPharmaceuticalInner
protected void composeMedicinalProductPharmaceuticalInner(MedicinalProductPharmaceutical element) throws IOException
- Throws:
IOException
-
composeMedicinalProductPharmaceuticalMedicinalProductPharmaceuticalCharacteristicsComponent
protected void composeMedicinalProductPharmaceuticalMedicinalProductPharmaceuticalCharacteristicsComponent(String name, MedicinalProductPharmaceutical.MedicinalProductPharmaceuticalCharacteristicsComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductPharmaceuticalMedicinalProductPharmaceuticalCharacteristicsComponentInner
protected void composeMedicinalProductPharmaceuticalMedicinalProductPharmaceuticalCharacteristicsComponentInner(MedicinalProductPharmaceutical.MedicinalProductPharmaceuticalCharacteristicsComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductPharmaceuticalMedicinalProductPharmaceuticalRouteOfAdministrationComponent
protected void composeMedicinalProductPharmaceuticalMedicinalProductPharmaceuticalRouteOfAdministrationComponent(String name, MedicinalProductPharmaceutical.MedicinalProductPharmaceuticalRouteOfAdministrationComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductPharmaceuticalMedicinalProductPharmaceuticalRouteOfAdministrationComponentInner
protected void composeMedicinalProductPharmaceuticalMedicinalProductPharmaceuticalRouteOfAdministrationComponentInner(MedicinalProductPharmaceutical.MedicinalProductPharmaceuticalRouteOfAdministrationComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductPharmaceuticalMedicinalProductPharmaceuticalRouteOfAdministrationTargetSpeciesComponent
protected void composeMedicinalProductPharmaceuticalMedicinalProductPharmaceuticalRouteOfAdministrationTargetSpeciesComponent(String name, MedicinalProductPharmaceutical.MedicinalProductPharmaceuticalRouteOfAdministrationTargetSpeciesComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductPharmaceuticalMedicinalProductPharmaceuticalRouteOfAdministrationTargetSpeciesComponentInner
protected void composeMedicinalProductPharmaceuticalMedicinalProductPharmaceuticalRouteOfAdministrationTargetSpeciesComponentInner(MedicinalProductPharmaceutical.MedicinalProductPharmaceuticalRouteOfAdministrationTargetSpeciesComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductPharmaceuticalMedicinalProductPharmaceuticalRouteOfAdministrationTargetSpeciesWithdrawalPeriodComponent
protected void composeMedicinalProductPharmaceuticalMedicinalProductPharmaceuticalRouteOfAdministrationTargetSpeciesWithdrawalPeriodComponent(String name, MedicinalProductPharmaceutical.MedicinalProductPharmaceuticalRouteOfAdministrationTargetSpeciesWithdrawalPeriodComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductPharmaceuticalMedicinalProductPharmaceuticalRouteOfAdministrationTargetSpeciesWithdrawalPeriodComponentInner
protected void composeMedicinalProductPharmaceuticalMedicinalProductPharmaceuticalRouteOfAdministrationTargetSpeciesWithdrawalPeriodComponentInner(MedicinalProductPharmaceutical.MedicinalProductPharmaceuticalRouteOfAdministrationTargetSpeciesWithdrawalPeriodComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductUndesirableEffect
protected void composeMedicinalProductUndesirableEffect(String name, MedicinalProductUndesirableEffect element) throws IOException
- Throws:
IOException
-
composeMedicinalProductUndesirableEffectInner
protected void composeMedicinalProductUndesirableEffectInner(MedicinalProductUndesirableEffect element) throws IOException
- Throws:
IOException
-
composeMessageDefinition
protected void composeMessageDefinition(String name, MessageDefinition element) throws IOException
- Throws:
IOException
-
composeMessageDefinitionInner
protected void composeMessageDefinitionInner(MessageDefinition element) throws IOException
- Throws:
IOException
-
composeMessageDefinitionMessageDefinitionFocusComponent
protected void composeMessageDefinitionMessageDefinitionFocusComponent(String name, MessageDefinition.MessageDefinitionFocusComponent element) throws IOException
- Throws:
IOException
-
composeMessageDefinitionMessageDefinitionFocusComponentInner
protected void composeMessageDefinitionMessageDefinitionFocusComponentInner(MessageDefinition.MessageDefinitionFocusComponent element) throws IOException
- Throws:
IOException
-
composeMessageDefinitionMessageDefinitionAllowedResponseComponent
protected void composeMessageDefinitionMessageDefinitionAllowedResponseComponent(String name, MessageDefinition.MessageDefinitionAllowedResponseComponent element) throws IOException
- Throws:
IOException
-
composeMessageDefinitionMessageDefinitionAllowedResponseComponentInner
protected void composeMessageDefinitionMessageDefinitionAllowedResponseComponentInner(MessageDefinition.MessageDefinitionAllowedResponseComponent element) throws IOException
- Throws:
IOException
-
composeMessageHeader
protected void composeMessageHeader(String name, MessageHeader element) throws IOException
- Throws:
IOException
-
composeMessageHeaderInner
protected void composeMessageHeaderInner(MessageHeader element) throws IOException
- Throws:
IOException
-
composeMessageHeaderMessageDestinationComponent
protected void composeMessageHeaderMessageDestinationComponent(String name, MessageHeader.MessageDestinationComponent element) throws IOException
- Throws:
IOException
-
composeMessageHeaderMessageDestinationComponentInner
protected void composeMessageHeaderMessageDestinationComponentInner(MessageHeader.MessageDestinationComponent element) throws IOException
- Throws:
IOException
-
composeMessageHeaderMessageSourceComponent
protected void composeMessageHeaderMessageSourceComponent(String name, MessageHeader.MessageSourceComponent element) throws IOException
- Throws:
IOException
-
composeMessageHeaderMessageSourceComponentInner
protected void composeMessageHeaderMessageSourceComponentInner(MessageHeader.MessageSourceComponent element) throws IOException
- Throws:
IOException
-
composeMessageHeaderMessageHeaderResponseComponent
protected void composeMessageHeaderMessageHeaderResponseComponent(String name, MessageHeader.MessageHeaderResponseComponent element) throws IOException
- Throws:
IOException
-
composeMessageHeaderMessageHeaderResponseComponentInner
protected void composeMessageHeaderMessageHeaderResponseComponentInner(MessageHeader.MessageHeaderResponseComponent element) throws IOException
- Throws:
IOException
-
composeMolecularSequence
protected void composeMolecularSequence(String name, MolecularSequence element) throws IOException
- Throws:
IOException
-
composeMolecularSequenceInner
protected void composeMolecularSequenceInner(MolecularSequence element) throws IOException
- Throws:
IOException
-
composeMolecularSequenceMolecularSequenceReferenceSeqComponent
protected void composeMolecularSequenceMolecularSequenceReferenceSeqComponent(String name, MolecularSequence.MolecularSequenceReferenceSeqComponent element) throws IOException
- Throws:
IOException
-
composeMolecularSequenceMolecularSequenceReferenceSeqComponentInner
protected void composeMolecularSequenceMolecularSequenceReferenceSeqComponentInner(MolecularSequence.MolecularSequenceReferenceSeqComponent element) throws IOException
- Throws:
IOException
-
composeMolecularSequenceMolecularSequenceVariantComponent
protected void composeMolecularSequenceMolecularSequenceVariantComponent(String name, MolecularSequence.MolecularSequenceVariantComponent element) throws IOException
- Throws:
IOException
-
composeMolecularSequenceMolecularSequenceVariantComponentInner
protected void composeMolecularSequenceMolecularSequenceVariantComponentInner(MolecularSequence.MolecularSequenceVariantComponent element) throws IOException
- Throws:
IOException
-
composeMolecularSequenceMolecularSequenceQualityComponent
protected void composeMolecularSequenceMolecularSequenceQualityComponent(String name, MolecularSequence.MolecularSequenceQualityComponent element) throws IOException
- Throws:
IOException
-
composeMolecularSequenceMolecularSequenceQualityComponentInner
protected void composeMolecularSequenceMolecularSequenceQualityComponentInner(MolecularSequence.MolecularSequenceQualityComponent element) throws IOException
- Throws:
IOException
-
composeMolecularSequenceMolecularSequenceQualityRocComponent
protected void composeMolecularSequenceMolecularSequenceQualityRocComponent(String name, MolecularSequence.MolecularSequenceQualityRocComponent element) throws IOException
- Throws:
IOException
-
composeMolecularSequenceMolecularSequenceQualityRocComponentInner
protected void composeMolecularSequenceMolecularSequenceQualityRocComponentInner(MolecularSequence.MolecularSequenceQualityRocComponent element) throws IOException
- Throws:
IOException
-
composeMolecularSequenceMolecularSequenceRepositoryComponent
protected void composeMolecularSequenceMolecularSequenceRepositoryComponent(String name, MolecularSequence.MolecularSequenceRepositoryComponent element) throws IOException
- Throws:
IOException
-
composeMolecularSequenceMolecularSequenceRepositoryComponentInner
protected void composeMolecularSequenceMolecularSequenceRepositoryComponentInner(MolecularSequence.MolecularSequenceRepositoryComponent element) throws IOException
- Throws:
IOException
-
composeMolecularSequenceMolecularSequenceStructureVariantComponent
protected void composeMolecularSequenceMolecularSequenceStructureVariantComponent(String name, MolecularSequence.MolecularSequenceStructureVariantComponent element) throws IOException
- Throws:
IOException
-
composeMolecularSequenceMolecularSequenceStructureVariantComponentInner
protected void composeMolecularSequenceMolecularSequenceStructureVariantComponentInner(MolecularSequence.MolecularSequenceStructureVariantComponent element) throws IOException
- Throws:
IOException
-
composeMolecularSequenceMolecularSequenceStructureVariantOuterComponent
protected void composeMolecularSequenceMolecularSequenceStructureVariantOuterComponent(String name, MolecularSequence.MolecularSequenceStructureVariantOuterComponent element) throws IOException
- Throws:
IOException
-
composeMolecularSequenceMolecularSequenceStructureVariantOuterComponentInner
protected void composeMolecularSequenceMolecularSequenceStructureVariantOuterComponentInner(MolecularSequence.MolecularSequenceStructureVariantOuterComponent element) throws IOException
- Throws:
IOException
-
composeMolecularSequenceMolecularSequenceStructureVariantInnerComponent
protected void composeMolecularSequenceMolecularSequenceStructureVariantInnerComponent(String name, MolecularSequence.MolecularSequenceStructureVariantInnerComponent element) throws IOException
- Throws:
IOException
-
composeMolecularSequenceMolecularSequenceStructureVariantInnerComponentInner
protected void composeMolecularSequenceMolecularSequenceStructureVariantInnerComponentInner(MolecularSequence.MolecularSequenceStructureVariantInnerComponent element) throws IOException
- Throws:
IOException
-
composeNamingSystem
protected void composeNamingSystem(String name, NamingSystem element) throws IOException
- Throws:
IOException
-
composeNamingSystemInner
protected void composeNamingSystemInner(NamingSystem element) throws IOException
- Throws:
IOException
-
composeNamingSystemNamingSystemUniqueIdComponent
protected void composeNamingSystemNamingSystemUniqueIdComponent(String name, NamingSystem.NamingSystemUniqueIdComponent element) throws IOException
- Throws:
IOException
-
composeNamingSystemNamingSystemUniqueIdComponentInner
protected void composeNamingSystemNamingSystemUniqueIdComponentInner(NamingSystem.NamingSystemUniqueIdComponent element) throws IOException
- Throws:
IOException
-
composeNutritionOrder
protected void composeNutritionOrder(String name, NutritionOrder element) throws IOException
- Throws:
IOException
-
composeNutritionOrderInner
protected void composeNutritionOrderInner(NutritionOrder element) throws IOException
- Throws:
IOException
-
composeNutritionOrderNutritionOrderOralDietComponent
protected void composeNutritionOrderNutritionOrderOralDietComponent(String name, NutritionOrder.NutritionOrderOralDietComponent element) throws IOException
- Throws:
IOException
-
composeNutritionOrderNutritionOrderOralDietComponentInner
protected void composeNutritionOrderNutritionOrderOralDietComponentInner(NutritionOrder.NutritionOrderOralDietComponent element) throws IOException
- Throws:
IOException
-
composeNutritionOrderNutritionOrderOralDietNutrientComponent
protected void composeNutritionOrderNutritionOrderOralDietNutrientComponent(String name, NutritionOrder.NutritionOrderOralDietNutrientComponent element) throws IOException
- Throws:
IOException
-
composeNutritionOrderNutritionOrderOralDietNutrientComponentInner
protected void composeNutritionOrderNutritionOrderOralDietNutrientComponentInner(NutritionOrder.NutritionOrderOralDietNutrientComponent element) throws IOException
- Throws:
IOException
-
composeNutritionOrderNutritionOrderOralDietTextureComponent
protected void composeNutritionOrderNutritionOrderOralDietTextureComponent(String name, NutritionOrder.NutritionOrderOralDietTextureComponent element) throws IOException
- Throws:
IOException
-
composeNutritionOrderNutritionOrderOralDietTextureComponentInner
protected void composeNutritionOrderNutritionOrderOralDietTextureComponentInner(NutritionOrder.NutritionOrderOralDietTextureComponent element) throws IOException
- Throws:
IOException
-
composeNutritionOrderNutritionOrderSupplementComponent
protected void composeNutritionOrderNutritionOrderSupplementComponent(String name, NutritionOrder.NutritionOrderSupplementComponent element) throws IOException
- Throws:
IOException
-
composeNutritionOrderNutritionOrderSupplementComponentInner
protected void composeNutritionOrderNutritionOrderSupplementComponentInner(NutritionOrder.NutritionOrderSupplementComponent element) throws IOException
- Throws:
IOException
-
composeNutritionOrderNutritionOrderEnteralFormulaComponent
protected void composeNutritionOrderNutritionOrderEnteralFormulaComponent(String name, NutritionOrder.NutritionOrderEnteralFormulaComponent element) throws IOException
- Throws:
IOException
-
composeNutritionOrderNutritionOrderEnteralFormulaComponentInner
protected void composeNutritionOrderNutritionOrderEnteralFormulaComponentInner(NutritionOrder.NutritionOrderEnteralFormulaComponent element) throws IOException
- Throws:
IOException
-
composeNutritionOrderNutritionOrderEnteralFormulaAdministrationComponent
protected void composeNutritionOrderNutritionOrderEnteralFormulaAdministrationComponent(String name, NutritionOrder.NutritionOrderEnteralFormulaAdministrationComponent element) throws IOException
- Throws:
IOException
-
composeNutritionOrderNutritionOrderEnteralFormulaAdministrationComponentInner
protected void composeNutritionOrderNutritionOrderEnteralFormulaAdministrationComponentInner(NutritionOrder.NutritionOrderEnteralFormulaAdministrationComponent element) throws IOException
- Throws:
IOException
-
composeObservation
protected void composeObservation(String name, Observation element) throws IOException
- Throws:
IOException
-
composeObservationInner
protected void composeObservationInner(Observation element) throws IOException
- Throws:
IOException
-
composeObservationObservationReferenceRangeComponent
protected void composeObservationObservationReferenceRangeComponent(String name, Observation.ObservationReferenceRangeComponent element) throws IOException
- Throws:
IOException
-
composeObservationObservationReferenceRangeComponentInner
protected void composeObservationObservationReferenceRangeComponentInner(Observation.ObservationReferenceRangeComponent element) throws IOException
- Throws:
IOException
-
composeObservationObservationComponentComponent
protected void composeObservationObservationComponentComponent(String name, Observation.ObservationComponentComponent element) throws IOException
- Throws:
IOException
-
composeObservationObservationComponentComponentInner
protected void composeObservationObservationComponentComponentInner(Observation.ObservationComponentComponent element) throws IOException
- Throws:
IOException
-
composeObservationDefinition
protected void composeObservationDefinition(String name, ObservationDefinition element) throws IOException
- Throws:
IOException
-
composeObservationDefinitionInner
protected void composeObservationDefinitionInner(ObservationDefinition element) throws IOException
- Throws:
IOException
-
composeObservationDefinitionObservationDefinitionQuantitativeDetailsComponent
protected void composeObservationDefinitionObservationDefinitionQuantitativeDetailsComponent(String name, ObservationDefinition.ObservationDefinitionQuantitativeDetailsComponent element) throws IOException
- Throws:
IOException
-
composeObservationDefinitionObservationDefinitionQuantitativeDetailsComponentInner
protected void composeObservationDefinitionObservationDefinitionQuantitativeDetailsComponentInner(ObservationDefinition.ObservationDefinitionQuantitativeDetailsComponent element) throws IOException
- Throws:
IOException
-
composeObservationDefinitionObservationDefinitionQualifiedIntervalComponent
protected void composeObservationDefinitionObservationDefinitionQualifiedIntervalComponent(String name, ObservationDefinition.ObservationDefinitionQualifiedIntervalComponent element) throws IOException
- Throws:
IOException
-
composeObservationDefinitionObservationDefinitionQualifiedIntervalComponentInner
protected void composeObservationDefinitionObservationDefinitionQualifiedIntervalComponentInner(ObservationDefinition.ObservationDefinitionQualifiedIntervalComponent element) throws IOException
- Throws:
IOException
-
composeOperationDefinition
protected void composeOperationDefinition(String name, OperationDefinition element) throws IOException
- Throws:
IOException
-
composeOperationDefinitionInner
protected void composeOperationDefinitionInner(OperationDefinition element) throws IOException
- Throws:
IOException
-
composeOperationDefinitionOperationDefinitionParameterComponent
protected void composeOperationDefinitionOperationDefinitionParameterComponent(String name, OperationDefinition.OperationDefinitionParameterComponent element) throws IOException
- Throws:
IOException
-
composeOperationDefinitionOperationDefinitionParameterComponentInner
protected void composeOperationDefinitionOperationDefinitionParameterComponentInner(OperationDefinition.OperationDefinitionParameterComponent element) throws IOException
- Throws:
IOException
-
composeOperationDefinitionOperationDefinitionParameterBindingComponent
protected void composeOperationDefinitionOperationDefinitionParameterBindingComponent(String name, OperationDefinition.OperationDefinitionParameterBindingComponent element) throws IOException
- Throws:
IOException
-
composeOperationDefinitionOperationDefinitionParameterBindingComponentInner
protected void composeOperationDefinitionOperationDefinitionParameterBindingComponentInner(OperationDefinition.OperationDefinitionParameterBindingComponent element) throws IOException
- Throws:
IOException
-
composeOperationDefinitionOperationDefinitionParameterReferencedFromComponent
protected void composeOperationDefinitionOperationDefinitionParameterReferencedFromComponent(String name, OperationDefinition.OperationDefinitionParameterReferencedFromComponent element) throws IOException
- Throws:
IOException
-
composeOperationDefinitionOperationDefinitionParameterReferencedFromComponentInner
protected void composeOperationDefinitionOperationDefinitionParameterReferencedFromComponentInner(OperationDefinition.OperationDefinitionParameterReferencedFromComponent element) throws IOException
- Throws:
IOException
-
composeOperationDefinitionOperationDefinitionOverloadComponent
protected void composeOperationDefinitionOperationDefinitionOverloadComponent(String name, OperationDefinition.OperationDefinitionOverloadComponent element) throws IOException
- Throws:
IOException
-
composeOperationDefinitionOperationDefinitionOverloadComponentInner
protected void composeOperationDefinitionOperationDefinitionOverloadComponentInner(OperationDefinition.OperationDefinitionOverloadComponent element) throws IOException
- Throws:
IOException
-
composeOperationOutcome
protected void composeOperationOutcome(String name, OperationOutcome element) throws IOException
- Throws:
IOException
-
composeOperationOutcomeInner
protected void composeOperationOutcomeInner(OperationOutcome element) throws IOException
- Throws:
IOException
-
composeOperationOutcomeOperationOutcomeIssueComponent
protected void composeOperationOutcomeOperationOutcomeIssueComponent(String name, OperationOutcome.OperationOutcomeIssueComponent element) throws IOException
- Throws:
IOException
-
composeOperationOutcomeOperationOutcomeIssueComponentInner
protected void composeOperationOutcomeOperationOutcomeIssueComponentInner(OperationOutcome.OperationOutcomeIssueComponent element) throws IOException
- Throws:
IOException
-
composeOrganization
protected void composeOrganization(String name, Organization element) throws IOException
- Throws:
IOException
-
composeOrganizationInner
protected void composeOrganizationInner(Organization element) throws IOException
- Throws:
IOException
-
composeOrganizationOrganizationContactComponent
protected void composeOrganizationOrganizationContactComponent(String name, Organization.OrganizationContactComponent element) throws IOException
- Throws:
IOException
-
composeOrganizationOrganizationContactComponentInner
protected void composeOrganizationOrganizationContactComponentInner(Organization.OrganizationContactComponent element) throws IOException
- Throws:
IOException
-
composeOrganizationAffiliation
protected void composeOrganizationAffiliation(String name, OrganizationAffiliation element) throws IOException
- Throws:
IOException
-
composeOrganizationAffiliationInner
protected void composeOrganizationAffiliationInner(OrganizationAffiliation element) throws IOException
- Throws:
IOException
-
composePatient
protected void composePatient(String name, Patient element) throws IOException
- Throws:
IOException
-
composePatientInner
protected void composePatientInner(Patient element) throws IOException
- Throws:
IOException
-
composePatientContactComponent
protected void composePatientContactComponent(String name, Patient.ContactComponent element) throws IOException
- Throws:
IOException
-
composePatientContactComponentInner
protected void composePatientContactComponentInner(Patient.ContactComponent element) throws IOException
- Throws:
IOException
-
composePatientPatientCommunicationComponent
protected void composePatientPatientCommunicationComponent(String name, Patient.PatientCommunicationComponent element) throws IOException
- Throws:
IOException
-
composePatientPatientCommunicationComponentInner
protected void composePatientPatientCommunicationComponentInner(Patient.PatientCommunicationComponent element) throws IOException
- Throws:
IOException
-
composePatientPatientLinkComponent
protected void composePatientPatientLinkComponent(String name, Patient.PatientLinkComponent element) throws IOException
- Throws:
IOException
-
composePatientPatientLinkComponentInner
protected void composePatientPatientLinkComponentInner(Patient.PatientLinkComponent element) throws IOException
- Throws:
IOException
-
composePaymentNotice
protected void composePaymentNotice(String name, PaymentNotice element) throws IOException
- Throws:
IOException
-
composePaymentNoticeInner
protected void composePaymentNoticeInner(PaymentNotice element) throws IOException
- Throws:
IOException
-
composePaymentReconciliation
protected void composePaymentReconciliation(String name, PaymentReconciliation element) throws IOException
- Throws:
IOException
-
composePaymentReconciliationInner
protected void composePaymentReconciliationInner(PaymentReconciliation element) throws IOException
- Throws:
IOException
-
composePaymentReconciliationDetailsComponent
protected void composePaymentReconciliationDetailsComponent(String name, PaymentReconciliation.DetailsComponent element) throws IOException
- Throws:
IOException
-
composePaymentReconciliationDetailsComponentInner
protected void composePaymentReconciliationDetailsComponentInner(PaymentReconciliation.DetailsComponent element) throws IOException
- Throws:
IOException
-
composePaymentReconciliationNotesComponent
protected void composePaymentReconciliationNotesComponent(String name, PaymentReconciliation.NotesComponent element) throws IOException
- Throws:
IOException
-
composePaymentReconciliationNotesComponentInner
protected void composePaymentReconciliationNotesComponentInner(PaymentReconciliation.NotesComponent element) throws IOException
- Throws:
IOException
-
composePerson
protected void composePerson(String name, Person element) throws IOException
- Throws:
IOException
-
composePersonInner
protected void composePersonInner(Person element) throws IOException
- Throws:
IOException
-
composePersonPersonLinkComponent
protected void composePersonPersonLinkComponent(String name, Person.PersonLinkComponent element) throws IOException
- Throws:
IOException
-
composePersonPersonLinkComponentInner
protected void composePersonPersonLinkComponentInner(Person.PersonLinkComponent element) throws IOException
- Throws:
IOException
-
composePlanDefinition
protected void composePlanDefinition(String name, PlanDefinition element) throws IOException
- Throws:
IOException
-
composePlanDefinitionInner
protected void composePlanDefinitionInner(PlanDefinition element) throws IOException
- Throws:
IOException
-
composePlanDefinitionPlanDefinitionGoalComponent
protected void composePlanDefinitionPlanDefinitionGoalComponent(String name, PlanDefinition.PlanDefinitionGoalComponent element) throws IOException
- Throws:
IOException
-
composePlanDefinitionPlanDefinitionGoalComponentInner
protected void composePlanDefinitionPlanDefinitionGoalComponentInner(PlanDefinition.PlanDefinitionGoalComponent element) throws IOException
- Throws:
IOException
-
composePlanDefinitionPlanDefinitionGoalTargetComponent
protected void composePlanDefinitionPlanDefinitionGoalTargetComponent(String name, PlanDefinition.PlanDefinitionGoalTargetComponent element) throws IOException
- Throws:
IOException
-
composePlanDefinitionPlanDefinitionGoalTargetComponentInner
protected void composePlanDefinitionPlanDefinitionGoalTargetComponentInner(PlanDefinition.PlanDefinitionGoalTargetComponent element) throws IOException
- Throws:
IOException
-
composePlanDefinitionPlanDefinitionActionComponent
protected void composePlanDefinitionPlanDefinitionActionComponent(String name, PlanDefinition.PlanDefinitionActionComponent element) throws IOException
- Throws:
IOException
-
composePlanDefinitionPlanDefinitionActionComponentInner
protected void composePlanDefinitionPlanDefinitionActionComponentInner(PlanDefinition.PlanDefinitionActionComponent element) throws IOException
- Throws:
IOException
-
composePlanDefinitionPlanDefinitionActionConditionComponent
protected void composePlanDefinitionPlanDefinitionActionConditionComponent(String name, PlanDefinition.PlanDefinitionActionConditionComponent element) throws IOException
- Throws:
IOException
-
composePlanDefinitionPlanDefinitionActionConditionComponentInner
protected void composePlanDefinitionPlanDefinitionActionConditionComponentInner(PlanDefinition.PlanDefinitionActionConditionComponent element) throws IOException
- Throws:
IOException
-
composePlanDefinitionPlanDefinitionActionRelatedActionComponent
protected void composePlanDefinitionPlanDefinitionActionRelatedActionComponent(String name, PlanDefinition.PlanDefinitionActionRelatedActionComponent element) throws IOException
- Throws:
IOException
-
composePlanDefinitionPlanDefinitionActionRelatedActionComponentInner
protected void composePlanDefinitionPlanDefinitionActionRelatedActionComponentInner(PlanDefinition.PlanDefinitionActionRelatedActionComponent element) throws IOException
- Throws:
IOException
-
composePlanDefinitionPlanDefinitionActionParticipantComponent
protected void composePlanDefinitionPlanDefinitionActionParticipantComponent(String name, PlanDefinition.PlanDefinitionActionParticipantComponent element) throws IOException
- Throws:
IOException
-
composePlanDefinitionPlanDefinitionActionParticipantComponentInner
protected void composePlanDefinitionPlanDefinitionActionParticipantComponentInner(PlanDefinition.PlanDefinitionActionParticipantComponent element) throws IOException
- Throws:
IOException
-
composePlanDefinitionPlanDefinitionActionDynamicValueComponent
protected void composePlanDefinitionPlanDefinitionActionDynamicValueComponent(String name, PlanDefinition.PlanDefinitionActionDynamicValueComponent element) throws IOException
- Throws:
IOException
-
composePlanDefinitionPlanDefinitionActionDynamicValueComponentInner
protected void composePlanDefinitionPlanDefinitionActionDynamicValueComponentInner(PlanDefinition.PlanDefinitionActionDynamicValueComponent element) throws IOException
- Throws:
IOException
-
composePractitioner
protected void composePractitioner(String name, Practitioner element) throws IOException
- Throws:
IOException
-
composePractitionerInner
protected void composePractitionerInner(Practitioner element) throws IOException
- Throws:
IOException
-
composePractitionerPractitionerQualificationComponent
protected void composePractitionerPractitionerQualificationComponent(String name, Practitioner.PractitionerQualificationComponent element) throws IOException
- Throws:
IOException
-
composePractitionerPractitionerQualificationComponentInner
protected void composePractitionerPractitionerQualificationComponentInner(Practitioner.PractitionerQualificationComponent element) throws IOException
- Throws:
IOException
-
composePractitionerRole
protected void composePractitionerRole(String name, PractitionerRole element) throws IOException
- Throws:
IOException
-
composePractitionerRoleInner
protected void composePractitionerRoleInner(PractitionerRole element) throws IOException
- Throws:
IOException
-
composePractitionerRolePractitionerRoleAvailableTimeComponent
protected void composePractitionerRolePractitionerRoleAvailableTimeComponent(String name, PractitionerRole.PractitionerRoleAvailableTimeComponent element) throws IOException
- Throws:
IOException
-
composePractitionerRolePractitionerRoleAvailableTimeComponentInner
protected void composePractitionerRolePractitionerRoleAvailableTimeComponentInner(PractitionerRole.PractitionerRoleAvailableTimeComponent element) throws IOException
- Throws:
IOException
-
composePractitionerRolePractitionerRoleNotAvailableComponent
protected void composePractitionerRolePractitionerRoleNotAvailableComponent(String name, PractitionerRole.PractitionerRoleNotAvailableComponent element) throws IOException
- Throws:
IOException
-
composePractitionerRolePractitionerRoleNotAvailableComponentInner
protected void composePractitionerRolePractitionerRoleNotAvailableComponentInner(PractitionerRole.PractitionerRoleNotAvailableComponent element) throws IOException
- Throws:
IOException
-
composeProcedure
protected void composeProcedure(String name, Procedure element) throws IOException
- Throws:
IOException
-
composeProcedureInner
protected void composeProcedureInner(Procedure element) throws IOException
- Throws:
IOException
-
composeProcedureProcedurePerformerComponent
protected void composeProcedureProcedurePerformerComponent(String name, Procedure.ProcedurePerformerComponent element) throws IOException
- Throws:
IOException
-
composeProcedureProcedurePerformerComponentInner
protected void composeProcedureProcedurePerformerComponentInner(Procedure.ProcedurePerformerComponent element) throws IOException
- Throws:
IOException
-
composeProcedureProcedureFocalDeviceComponent
protected void composeProcedureProcedureFocalDeviceComponent(String name, Procedure.ProcedureFocalDeviceComponent element) throws IOException
- Throws:
IOException
-
composeProcedureProcedureFocalDeviceComponentInner
protected void composeProcedureProcedureFocalDeviceComponentInner(Procedure.ProcedureFocalDeviceComponent element) throws IOException
- Throws:
IOException
-
composeProvenance
protected void composeProvenance(String name, Provenance element) throws IOException
- Throws:
IOException
-
composeProvenanceInner
protected void composeProvenanceInner(Provenance element) throws IOException
- Throws:
IOException
-
composeProvenanceProvenanceAgentComponent
protected void composeProvenanceProvenanceAgentComponent(String name, Provenance.ProvenanceAgentComponent element) throws IOException
- Throws:
IOException
-
composeProvenanceProvenanceAgentComponentInner
protected void composeProvenanceProvenanceAgentComponentInner(Provenance.ProvenanceAgentComponent element) throws IOException
- Throws:
IOException
-
composeProvenanceProvenanceEntityComponent
protected void composeProvenanceProvenanceEntityComponent(String name, Provenance.ProvenanceEntityComponent element) throws IOException
- Throws:
IOException
-
composeProvenanceProvenanceEntityComponentInner
protected void composeProvenanceProvenanceEntityComponentInner(Provenance.ProvenanceEntityComponent element) throws IOException
- Throws:
IOException
-
composeQuestionnaire
protected void composeQuestionnaire(String name, Questionnaire element) throws IOException
- Throws:
IOException
-
composeQuestionnaireInner
protected void composeQuestionnaireInner(Questionnaire element) throws IOException
- Throws:
IOException
-
composeQuestionnaireQuestionnaireItemComponent
protected void composeQuestionnaireQuestionnaireItemComponent(String name, Questionnaire.QuestionnaireItemComponent element) throws IOException
- Throws:
IOException
-
composeQuestionnaireQuestionnaireItemComponentInner
protected void composeQuestionnaireQuestionnaireItemComponentInner(Questionnaire.QuestionnaireItemComponent element) throws IOException
- Throws:
IOException
-
composeQuestionnaireQuestionnaireItemEnableWhenComponent
protected void composeQuestionnaireQuestionnaireItemEnableWhenComponent(String name, Questionnaire.QuestionnaireItemEnableWhenComponent element) throws IOException
- Throws:
IOException
-
composeQuestionnaireQuestionnaireItemEnableWhenComponentInner
protected void composeQuestionnaireQuestionnaireItemEnableWhenComponentInner(Questionnaire.QuestionnaireItemEnableWhenComponent element) throws IOException
- Throws:
IOException
-
composeQuestionnaireQuestionnaireItemAnswerOptionComponent
protected void composeQuestionnaireQuestionnaireItemAnswerOptionComponent(String name, Questionnaire.QuestionnaireItemAnswerOptionComponent element) throws IOException
- Throws:
IOException
-
composeQuestionnaireQuestionnaireItemAnswerOptionComponentInner
protected void composeQuestionnaireQuestionnaireItemAnswerOptionComponentInner(Questionnaire.QuestionnaireItemAnswerOptionComponent element) throws IOException
- Throws:
IOException
-
composeQuestionnaireQuestionnaireItemInitialComponent
protected void composeQuestionnaireQuestionnaireItemInitialComponent(String name, Questionnaire.QuestionnaireItemInitialComponent element) throws IOException
- Throws:
IOException
-
composeQuestionnaireQuestionnaireItemInitialComponentInner
protected void composeQuestionnaireQuestionnaireItemInitialComponentInner(Questionnaire.QuestionnaireItemInitialComponent element) throws IOException
- Throws:
IOException
-
composeQuestionnaireResponse
protected void composeQuestionnaireResponse(String name, QuestionnaireResponse element) throws IOException
- Throws:
IOException
-
composeQuestionnaireResponseInner
protected void composeQuestionnaireResponseInner(QuestionnaireResponse element) throws IOException
- Throws:
IOException
-
composeQuestionnaireResponseQuestionnaireResponseItemComponent
protected void composeQuestionnaireResponseQuestionnaireResponseItemComponent(String name, QuestionnaireResponse.QuestionnaireResponseItemComponent element) throws IOException
- Throws:
IOException
-
composeQuestionnaireResponseQuestionnaireResponseItemComponentInner
protected void composeQuestionnaireResponseQuestionnaireResponseItemComponentInner(QuestionnaireResponse.QuestionnaireResponseItemComponent element) throws IOException
- Throws:
IOException
-
composeQuestionnaireResponseQuestionnaireResponseItemAnswerComponent
protected void composeQuestionnaireResponseQuestionnaireResponseItemAnswerComponent(String name, QuestionnaireResponse.QuestionnaireResponseItemAnswerComponent element) throws IOException
- Throws:
IOException
-
composeQuestionnaireResponseQuestionnaireResponseItemAnswerComponentInner
protected void composeQuestionnaireResponseQuestionnaireResponseItemAnswerComponentInner(QuestionnaireResponse.QuestionnaireResponseItemAnswerComponent element) throws IOException
- Throws:
IOException
-
composeRelatedPerson
protected void composeRelatedPerson(String name, RelatedPerson element) throws IOException
- Throws:
IOException
-
composeRelatedPersonInner
protected void composeRelatedPersonInner(RelatedPerson element) throws IOException
- Throws:
IOException
-
composeRelatedPersonRelatedPersonCommunicationComponent
protected void composeRelatedPersonRelatedPersonCommunicationComponent(String name, RelatedPerson.RelatedPersonCommunicationComponent element) throws IOException
- Throws:
IOException
-
composeRelatedPersonRelatedPersonCommunicationComponentInner
protected void composeRelatedPersonRelatedPersonCommunicationComponentInner(RelatedPerson.RelatedPersonCommunicationComponent element) throws IOException
- Throws:
IOException
-
composeRequestGroup
protected void composeRequestGroup(String name, RequestGroup element) throws IOException
- Throws:
IOException
-
composeRequestGroupInner
protected void composeRequestGroupInner(RequestGroup element) throws IOException
- Throws:
IOException
-
composeRequestGroupRequestGroupActionComponent
protected void composeRequestGroupRequestGroupActionComponent(String name, RequestGroup.RequestGroupActionComponent element) throws IOException
- Throws:
IOException
-
composeRequestGroupRequestGroupActionComponentInner
protected void composeRequestGroupRequestGroupActionComponentInner(RequestGroup.RequestGroupActionComponent element) throws IOException
- Throws:
IOException
-
composeRequestGroupRequestGroupActionConditionComponent
protected void composeRequestGroupRequestGroupActionConditionComponent(String name, RequestGroup.RequestGroupActionConditionComponent element) throws IOException
- Throws:
IOException
-
composeRequestGroupRequestGroupActionConditionComponentInner
protected void composeRequestGroupRequestGroupActionConditionComponentInner(RequestGroup.RequestGroupActionConditionComponent element) throws IOException
- Throws:
IOException
-
composeRequestGroupRequestGroupActionRelatedActionComponent
protected void composeRequestGroupRequestGroupActionRelatedActionComponent(String name, RequestGroup.RequestGroupActionRelatedActionComponent element) throws IOException
- Throws:
IOException
-
composeRequestGroupRequestGroupActionRelatedActionComponentInner
protected void composeRequestGroupRequestGroupActionRelatedActionComponentInner(RequestGroup.RequestGroupActionRelatedActionComponent element) throws IOException
- Throws:
IOException
-
composeResearchDefinition
protected void composeResearchDefinition(String name, ResearchDefinition element) throws IOException
- Throws:
IOException
-
composeResearchDefinitionInner
protected void composeResearchDefinitionInner(ResearchDefinition element) throws IOException
- Throws:
IOException
-
composeResearchElementDefinition
protected void composeResearchElementDefinition(String name, ResearchElementDefinition element) throws IOException
- Throws:
IOException
-
composeResearchElementDefinitionInner
protected void composeResearchElementDefinitionInner(ResearchElementDefinition element) throws IOException
- Throws:
IOException
-
composeResearchElementDefinitionResearchElementDefinitionCharacteristicComponent
protected void composeResearchElementDefinitionResearchElementDefinitionCharacteristicComponent(String name, ResearchElementDefinition.ResearchElementDefinitionCharacteristicComponent element) throws IOException
- Throws:
IOException
-
composeResearchElementDefinitionResearchElementDefinitionCharacteristicComponentInner
protected void composeResearchElementDefinitionResearchElementDefinitionCharacteristicComponentInner(ResearchElementDefinition.ResearchElementDefinitionCharacteristicComponent element) throws IOException
- Throws:
IOException
-
composeResearchStudy
protected void composeResearchStudy(String name, ResearchStudy element) throws IOException
- Throws:
IOException
-
composeResearchStudyInner
protected void composeResearchStudyInner(ResearchStudy element) throws IOException
- Throws:
IOException
-
composeResearchStudyResearchStudyArmComponent
protected void composeResearchStudyResearchStudyArmComponent(String name, ResearchStudy.ResearchStudyArmComponent element) throws IOException
- Throws:
IOException
-
composeResearchStudyResearchStudyArmComponentInner
protected void composeResearchStudyResearchStudyArmComponentInner(ResearchStudy.ResearchStudyArmComponent element) throws IOException
- Throws:
IOException
-
composeResearchStudyResearchStudyObjectiveComponent
protected void composeResearchStudyResearchStudyObjectiveComponent(String name, ResearchStudy.ResearchStudyObjectiveComponent element) throws IOException
- Throws:
IOException
-
composeResearchStudyResearchStudyObjectiveComponentInner
protected void composeResearchStudyResearchStudyObjectiveComponentInner(ResearchStudy.ResearchStudyObjectiveComponent element) throws IOException
- Throws:
IOException
-
composeResearchSubject
protected void composeResearchSubject(String name, ResearchSubject element) throws IOException
- Throws:
IOException
-
composeResearchSubjectInner
protected void composeResearchSubjectInner(ResearchSubject element) throws IOException
- Throws:
IOException
-
composeRiskAssessment
protected void composeRiskAssessment(String name, RiskAssessment element) throws IOException
- Throws:
IOException
-
composeRiskAssessmentInner
protected void composeRiskAssessmentInner(RiskAssessment element) throws IOException
- Throws:
IOException
-
composeRiskAssessmentRiskAssessmentPredictionComponent
protected void composeRiskAssessmentRiskAssessmentPredictionComponent(String name, RiskAssessment.RiskAssessmentPredictionComponent element) throws IOException
- Throws:
IOException
-
composeRiskAssessmentRiskAssessmentPredictionComponentInner
protected void composeRiskAssessmentRiskAssessmentPredictionComponentInner(RiskAssessment.RiskAssessmentPredictionComponent element) throws IOException
- Throws:
IOException
-
composeRiskEvidenceSynthesis
protected void composeRiskEvidenceSynthesis(String name, RiskEvidenceSynthesis element) throws IOException
- Throws:
IOException
-
composeRiskEvidenceSynthesisInner
protected void composeRiskEvidenceSynthesisInner(RiskEvidenceSynthesis element) throws IOException
- Throws:
IOException
-
composeRiskEvidenceSynthesisRiskEvidenceSynthesisSampleSizeComponent
protected void composeRiskEvidenceSynthesisRiskEvidenceSynthesisSampleSizeComponent(String name, RiskEvidenceSynthesis.RiskEvidenceSynthesisSampleSizeComponent element) throws IOException
- Throws:
IOException
-
composeRiskEvidenceSynthesisRiskEvidenceSynthesisSampleSizeComponentInner
protected void composeRiskEvidenceSynthesisRiskEvidenceSynthesisSampleSizeComponentInner(RiskEvidenceSynthesis.RiskEvidenceSynthesisSampleSizeComponent element) throws IOException
- Throws:
IOException
-
composeRiskEvidenceSynthesisRiskEvidenceSynthesisRiskEstimateComponent
protected void composeRiskEvidenceSynthesisRiskEvidenceSynthesisRiskEstimateComponent(String name, RiskEvidenceSynthesis.RiskEvidenceSynthesisRiskEstimateComponent element) throws IOException
- Throws:
IOException
-
composeRiskEvidenceSynthesisRiskEvidenceSynthesisRiskEstimateComponentInner
protected void composeRiskEvidenceSynthesisRiskEvidenceSynthesisRiskEstimateComponentInner(RiskEvidenceSynthesis.RiskEvidenceSynthesisRiskEstimateComponent element) throws IOException
- Throws:
IOException
-
composeRiskEvidenceSynthesisRiskEvidenceSynthesisRiskEstimatePrecisionEstimateComponent
protected void composeRiskEvidenceSynthesisRiskEvidenceSynthesisRiskEstimatePrecisionEstimateComponent(String name, RiskEvidenceSynthesis.RiskEvidenceSynthesisRiskEstimatePrecisionEstimateComponent element) throws IOException
- Throws:
IOException
-
composeRiskEvidenceSynthesisRiskEvidenceSynthesisRiskEstimatePrecisionEstimateComponentInner
protected void composeRiskEvidenceSynthesisRiskEvidenceSynthesisRiskEstimatePrecisionEstimateComponentInner(RiskEvidenceSynthesis.RiskEvidenceSynthesisRiskEstimatePrecisionEstimateComponent element) throws IOException
- Throws:
IOException
-
composeRiskEvidenceSynthesisRiskEvidenceSynthesisCertaintyComponent
protected void composeRiskEvidenceSynthesisRiskEvidenceSynthesisCertaintyComponent(String name, RiskEvidenceSynthesis.RiskEvidenceSynthesisCertaintyComponent element) throws IOException
- Throws:
IOException
-
composeRiskEvidenceSynthesisRiskEvidenceSynthesisCertaintyComponentInner
protected void composeRiskEvidenceSynthesisRiskEvidenceSynthesisCertaintyComponentInner(RiskEvidenceSynthesis.RiskEvidenceSynthesisCertaintyComponent element) throws IOException
- Throws:
IOException
-
composeRiskEvidenceSynthesisRiskEvidenceSynthesisCertaintyCertaintySubcomponentComponent
protected void composeRiskEvidenceSynthesisRiskEvidenceSynthesisCertaintyCertaintySubcomponentComponent(String name, RiskEvidenceSynthesis.RiskEvidenceSynthesisCertaintyCertaintySubcomponentComponent element) throws IOException
- Throws:
IOException
-
composeRiskEvidenceSynthesisRiskEvidenceSynthesisCertaintyCertaintySubcomponentComponentInner
protected void composeRiskEvidenceSynthesisRiskEvidenceSynthesisCertaintyCertaintySubcomponentComponentInner(RiskEvidenceSynthesis.RiskEvidenceSynthesisCertaintyCertaintySubcomponentComponent element) throws IOException
- Throws:
IOException
-
composeSchedule
protected void composeSchedule(String name, Schedule element) throws IOException
- Throws:
IOException
-
composeScheduleInner
protected void composeScheduleInner(Schedule element) throws IOException
- Throws:
IOException
-
composeSearchParameter
protected void composeSearchParameter(String name, SearchParameter element) throws IOException
- Throws:
IOException
-
composeSearchParameterInner
protected void composeSearchParameterInner(SearchParameter element) throws IOException
- Throws:
IOException
-
composeSearchParameterSearchParameterComponentComponent
protected void composeSearchParameterSearchParameterComponentComponent(String name, SearchParameter.SearchParameterComponentComponent element) throws IOException
- Throws:
IOException
-
composeSearchParameterSearchParameterComponentComponentInner
protected void composeSearchParameterSearchParameterComponentComponentInner(SearchParameter.SearchParameterComponentComponent element) throws IOException
- Throws:
IOException
-
composeServiceRequest
protected void composeServiceRequest(String name, ServiceRequest element) throws IOException
- Throws:
IOException
-
composeServiceRequestInner
protected void composeServiceRequestInner(ServiceRequest element) throws IOException
- Throws:
IOException
-
composeSlot
protected void composeSlot(String name, Slot element) throws IOException
- Throws:
IOException
-
composeSlotInner
protected void composeSlotInner(Slot element) throws IOException
- Throws:
IOException
-
composeSpecimen
protected void composeSpecimen(String name, Specimen element) throws IOException
- Throws:
IOException
-
composeSpecimenInner
protected void composeSpecimenInner(Specimen element) throws IOException
- Throws:
IOException
-
composeSpecimenSpecimenCollectionComponent
protected void composeSpecimenSpecimenCollectionComponent(String name, Specimen.SpecimenCollectionComponent element) throws IOException
- Throws:
IOException
-
composeSpecimenSpecimenCollectionComponentInner
protected void composeSpecimenSpecimenCollectionComponentInner(Specimen.SpecimenCollectionComponent element) throws IOException
- Throws:
IOException
-
composeSpecimenSpecimenProcessingComponent
protected void composeSpecimenSpecimenProcessingComponent(String name, Specimen.SpecimenProcessingComponent element) throws IOException
- Throws:
IOException
-
composeSpecimenSpecimenProcessingComponentInner
protected void composeSpecimenSpecimenProcessingComponentInner(Specimen.SpecimenProcessingComponent element) throws IOException
- Throws:
IOException
-
composeSpecimenSpecimenContainerComponent
protected void composeSpecimenSpecimenContainerComponent(String name, Specimen.SpecimenContainerComponent element) throws IOException
- Throws:
IOException
-
composeSpecimenSpecimenContainerComponentInner
protected void composeSpecimenSpecimenContainerComponentInner(Specimen.SpecimenContainerComponent element) throws IOException
- Throws:
IOException
-
composeSpecimenDefinition
protected void composeSpecimenDefinition(String name, SpecimenDefinition element) throws IOException
- Throws:
IOException
-
composeSpecimenDefinitionInner
protected void composeSpecimenDefinitionInner(SpecimenDefinition element) throws IOException
- Throws:
IOException
-
composeSpecimenDefinitionSpecimenDefinitionTypeTestedComponent
protected void composeSpecimenDefinitionSpecimenDefinitionTypeTestedComponent(String name, SpecimenDefinition.SpecimenDefinitionTypeTestedComponent element) throws IOException
- Throws:
IOException
-
composeSpecimenDefinitionSpecimenDefinitionTypeTestedComponentInner
protected void composeSpecimenDefinitionSpecimenDefinitionTypeTestedComponentInner(SpecimenDefinition.SpecimenDefinitionTypeTestedComponent element) throws IOException
- Throws:
IOException
-
composeSpecimenDefinitionSpecimenDefinitionTypeTestedContainerComponent
protected void composeSpecimenDefinitionSpecimenDefinitionTypeTestedContainerComponent(String name, SpecimenDefinition.SpecimenDefinitionTypeTestedContainerComponent element) throws IOException
- Throws:
IOException
-
composeSpecimenDefinitionSpecimenDefinitionTypeTestedContainerComponentInner
protected void composeSpecimenDefinitionSpecimenDefinitionTypeTestedContainerComponentInner(SpecimenDefinition.SpecimenDefinitionTypeTestedContainerComponent element) throws IOException
- Throws:
IOException
-
composeSpecimenDefinitionSpecimenDefinitionTypeTestedContainerAdditiveComponent
protected void composeSpecimenDefinitionSpecimenDefinitionTypeTestedContainerAdditiveComponent(String name, SpecimenDefinition.SpecimenDefinitionTypeTestedContainerAdditiveComponent element) throws IOException
- Throws:
IOException
-
composeSpecimenDefinitionSpecimenDefinitionTypeTestedContainerAdditiveComponentInner
protected void composeSpecimenDefinitionSpecimenDefinitionTypeTestedContainerAdditiveComponentInner(SpecimenDefinition.SpecimenDefinitionTypeTestedContainerAdditiveComponent element) throws IOException
- Throws:
IOException
-
composeSpecimenDefinitionSpecimenDefinitionTypeTestedHandlingComponent
protected void composeSpecimenDefinitionSpecimenDefinitionTypeTestedHandlingComponent(String name, SpecimenDefinition.SpecimenDefinitionTypeTestedHandlingComponent element) throws IOException
- Throws:
IOException
-
composeSpecimenDefinitionSpecimenDefinitionTypeTestedHandlingComponentInner
protected void composeSpecimenDefinitionSpecimenDefinitionTypeTestedHandlingComponentInner(SpecimenDefinition.SpecimenDefinitionTypeTestedHandlingComponent element) throws IOException
- Throws:
IOException
-
composeStructureDefinition
protected void composeStructureDefinition(String name, StructureDefinition element) throws IOException
- Throws:
IOException
-
composeStructureDefinitionInner
protected void composeStructureDefinitionInner(StructureDefinition element) throws IOException
- Throws:
IOException
-
composeStructureDefinitionStructureDefinitionMappingComponent
protected void composeStructureDefinitionStructureDefinitionMappingComponent(String name, StructureDefinition.StructureDefinitionMappingComponent element) throws IOException
- Throws:
IOException
-
composeStructureDefinitionStructureDefinitionMappingComponentInner
protected void composeStructureDefinitionStructureDefinitionMappingComponentInner(StructureDefinition.StructureDefinitionMappingComponent element) throws IOException
- Throws:
IOException
-
composeStructureDefinitionStructureDefinitionContextComponent
protected void composeStructureDefinitionStructureDefinitionContextComponent(String name, StructureDefinition.StructureDefinitionContextComponent element) throws IOException
- Throws:
IOException
-
composeStructureDefinitionStructureDefinitionContextComponentInner
protected void composeStructureDefinitionStructureDefinitionContextComponentInner(StructureDefinition.StructureDefinitionContextComponent element) throws IOException
- Throws:
IOException
-
composeStructureDefinitionStructureDefinitionSnapshotComponent
protected void composeStructureDefinitionStructureDefinitionSnapshotComponent(String name, StructureDefinition.StructureDefinitionSnapshotComponent element) throws IOException
- Throws:
IOException
-
composeStructureDefinitionStructureDefinitionSnapshotComponentInner
protected void composeStructureDefinitionStructureDefinitionSnapshotComponentInner(StructureDefinition.StructureDefinitionSnapshotComponent element) throws IOException
- Throws:
IOException
-
composeStructureDefinitionStructureDefinitionDifferentialComponent
protected void composeStructureDefinitionStructureDefinitionDifferentialComponent(String name, StructureDefinition.StructureDefinitionDifferentialComponent element) throws IOException
- Throws:
IOException
-
composeStructureDefinitionStructureDefinitionDifferentialComponentInner
protected void composeStructureDefinitionStructureDefinitionDifferentialComponentInner(StructureDefinition.StructureDefinitionDifferentialComponent element) throws IOException
- Throws:
IOException
-
composeStructureMap
protected void composeStructureMap(String name, StructureMap element) throws IOException
- Throws:
IOException
-
composeStructureMapInner
protected void composeStructureMapInner(StructureMap element) throws IOException
- Throws:
IOException
-
composeStructureMapStructureMapStructureComponent
protected void composeStructureMapStructureMapStructureComponent(String name, StructureMap.StructureMapStructureComponent element) throws IOException
- Throws:
IOException
-
composeStructureMapStructureMapStructureComponentInner
protected void composeStructureMapStructureMapStructureComponentInner(StructureMap.StructureMapStructureComponent element) throws IOException
- Throws:
IOException
-
composeStructureMapStructureMapGroupComponent
protected void composeStructureMapStructureMapGroupComponent(String name, StructureMap.StructureMapGroupComponent element) throws IOException
- Throws:
IOException
-
composeStructureMapStructureMapGroupComponentInner
protected void composeStructureMapStructureMapGroupComponentInner(StructureMap.StructureMapGroupComponent element) throws IOException
- Throws:
IOException
-
composeStructureMapStructureMapGroupInputComponent
protected void composeStructureMapStructureMapGroupInputComponent(String name, StructureMap.StructureMapGroupInputComponent element) throws IOException
- Throws:
IOException
-
composeStructureMapStructureMapGroupInputComponentInner
protected void composeStructureMapStructureMapGroupInputComponentInner(StructureMap.StructureMapGroupInputComponent element) throws IOException
- Throws:
IOException
-
composeStructureMapStructureMapGroupRuleComponent
protected void composeStructureMapStructureMapGroupRuleComponent(String name, StructureMap.StructureMapGroupRuleComponent element) throws IOException
- Throws:
IOException
-
composeStructureMapStructureMapGroupRuleComponentInner
protected void composeStructureMapStructureMapGroupRuleComponentInner(StructureMap.StructureMapGroupRuleComponent element) throws IOException
- Throws:
IOException
-
composeStructureMapStructureMapGroupRuleSourceComponent
protected void composeStructureMapStructureMapGroupRuleSourceComponent(String name, StructureMap.StructureMapGroupRuleSourceComponent element) throws IOException
- Throws:
IOException
-
composeStructureMapStructureMapGroupRuleSourceComponentInner
protected void composeStructureMapStructureMapGroupRuleSourceComponentInner(StructureMap.StructureMapGroupRuleSourceComponent element) throws IOException
- Throws:
IOException
-
composeStructureMapStructureMapGroupRuleTargetComponent
protected void composeStructureMapStructureMapGroupRuleTargetComponent(String name, StructureMap.StructureMapGroupRuleTargetComponent element) throws IOException
- Throws:
IOException
-
composeStructureMapStructureMapGroupRuleTargetComponentInner
protected void composeStructureMapStructureMapGroupRuleTargetComponentInner(StructureMap.StructureMapGroupRuleTargetComponent element) throws IOException
- Throws:
IOException
-
composeStructureMapStructureMapGroupRuleTargetParameterComponent
protected void composeStructureMapStructureMapGroupRuleTargetParameterComponent(String name, StructureMap.StructureMapGroupRuleTargetParameterComponent element) throws IOException
- Throws:
IOException
-
composeStructureMapStructureMapGroupRuleTargetParameterComponentInner
protected void composeStructureMapStructureMapGroupRuleTargetParameterComponentInner(StructureMap.StructureMapGroupRuleTargetParameterComponent element) throws IOException
- Throws:
IOException
-
composeStructureMapStructureMapGroupRuleDependentComponent
protected void composeStructureMapStructureMapGroupRuleDependentComponent(String name, StructureMap.StructureMapGroupRuleDependentComponent element) throws IOException
- Throws:
IOException
-
composeStructureMapStructureMapGroupRuleDependentComponentInner
protected void composeStructureMapStructureMapGroupRuleDependentComponentInner(StructureMap.StructureMapGroupRuleDependentComponent element) throws IOException
- Throws:
IOException
-
composeSubscription
protected void composeSubscription(String name, Subscription element) throws IOException
- Throws:
IOException
-
composeSubscriptionInner
protected void composeSubscriptionInner(Subscription element) throws IOException
- Throws:
IOException
-
composeSubscriptionSubscriptionChannelComponent
protected void composeSubscriptionSubscriptionChannelComponent(String name, Subscription.SubscriptionChannelComponent element) throws IOException
- Throws:
IOException
-
composeSubscriptionSubscriptionChannelComponentInner
protected void composeSubscriptionSubscriptionChannelComponentInner(Subscription.SubscriptionChannelComponent element) throws IOException
- Throws:
IOException
-
composeSubstance
protected void composeSubstance(String name, Substance element) throws IOException
- Throws:
IOException
-
composeSubstanceInner
protected void composeSubstanceInner(Substance element) throws IOException
- Throws:
IOException
-
composeSubstanceSubstanceInstanceComponent
protected void composeSubstanceSubstanceInstanceComponent(String name, Substance.SubstanceInstanceComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSubstanceInstanceComponentInner
protected void composeSubstanceSubstanceInstanceComponentInner(Substance.SubstanceInstanceComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSubstanceIngredientComponent
protected void composeSubstanceSubstanceIngredientComponent(String name, Substance.SubstanceIngredientComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSubstanceIngredientComponentInner
protected void composeSubstanceSubstanceIngredientComponentInner(Substance.SubstanceIngredientComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceNucleicAcid
protected void composeSubstanceNucleicAcid(String name, SubstanceNucleicAcid element) throws IOException
- Throws:
IOException
-
composeSubstanceNucleicAcidInner
protected void composeSubstanceNucleicAcidInner(SubstanceNucleicAcid element) throws IOException
- Throws:
IOException
-
composeSubstanceNucleicAcidSubstanceNucleicAcidSubunitComponent
protected void composeSubstanceNucleicAcidSubstanceNucleicAcidSubunitComponent(String name, SubstanceNucleicAcid.SubstanceNucleicAcidSubunitComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceNucleicAcidSubstanceNucleicAcidSubunitComponentInner
protected void composeSubstanceNucleicAcidSubstanceNucleicAcidSubunitComponentInner(SubstanceNucleicAcid.SubstanceNucleicAcidSubunitComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceNucleicAcidSubstanceNucleicAcidSubunitLinkageComponent
protected void composeSubstanceNucleicAcidSubstanceNucleicAcidSubunitLinkageComponent(String name, SubstanceNucleicAcid.SubstanceNucleicAcidSubunitLinkageComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceNucleicAcidSubstanceNucleicAcidSubunitLinkageComponentInner
protected void composeSubstanceNucleicAcidSubstanceNucleicAcidSubunitLinkageComponentInner(SubstanceNucleicAcid.SubstanceNucleicAcidSubunitLinkageComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceNucleicAcidSubstanceNucleicAcidSubunitSugarComponent
protected void composeSubstanceNucleicAcidSubstanceNucleicAcidSubunitSugarComponent(String name, SubstanceNucleicAcid.SubstanceNucleicAcidSubunitSugarComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceNucleicAcidSubstanceNucleicAcidSubunitSugarComponentInner
protected void composeSubstanceNucleicAcidSubstanceNucleicAcidSubunitSugarComponentInner(SubstanceNucleicAcid.SubstanceNucleicAcidSubunitSugarComponent element) throws IOException
- Throws:
IOException
-
composeSubstancePolymer
protected void composeSubstancePolymer(String name, SubstancePolymer element) throws IOException
- Throws:
IOException
-
composeSubstancePolymerInner
protected void composeSubstancePolymerInner(SubstancePolymer element) throws IOException
- Throws:
IOException
-
composeSubstancePolymerSubstancePolymerMonomerSetComponent
protected void composeSubstancePolymerSubstancePolymerMonomerSetComponent(String name, SubstancePolymer.SubstancePolymerMonomerSetComponent element) throws IOException
- Throws:
IOException
-
composeSubstancePolymerSubstancePolymerMonomerSetComponentInner
protected void composeSubstancePolymerSubstancePolymerMonomerSetComponentInner(SubstancePolymer.SubstancePolymerMonomerSetComponent element) throws IOException
- Throws:
IOException
-
composeSubstancePolymerSubstancePolymerMonomerSetStartingMaterialComponent
protected void composeSubstancePolymerSubstancePolymerMonomerSetStartingMaterialComponent(String name, SubstancePolymer.SubstancePolymerMonomerSetStartingMaterialComponent element) throws IOException
- Throws:
IOException
-
composeSubstancePolymerSubstancePolymerMonomerSetStartingMaterialComponentInner
protected void composeSubstancePolymerSubstancePolymerMonomerSetStartingMaterialComponentInner(SubstancePolymer.SubstancePolymerMonomerSetStartingMaterialComponent element) throws IOException
- Throws:
IOException
-
composeSubstancePolymerSubstancePolymerRepeatComponent
protected void composeSubstancePolymerSubstancePolymerRepeatComponent(String name, SubstancePolymer.SubstancePolymerRepeatComponent element) throws IOException
- Throws:
IOException
-
composeSubstancePolymerSubstancePolymerRepeatComponentInner
protected void composeSubstancePolymerSubstancePolymerRepeatComponentInner(SubstancePolymer.SubstancePolymerRepeatComponent element) throws IOException
- Throws:
IOException
-
composeSubstancePolymerSubstancePolymerRepeatRepeatUnitComponent
protected void composeSubstancePolymerSubstancePolymerRepeatRepeatUnitComponent(String name, SubstancePolymer.SubstancePolymerRepeatRepeatUnitComponent element) throws IOException
- Throws:
IOException
-
composeSubstancePolymerSubstancePolymerRepeatRepeatUnitComponentInner
protected void composeSubstancePolymerSubstancePolymerRepeatRepeatUnitComponentInner(SubstancePolymer.SubstancePolymerRepeatRepeatUnitComponent element) throws IOException
- Throws:
IOException
-
composeSubstancePolymerSubstancePolymerRepeatRepeatUnitDegreeOfPolymerisationComponent
protected void composeSubstancePolymerSubstancePolymerRepeatRepeatUnitDegreeOfPolymerisationComponent(String name, SubstancePolymer.SubstancePolymerRepeatRepeatUnitDegreeOfPolymerisationComponent element) throws IOException
- Throws:
IOException
-
composeSubstancePolymerSubstancePolymerRepeatRepeatUnitDegreeOfPolymerisationComponentInner
protected void composeSubstancePolymerSubstancePolymerRepeatRepeatUnitDegreeOfPolymerisationComponentInner(SubstancePolymer.SubstancePolymerRepeatRepeatUnitDegreeOfPolymerisationComponent element) throws IOException
- Throws:
IOException
-
composeSubstancePolymerSubstancePolymerRepeatRepeatUnitStructuralRepresentationComponent
protected void composeSubstancePolymerSubstancePolymerRepeatRepeatUnitStructuralRepresentationComponent(String name, SubstancePolymer.SubstancePolymerRepeatRepeatUnitStructuralRepresentationComponent element) throws IOException
- Throws:
IOException
-
composeSubstancePolymerSubstancePolymerRepeatRepeatUnitStructuralRepresentationComponentInner
protected void composeSubstancePolymerSubstancePolymerRepeatRepeatUnitStructuralRepresentationComponentInner(SubstancePolymer.SubstancePolymerRepeatRepeatUnitStructuralRepresentationComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceProtein
protected void composeSubstanceProtein(String name, SubstanceProtein element) throws IOException
- Throws:
IOException
-
composeSubstanceProteinInner
protected void composeSubstanceProteinInner(SubstanceProtein element) throws IOException
- Throws:
IOException
-
composeSubstanceProteinSubstanceProteinSubunitComponent
protected void composeSubstanceProteinSubstanceProteinSubunitComponent(String name, SubstanceProtein.SubstanceProteinSubunitComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceProteinSubstanceProteinSubunitComponentInner
protected void composeSubstanceProteinSubstanceProteinSubunitComponentInner(SubstanceProtein.SubstanceProteinSubunitComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceReferenceInformation
protected void composeSubstanceReferenceInformation(String name, SubstanceReferenceInformation element) throws IOException
- Throws:
IOException
-
composeSubstanceReferenceInformationInner
protected void composeSubstanceReferenceInformationInner(SubstanceReferenceInformation element) throws IOException
- Throws:
IOException
-
composeSubstanceReferenceInformationSubstanceReferenceInformationGeneComponent
protected void composeSubstanceReferenceInformationSubstanceReferenceInformationGeneComponent(String name, SubstanceReferenceInformation.SubstanceReferenceInformationGeneComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceReferenceInformationSubstanceReferenceInformationGeneComponentInner
protected void composeSubstanceReferenceInformationSubstanceReferenceInformationGeneComponentInner(SubstanceReferenceInformation.SubstanceReferenceInformationGeneComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceReferenceInformationSubstanceReferenceInformationGeneElementComponent
protected void composeSubstanceReferenceInformationSubstanceReferenceInformationGeneElementComponent(String name, SubstanceReferenceInformation.SubstanceReferenceInformationGeneElementComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceReferenceInformationSubstanceReferenceInformationGeneElementComponentInner
protected void composeSubstanceReferenceInformationSubstanceReferenceInformationGeneElementComponentInner(SubstanceReferenceInformation.SubstanceReferenceInformationGeneElementComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceReferenceInformationSubstanceReferenceInformationClassificationComponent
protected void composeSubstanceReferenceInformationSubstanceReferenceInformationClassificationComponent(String name, SubstanceReferenceInformation.SubstanceReferenceInformationClassificationComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceReferenceInformationSubstanceReferenceInformationClassificationComponentInner
protected void composeSubstanceReferenceInformationSubstanceReferenceInformationClassificationComponentInner(SubstanceReferenceInformation.SubstanceReferenceInformationClassificationComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceReferenceInformationSubstanceReferenceInformationTargetComponent
protected void composeSubstanceReferenceInformationSubstanceReferenceInformationTargetComponent(String name, SubstanceReferenceInformation.SubstanceReferenceInformationTargetComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceReferenceInformationSubstanceReferenceInformationTargetComponentInner
protected void composeSubstanceReferenceInformationSubstanceReferenceInformationTargetComponentInner(SubstanceReferenceInformation.SubstanceReferenceInformationTargetComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSourceMaterial
protected void composeSubstanceSourceMaterial(String name, SubstanceSourceMaterial element) throws IOException
- Throws:
IOException
-
composeSubstanceSourceMaterialInner
protected void composeSubstanceSourceMaterialInner(SubstanceSourceMaterial element) throws IOException
- Throws:
IOException
-
composeSubstanceSourceMaterialSubstanceSourceMaterialFractionDescriptionComponent
protected void composeSubstanceSourceMaterialSubstanceSourceMaterialFractionDescriptionComponent(String name, SubstanceSourceMaterial.SubstanceSourceMaterialFractionDescriptionComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSourceMaterialSubstanceSourceMaterialFractionDescriptionComponentInner
protected void composeSubstanceSourceMaterialSubstanceSourceMaterialFractionDescriptionComponentInner(SubstanceSourceMaterial.SubstanceSourceMaterialFractionDescriptionComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSourceMaterialSubstanceSourceMaterialOrganismComponent
protected void composeSubstanceSourceMaterialSubstanceSourceMaterialOrganismComponent(String name, SubstanceSourceMaterial.SubstanceSourceMaterialOrganismComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSourceMaterialSubstanceSourceMaterialOrganismComponentInner
protected void composeSubstanceSourceMaterialSubstanceSourceMaterialOrganismComponentInner(SubstanceSourceMaterial.SubstanceSourceMaterialOrganismComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSourceMaterialSubstanceSourceMaterialOrganismAuthorComponent
protected void composeSubstanceSourceMaterialSubstanceSourceMaterialOrganismAuthorComponent(String name, SubstanceSourceMaterial.SubstanceSourceMaterialOrganismAuthorComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSourceMaterialSubstanceSourceMaterialOrganismAuthorComponentInner
protected void composeSubstanceSourceMaterialSubstanceSourceMaterialOrganismAuthorComponentInner(SubstanceSourceMaterial.SubstanceSourceMaterialOrganismAuthorComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSourceMaterialSubstanceSourceMaterialOrganismHybridComponent
protected void composeSubstanceSourceMaterialSubstanceSourceMaterialOrganismHybridComponent(String name, SubstanceSourceMaterial.SubstanceSourceMaterialOrganismHybridComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSourceMaterialSubstanceSourceMaterialOrganismHybridComponentInner
protected void composeSubstanceSourceMaterialSubstanceSourceMaterialOrganismHybridComponentInner(SubstanceSourceMaterial.SubstanceSourceMaterialOrganismHybridComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSourceMaterialSubstanceSourceMaterialOrganismOrganismGeneralComponent
protected void composeSubstanceSourceMaterialSubstanceSourceMaterialOrganismOrganismGeneralComponent(String name, SubstanceSourceMaterial.SubstanceSourceMaterialOrganismOrganismGeneralComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSourceMaterialSubstanceSourceMaterialOrganismOrganismGeneralComponentInner
protected void composeSubstanceSourceMaterialSubstanceSourceMaterialOrganismOrganismGeneralComponentInner(SubstanceSourceMaterial.SubstanceSourceMaterialOrganismOrganismGeneralComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSourceMaterialSubstanceSourceMaterialPartDescriptionComponent
protected void composeSubstanceSourceMaterialSubstanceSourceMaterialPartDescriptionComponent(String name, SubstanceSourceMaterial.SubstanceSourceMaterialPartDescriptionComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSourceMaterialSubstanceSourceMaterialPartDescriptionComponentInner
protected void composeSubstanceSourceMaterialSubstanceSourceMaterialPartDescriptionComponentInner(SubstanceSourceMaterial.SubstanceSourceMaterialPartDescriptionComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSpecification
protected void composeSubstanceSpecification(String name, SubstanceSpecification element) throws IOException
- Throws:
IOException
-
composeSubstanceSpecificationInner
protected void composeSubstanceSpecificationInner(SubstanceSpecification element) throws IOException
- Throws:
IOException
-
composeSubstanceSpecificationSubstanceSpecificationMoietyComponent
protected void composeSubstanceSpecificationSubstanceSpecificationMoietyComponent(String name, SubstanceSpecification.SubstanceSpecificationMoietyComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSpecificationSubstanceSpecificationMoietyComponentInner
protected void composeSubstanceSpecificationSubstanceSpecificationMoietyComponentInner(SubstanceSpecification.SubstanceSpecificationMoietyComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSpecificationSubstanceSpecificationPropertyComponent
protected void composeSubstanceSpecificationSubstanceSpecificationPropertyComponent(String name, SubstanceSpecification.SubstanceSpecificationPropertyComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSpecificationSubstanceSpecificationPropertyComponentInner
protected void composeSubstanceSpecificationSubstanceSpecificationPropertyComponentInner(SubstanceSpecification.SubstanceSpecificationPropertyComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSpecificationSubstanceSpecificationStructureComponent
protected void composeSubstanceSpecificationSubstanceSpecificationStructureComponent(String name, SubstanceSpecification.SubstanceSpecificationStructureComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSpecificationSubstanceSpecificationStructureComponentInner
protected void composeSubstanceSpecificationSubstanceSpecificationStructureComponentInner(SubstanceSpecification.SubstanceSpecificationStructureComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSpecificationSubstanceSpecificationStructureIsotopeComponent
protected void composeSubstanceSpecificationSubstanceSpecificationStructureIsotopeComponent(String name, SubstanceSpecification.SubstanceSpecificationStructureIsotopeComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSpecificationSubstanceSpecificationStructureIsotopeComponentInner
protected void composeSubstanceSpecificationSubstanceSpecificationStructureIsotopeComponentInner(SubstanceSpecification.SubstanceSpecificationStructureIsotopeComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSpecificationSubstanceSpecificationStructureIsotopeMolecularWeightComponent
protected void composeSubstanceSpecificationSubstanceSpecificationStructureIsotopeMolecularWeightComponent(String name, SubstanceSpecification.SubstanceSpecificationStructureIsotopeMolecularWeightComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSpecificationSubstanceSpecificationStructureIsotopeMolecularWeightComponentInner
protected void composeSubstanceSpecificationSubstanceSpecificationStructureIsotopeMolecularWeightComponentInner(SubstanceSpecification.SubstanceSpecificationStructureIsotopeMolecularWeightComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSpecificationSubstanceSpecificationStructureRepresentationComponent
protected void composeSubstanceSpecificationSubstanceSpecificationStructureRepresentationComponent(String name, SubstanceSpecification.SubstanceSpecificationStructureRepresentationComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSpecificationSubstanceSpecificationStructureRepresentationComponentInner
protected void composeSubstanceSpecificationSubstanceSpecificationStructureRepresentationComponentInner(SubstanceSpecification.SubstanceSpecificationStructureRepresentationComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSpecificationSubstanceSpecificationCodeComponent
protected void composeSubstanceSpecificationSubstanceSpecificationCodeComponent(String name, SubstanceSpecification.SubstanceSpecificationCodeComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSpecificationSubstanceSpecificationCodeComponentInner
protected void composeSubstanceSpecificationSubstanceSpecificationCodeComponentInner(SubstanceSpecification.SubstanceSpecificationCodeComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSpecificationSubstanceSpecificationNameComponent
protected void composeSubstanceSpecificationSubstanceSpecificationNameComponent(String name, SubstanceSpecification.SubstanceSpecificationNameComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSpecificationSubstanceSpecificationNameComponentInner
protected void composeSubstanceSpecificationSubstanceSpecificationNameComponentInner(SubstanceSpecification.SubstanceSpecificationNameComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSpecificationSubstanceSpecificationNameOfficialComponent
protected void composeSubstanceSpecificationSubstanceSpecificationNameOfficialComponent(String name, SubstanceSpecification.SubstanceSpecificationNameOfficialComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSpecificationSubstanceSpecificationNameOfficialComponentInner
protected void composeSubstanceSpecificationSubstanceSpecificationNameOfficialComponentInner(SubstanceSpecification.SubstanceSpecificationNameOfficialComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSpecificationSubstanceSpecificationRelationshipComponent
protected void composeSubstanceSpecificationSubstanceSpecificationRelationshipComponent(String name, SubstanceSpecification.SubstanceSpecificationRelationshipComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceSpecificationSubstanceSpecificationRelationshipComponentInner
protected void composeSubstanceSpecificationSubstanceSpecificationRelationshipComponentInner(SubstanceSpecification.SubstanceSpecificationRelationshipComponent element) throws IOException
- Throws:
IOException
-
composeSupplyDelivery
protected void composeSupplyDelivery(String name, SupplyDelivery element) throws IOException
- Throws:
IOException
-
composeSupplyDeliveryInner
protected void composeSupplyDeliveryInner(SupplyDelivery element) throws IOException
- Throws:
IOException
-
composeSupplyDeliverySupplyDeliverySuppliedItemComponent
protected void composeSupplyDeliverySupplyDeliverySuppliedItemComponent(String name, SupplyDelivery.SupplyDeliverySuppliedItemComponent element) throws IOException
- Throws:
IOException
-
composeSupplyDeliverySupplyDeliverySuppliedItemComponentInner
protected void composeSupplyDeliverySupplyDeliverySuppliedItemComponentInner(SupplyDelivery.SupplyDeliverySuppliedItemComponent element) throws IOException
- Throws:
IOException
-
composeSupplyRequest
protected void composeSupplyRequest(String name, SupplyRequest element) throws IOException
- Throws:
IOException
-
composeSupplyRequestInner
protected void composeSupplyRequestInner(SupplyRequest element) throws IOException
- Throws:
IOException
-
composeSupplyRequestSupplyRequestParameterComponent
protected void composeSupplyRequestSupplyRequestParameterComponent(String name, SupplyRequest.SupplyRequestParameterComponent element) throws IOException
- Throws:
IOException
-
composeSupplyRequestSupplyRequestParameterComponentInner
protected void composeSupplyRequestSupplyRequestParameterComponentInner(SupplyRequest.SupplyRequestParameterComponent element) throws IOException
- Throws:
IOException
-
composeTask
protected void composeTask(String name, Task element) throws IOException
- Throws:
IOException
-
composeTaskInner
protected void composeTaskInner(Task element) throws IOException
- Throws:
IOException
-
composeTaskTaskRestrictionComponent
protected void composeTaskTaskRestrictionComponent(String name, Task.TaskRestrictionComponent element) throws IOException
- Throws:
IOException
-
composeTaskTaskRestrictionComponentInner
protected void composeTaskTaskRestrictionComponentInner(Task.TaskRestrictionComponent element) throws IOException
- Throws:
IOException
-
composeTaskParameterComponent
protected void composeTaskParameterComponent(String name, Task.ParameterComponent element) throws IOException
- Throws:
IOException
-
composeTaskParameterComponentInner
protected void composeTaskParameterComponentInner(Task.ParameterComponent element) throws IOException
- Throws:
IOException
-
composeTaskTaskOutputComponent
protected void composeTaskTaskOutputComponent(String name, Task.TaskOutputComponent element) throws IOException
- Throws:
IOException
-
composeTaskTaskOutputComponentInner
protected void composeTaskTaskOutputComponentInner(Task.TaskOutputComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilities
protected void composeTerminologyCapabilities(String name, TerminologyCapabilities element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesInner
protected void composeTerminologyCapabilitiesInner(TerminologyCapabilities element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesTerminologyCapabilitiesSoftwareComponent
protected void composeTerminologyCapabilitiesTerminologyCapabilitiesSoftwareComponent(String name, TerminologyCapabilities.TerminologyCapabilitiesSoftwareComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesTerminologyCapabilitiesSoftwareComponentInner
protected void composeTerminologyCapabilitiesTerminologyCapabilitiesSoftwareComponentInner(TerminologyCapabilities.TerminologyCapabilitiesSoftwareComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesTerminologyCapabilitiesImplementationComponent
protected void composeTerminologyCapabilitiesTerminologyCapabilitiesImplementationComponent(String name, TerminologyCapabilities.TerminologyCapabilitiesImplementationComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesTerminologyCapabilitiesImplementationComponentInner
protected void composeTerminologyCapabilitiesTerminologyCapabilitiesImplementationComponentInner(TerminologyCapabilities.TerminologyCapabilitiesImplementationComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesTerminologyCapabilitiesCodeSystemComponent
protected void composeTerminologyCapabilitiesTerminologyCapabilitiesCodeSystemComponent(String name, TerminologyCapabilities.TerminologyCapabilitiesCodeSystemComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesTerminologyCapabilitiesCodeSystemComponentInner
protected void composeTerminologyCapabilitiesTerminologyCapabilitiesCodeSystemComponentInner(TerminologyCapabilities.TerminologyCapabilitiesCodeSystemComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesTerminologyCapabilitiesCodeSystemVersionComponent
protected void composeTerminologyCapabilitiesTerminologyCapabilitiesCodeSystemVersionComponent(String name, TerminologyCapabilities.TerminologyCapabilitiesCodeSystemVersionComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesTerminologyCapabilitiesCodeSystemVersionComponentInner
protected void composeTerminologyCapabilitiesTerminologyCapabilitiesCodeSystemVersionComponentInner(TerminologyCapabilities.TerminologyCapabilitiesCodeSystemVersionComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesTerminologyCapabilitiesCodeSystemVersionFilterComponent
protected void composeTerminologyCapabilitiesTerminologyCapabilitiesCodeSystemVersionFilterComponent(String name, TerminologyCapabilities.TerminologyCapabilitiesCodeSystemVersionFilterComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesTerminologyCapabilitiesCodeSystemVersionFilterComponentInner
protected void composeTerminologyCapabilitiesTerminologyCapabilitiesCodeSystemVersionFilterComponentInner(TerminologyCapabilities.TerminologyCapabilitiesCodeSystemVersionFilterComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesTerminologyCapabilitiesExpansionComponent
protected void composeTerminologyCapabilitiesTerminologyCapabilitiesExpansionComponent(String name, TerminologyCapabilities.TerminologyCapabilitiesExpansionComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesTerminologyCapabilitiesExpansionComponentInner
protected void composeTerminologyCapabilitiesTerminologyCapabilitiesExpansionComponentInner(TerminologyCapabilities.TerminologyCapabilitiesExpansionComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesTerminologyCapabilitiesExpansionParameterComponent
protected void composeTerminologyCapabilitiesTerminologyCapabilitiesExpansionParameterComponent(String name, TerminologyCapabilities.TerminologyCapabilitiesExpansionParameterComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesTerminologyCapabilitiesExpansionParameterComponentInner
protected void composeTerminologyCapabilitiesTerminologyCapabilitiesExpansionParameterComponentInner(TerminologyCapabilities.TerminologyCapabilitiesExpansionParameterComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesTerminologyCapabilitiesValidateCodeComponent
protected void composeTerminologyCapabilitiesTerminologyCapabilitiesValidateCodeComponent(String name, TerminologyCapabilities.TerminologyCapabilitiesValidateCodeComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesTerminologyCapabilitiesValidateCodeComponentInner
protected void composeTerminologyCapabilitiesTerminologyCapabilitiesValidateCodeComponentInner(TerminologyCapabilities.TerminologyCapabilitiesValidateCodeComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesTerminologyCapabilitiesTranslationComponent
protected void composeTerminologyCapabilitiesTerminologyCapabilitiesTranslationComponent(String name, TerminologyCapabilities.TerminologyCapabilitiesTranslationComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesTerminologyCapabilitiesTranslationComponentInner
protected void composeTerminologyCapabilitiesTerminologyCapabilitiesTranslationComponentInner(TerminologyCapabilities.TerminologyCapabilitiesTranslationComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesTerminologyCapabilitiesClosureComponent
protected void composeTerminologyCapabilitiesTerminologyCapabilitiesClosureComponent(String name, TerminologyCapabilities.TerminologyCapabilitiesClosureComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesTerminologyCapabilitiesClosureComponentInner
protected void composeTerminologyCapabilitiesTerminologyCapabilitiesClosureComponentInner(TerminologyCapabilities.TerminologyCapabilitiesClosureComponent element) throws IOException
- Throws:
IOException
-
composeTestReport
protected void composeTestReport(String name, TestReport element) throws IOException
- Throws:
IOException
-
composeTestReportInner
protected void composeTestReportInner(TestReport element) throws IOException
- Throws:
IOException
-
composeTestReportTestReportParticipantComponent
protected void composeTestReportTestReportParticipantComponent(String name, TestReport.TestReportParticipantComponent element) throws IOException
- Throws:
IOException
-
composeTestReportTestReportParticipantComponentInner
protected void composeTestReportTestReportParticipantComponentInner(TestReport.TestReportParticipantComponent element) throws IOException
- Throws:
IOException
-
composeTestReportTestReportSetupComponent
protected void composeTestReportTestReportSetupComponent(String name, TestReport.TestReportSetupComponent element) throws IOException
- Throws:
IOException
-
composeTestReportTestReportSetupComponentInner
protected void composeTestReportTestReportSetupComponentInner(TestReport.TestReportSetupComponent element) throws IOException
- Throws:
IOException
-
composeTestReportSetupActionComponent
protected void composeTestReportSetupActionComponent(String name, TestReport.SetupActionComponent element) throws IOException
- Throws:
IOException
-
composeTestReportSetupActionComponentInner
protected void composeTestReportSetupActionComponentInner(TestReport.SetupActionComponent element) throws IOException
- Throws:
IOException
-
composeTestReportSetupActionOperationComponent
protected void composeTestReportSetupActionOperationComponent(String name, TestReport.SetupActionOperationComponent element) throws IOException
- Throws:
IOException
-
composeTestReportSetupActionOperationComponentInner
protected void composeTestReportSetupActionOperationComponentInner(TestReport.SetupActionOperationComponent element) throws IOException
- Throws:
IOException
-
composeTestReportSetupActionAssertComponent
protected void composeTestReportSetupActionAssertComponent(String name, TestReport.SetupActionAssertComponent element) throws IOException
- Throws:
IOException
-
composeTestReportSetupActionAssertComponentInner
protected void composeTestReportSetupActionAssertComponentInner(TestReport.SetupActionAssertComponent element) throws IOException
- Throws:
IOException
-
composeTestReportTestReportTestComponent
protected void composeTestReportTestReportTestComponent(String name, TestReport.TestReportTestComponent element) throws IOException
- Throws:
IOException
-
composeTestReportTestReportTestComponentInner
protected void composeTestReportTestReportTestComponentInner(TestReport.TestReportTestComponent element) throws IOException
- Throws:
IOException
-
composeTestReportTestActionComponent
protected void composeTestReportTestActionComponent(String name, TestReport.TestActionComponent element) throws IOException
- Throws:
IOException
-
composeTestReportTestActionComponentInner
protected void composeTestReportTestActionComponentInner(TestReport.TestActionComponent element) throws IOException
- Throws:
IOException
-
composeTestReportTestReportTeardownComponent
protected void composeTestReportTestReportTeardownComponent(String name, TestReport.TestReportTeardownComponent element) throws IOException
- Throws:
IOException
-
composeTestReportTestReportTeardownComponentInner
protected void composeTestReportTestReportTeardownComponentInner(TestReport.TestReportTeardownComponent element) throws IOException
- Throws:
IOException
-
composeTestReportTeardownActionComponent
protected void composeTestReportTeardownActionComponent(String name, TestReport.TeardownActionComponent element) throws IOException
- Throws:
IOException
-
composeTestReportTeardownActionComponentInner
protected void composeTestReportTeardownActionComponentInner(TestReport.TeardownActionComponent element) throws IOException
- Throws:
IOException
-
composeTestScript
protected void composeTestScript(String name, TestScript element) throws IOException
- Throws:
IOException
-
composeTestScriptInner
protected void composeTestScriptInner(TestScript element) throws IOException
- Throws:
IOException
-
composeTestScriptTestScriptOriginComponent
protected void composeTestScriptTestScriptOriginComponent(String name, TestScript.TestScriptOriginComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptTestScriptOriginComponentInner
protected void composeTestScriptTestScriptOriginComponentInner(TestScript.TestScriptOriginComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptTestScriptDestinationComponent
protected void composeTestScriptTestScriptDestinationComponent(String name, TestScript.TestScriptDestinationComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptTestScriptDestinationComponentInner
protected void composeTestScriptTestScriptDestinationComponentInner(TestScript.TestScriptDestinationComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptTestScriptMetadataComponent
protected void composeTestScriptTestScriptMetadataComponent(String name, TestScript.TestScriptMetadataComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptTestScriptMetadataComponentInner
protected void composeTestScriptTestScriptMetadataComponentInner(TestScript.TestScriptMetadataComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptTestScriptMetadataLinkComponent
protected void composeTestScriptTestScriptMetadataLinkComponent(String name, TestScript.TestScriptMetadataLinkComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptTestScriptMetadataLinkComponentInner
protected void composeTestScriptTestScriptMetadataLinkComponentInner(TestScript.TestScriptMetadataLinkComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptTestScriptMetadataCapabilityComponent
protected void composeTestScriptTestScriptMetadataCapabilityComponent(String name, TestScript.TestScriptMetadataCapabilityComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptTestScriptMetadataCapabilityComponentInner
protected void composeTestScriptTestScriptMetadataCapabilityComponentInner(TestScript.TestScriptMetadataCapabilityComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptTestScriptFixtureComponent
protected void composeTestScriptTestScriptFixtureComponent(String name, TestScript.TestScriptFixtureComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptTestScriptFixtureComponentInner
protected void composeTestScriptTestScriptFixtureComponentInner(TestScript.TestScriptFixtureComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptTestScriptVariableComponent
protected void composeTestScriptTestScriptVariableComponent(String name, TestScript.TestScriptVariableComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptTestScriptVariableComponentInner
protected void composeTestScriptTestScriptVariableComponentInner(TestScript.TestScriptVariableComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptTestScriptSetupComponent
protected void composeTestScriptTestScriptSetupComponent(String name, TestScript.TestScriptSetupComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptTestScriptSetupComponentInner
protected void composeTestScriptTestScriptSetupComponentInner(TestScript.TestScriptSetupComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptSetupActionComponent
protected void composeTestScriptSetupActionComponent(String name, TestScript.SetupActionComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptSetupActionComponentInner
protected void composeTestScriptSetupActionComponentInner(TestScript.SetupActionComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptSetupActionOperationComponent
protected void composeTestScriptSetupActionOperationComponent(String name, TestScript.SetupActionOperationComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptSetupActionOperationComponentInner
protected void composeTestScriptSetupActionOperationComponentInner(TestScript.SetupActionOperationComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptSetupActionOperationRequestHeaderComponent
protected void composeTestScriptSetupActionOperationRequestHeaderComponent(String name, TestScript.SetupActionOperationRequestHeaderComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptSetupActionOperationRequestHeaderComponentInner
protected void composeTestScriptSetupActionOperationRequestHeaderComponentInner(TestScript.SetupActionOperationRequestHeaderComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptSetupActionAssertComponent
protected void composeTestScriptSetupActionAssertComponent(String name, TestScript.SetupActionAssertComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptSetupActionAssertComponentInner
protected void composeTestScriptSetupActionAssertComponentInner(TestScript.SetupActionAssertComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptTestScriptTestComponent
protected void composeTestScriptTestScriptTestComponent(String name, TestScript.TestScriptTestComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptTestScriptTestComponentInner
protected void composeTestScriptTestScriptTestComponentInner(TestScript.TestScriptTestComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptTestActionComponent
protected void composeTestScriptTestActionComponent(String name, TestScript.TestActionComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptTestActionComponentInner
protected void composeTestScriptTestActionComponentInner(TestScript.TestActionComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptTestScriptTeardownComponent
protected void composeTestScriptTestScriptTeardownComponent(String name, TestScript.TestScriptTeardownComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptTestScriptTeardownComponentInner
protected void composeTestScriptTestScriptTeardownComponentInner(TestScript.TestScriptTeardownComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptTeardownActionComponent
protected void composeTestScriptTeardownActionComponent(String name, TestScript.TeardownActionComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptTeardownActionComponentInner
protected void composeTestScriptTeardownActionComponentInner(TestScript.TeardownActionComponent element) throws IOException
- Throws:
IOException
-
composeValueSet
protected void composeValueSet(String name, ValueSet element) throws IOException
- Throws:
IOException
-
composeValueSetInner
protected void composeValueSetInner(ValueSet element) throws IOException
- Throws:
IOException
-
composeValueSetValueSetComposeComponent
protected void composeValueSetValueSetComposeComponent(String name, ValueSet.ValueSetComposeComponent element) throws IOException
- Throws:
IOException
-
composeValueSetValueSetComposeComponentInner
protected void composeValueSetValueSetComposeComponentInner(ValueSet.ValueSetComposeComponent element) throws IOException
- Throws:
IOException
-
composeValueSetConceptSetComponent
protected void composeValueSetConceptSetComponent(String name, ValueSet.ConceptSetComponent element) throws IOException
- Throws:
IOException
-
composeValueSetConceptSetComponentInner
protected void composeValueSetConceptSetComponentInner(ValueSet.ConceptSetComponent element) throws IOException
- Throws:
IOException
-
composeValueSetConceptReferenceComponent
protected void composeValueSetConceptReferenceComponent(String name, ValueSet.ConceptReferenceComponent element) throws IOException
- Throws:
IOException
-
composeValueSetConceptReferenceComponentInner
protected void composeValueSetConceptReferenceComponentInner(ValueSet.ConceptReferenceComponent element) throws IOException
- Throws:
IOException
-
composeValueSetConceptReferenceDesignationComponent
protected void composeValueSetConceptReferenceDesignationComponent(String name, ValueSet.ConceptReferenceDesignationComponent element) throws IOException
- Throws:
IOException
-
composeValueSetConceptReferenceDesignationComponentInner
protected void composeValueSetConceptReferenceDesignationComponentInner(ValueSet.ConceptReferenceDesignationComponent element) throws IOException
- Throws:
IOException
-
composeValueSetConceptSetFilterComponent
protected void composeValueSetConceptSetFilterComponent(String name, ValueSet.ConceptSetFilterComponent element) throws IOException
- Throws:
IOException
-
composeValueSetConceptSetFilterComponentInner
protected void composeValueSetConceptSetFilterComponentInner(ValueSet.ConceptSetFilterComponent element) throws IOException
- Throws:
IOException
-
composeValueSetValueSetExpansionComponent
protected void composeValueSetValueSetExpansionComponent(String name, ValueSet.ValueSetExpansionComponent element) throws IOException
- Throws:
IOException
-
composeValueSetValueSetExpansionComponentInner
protected void composeValueSetValueSetExpansionComponentInner(ValueSet.ValueSetExpansionComponent element) throws IOException
- Throws:
IOException
-
composeValueSetValueSetExpansionParameterComponent
protected void composeValueSetValueSetExpansionParameterComponent(String name, ValueSet.ValueSetExpansionParameterComponent element) throws IOException
- Throws:
IOException
-
composeValueSetValueSetExpansionParameterComponentInner
protected void composeValueSetValueSetExpansionParameterComponentInner(ValueSet.ValueSetExpansionParameterComponent element) throws IOException
- Throws:
IOException
-
composeValueSetValueSetExpansionContainsComponent
protected void composeValueSetValueSetExpansionContainsComponent(String name, ValueSet.ValueSetExpansionContainsComponent element) throws IOException
- Throws:
IOException
-
composeValueSetValueSetExpansionContainsComponentInner
protected void composeValueSetValueSetExpansionContainsComponentInner(ValueSet.ValueSetExpansionContainsComponent element) throws IOException
- Throws:
IOException
-
composeVerificationResult
protected void composeVerificationResult(String name, VerificationResult element) throws IOException
- Throws:
IOException
-
composeVerificationResultInner
protected void composeVerificationResultInner(VerificationResult element) throws IOException
- Throws:
IOException
-
composeVerificationResultVerificationResultPrimarySourceComponent
protected void composeVerificationResultVerificationResultPrimarySourceComponent(String name, VerificationResult.VerificationResultPrimarySourceComponent element) throws IOException
- Throws:
IOException
-
composeVerificationResultVerificationResultPrimarySourceComponentInner
protected void composeVerificationResultVerificationResultPrimarySourceComponentInner(VerificationResult.VerificationResultPrimarySourceComponent element) throws IOException
- Throws:
IOException
-
composeVerificationResultVerificationResultAttestationComponent
protected void composeVerificationResultVerificationResultAttestationComponent(String name, VerificationResult.VerificationResultAttestationComponent element) throws IOException
- Throws:
IOException
-
composeVerificationResultVerificationResultAttestationComponentInner
protected void composeVerificationResultVerificationResultAttestationComponentInner(VerificationResult.VerificationResultAttestationComponent element) throws IOException
- Throws:
IOException
-
composeVerificationResultVerificationResultValidatorComponent
protected void composeVerificationResultVerificationResultValidatorComponent(String name, VerificationResult.VerificationResultValidatorComponent element) throws IOException
- Throws:
IOException
-
composeVerificationResultVerificationResultValidatorComponentInner
protected void composeVerificationResultVerificationResultValidatorComponentInner(VerificationResult.VerificationResultValidatorComponent element) throws IOException
- Throws:
IOException
-
composeVisionPrescription
protected void composeVisionPrescription(String name, VisionPrescription element) throws IOException
- Throws:
IOException
-
composeVisionPrescriptionInner
protected void composeVisionPrescriptionInner(VisionPrescription element) throws IOException
- Throws:
IOException
-
composeVisionPrescriptionVisionPrescriptionLensSpecificationComponent
protected void composeVisionPrescriptionVisionPrescriptionLensSpecificationComponent(String name, VisionPrescription.VisionPrescriptionLensSpecificationComponent element) throws IOException
- Throws:
IOException
-
composeVisionPrescriptionVisionPrescriptionLensSpecificationComponentInner
protected void composeVisionPrescriptionVisionPrescriptionLensSpecificationComponentInner(VisionPrescription.VisionPrescriptionLensSpecificationComponent element) throws IOException
- Throws:
IOException
-
composeVisionPrescriptionPrismComponent
protected void composeVisionPrescriptionPrismComponent(String name, VisionPrescription.PrismComponent element) throws IOException
- Throws:
IOException
-
composeVisionPrescriptionPrismComponentInner
protected void composeVisionPrescriptionPrismComponentInner(VisionPrescription.PrismComponent element) throws IOException
- Throws:
IOException
-
composeResource
protected void composeResource(Resource resource) throws IOException
- Specified by:
composeResourcein classJsonParserBase- Throws:
IOException
-
composeNamedReference
protected void composeNamedReference(String name, Resource resource) throws IOException
- Throws:
IOException
-
composeType
protected void composeType(String prefix, Type type) throws IOException
- Specified by:
composeTypein classJsonParserBase- Throws:
IOException
-
composeTypeInner
protected void composeTypeInner(Type type) throws IOException
- Specified by:
composeTypeInnerin classJsonParserBase- Throws:
IOException
-
-