Package org.hl7.fhir.r4b.formats
Class JsonParser
- java.lang.Object
-
- org.hl7.fhir.r4b.formats.FormatUtilities
-
- org.hl7.fhir.r4b.formats.ParserBase
-
- org.hl7.fhir.r4b.formats.JsonParserBase
-
- org.hl7.fhir.r4b.formats.JsonParser
-
- All Implemented Interfaces:
IParser
public class JsonParser extends JsonParserBase
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.hl7.fhir.r4b.formats.IParser
IParser.OutputStyle
-
-
Field Summary
-
Fields inherited from class org.hl7.fhir.r4b.formats.JsonParserBase
json
-
Fields inherited from class org.hl7.fhir.r4b.formats.ParserBase
allowComments, allowUnknownContent, handleComments, idMap, style, xhtmlMessage
-
Fields inherited from class org.hl7.fhir.r4b.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.r4b.formats.JsonParserBase
anyHasExtras, anyHasValue, close, closeArray, closeObject, compose, compose, compose, composeDomainResource, composeStringCore, composeStringExtras, composeXhtml, getJArray, 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.r4b.formats.ParserBase
composeBytes, composeBytes, composeString, composeString, getHandleComments, getOutputStyle, isAllowComments, isAllowUnknownContent, parse, parse, parseAndClose, 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.r4b.formats.FormatUtilities
determineFormat, determineFormat, isValidId, 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.r4b.formats.IParser
composeBytes, composeBytes, composeString, composeString, getHandleComments, getOutputStyle, isAllowUnknownContent, parse, parse, parseAndClose, 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
-
parseBaseProperties
protected void parseBaseProperties(com.google.gson.JsonObject json, Base res) 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
-
parseInteger64
protected Integer64Type parseInteger64(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
-
parseElementProperties
protected void parseElementProperties(com.google.gson.JsonObject json, Element res) 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 res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDataTypeProperties
protected void parseDataTypeProperties(com.google.gson.JsonObject json, DataType 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
-
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
-
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
-
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
-
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
-
parseCodeableReference
protected CodeableReference parseCodeableReference(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCodeableReferenceProperties
protected void parseCodeableReferenceProperties(com.google.gson.JsonObject json, CodeableReference 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
-
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
-
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
-
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
-
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
-
parseDataRequirementCodeFilterComponent
protected DataRequirement.DataRequirementCodeFilterComponent parseDataRequirementCodeFilterComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDataRequirementCodeFilterComponentProperties
protected void parseDataRequirementCodeFilterComponentProperties(com.google.gson.JsonObject json, DataRequirement.DataRequirementCodeFilterComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDataRequirementDateFilterComponent
protected DataRequirement.DataRequirementDateFilterComponent parseDataRequirementDateFilterComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDataRequirementDateFilterComponentProperties
protected void parseDataRequirementDateFilterComponentProperties(com.google.gson.JsonObject json, DataRequirement.DataRequirementDateFilterComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDataRequirementSortComponent
protected DataRequirement.DataRequirementSortComponent parseDataRequirementSortComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDataRequirementSortComponentProperties
protected void parseDataRequirementSortComponentProperties(com.google.gson.JsonObject json, DataRequirement.DataRequirementSortComponent 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
-
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
-
parseDosageDoseAndRateComponent
protected Dosage.DosageDoseAndRateComponent parseDosageDoseAndRateComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDosageDoseAndRateComponentProperties
protected void parseDosageDoseAndRateComponentProperties(com.google.gson.JsonObject json, Dosage.DosageDoseAndRateComponent 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
-
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
-
parseElementDefinitionSlicingComponent
protected ElementDefinition.ElementDefinitionSlicingComponent parseElementDefinitionSlicingComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseElementDefinitionSlicingComponentProperties
protected void parseElementDefinitionSlicingComponentProperties(com.google.gson.JsonObject json, ElementDefinition.ElementDefinitionSlicingComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseElementDefinitionSlicingDiscriminatorComponent
protected ElementDefinition.ElementDefinitionSlicingDiscriminatorComponent parseElementDefinitionSlicingDiscriminatorComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseElementDefinitionSlicingDiscriminatorComponentProperties
protected void parseElementDefinitionSlicingDiscriminatorComponentProperties(com.google.gson.JsonObject json, ElementDefinition.ElementDefinitionSlicingDiscriminatorComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseElementDefinitionBaseComponent
protected ElementDefinition.ElementDefinitionBaseComponent parseElementDefinitionBaseComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseElementDefinitionBaseComponentProperties
protected void parseElementDefinitionBaseComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseElementDefinitionTypeRefComponentProperties
protected void parseElementDefinitionTypeRefComponentProperties(com.google.gson.JsonObject json, ElementDefinition.TypeRefComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseElementDefinitionExampleComponent
protected ElementDefinition.ElementDefinitionExampleComponent parseElementDefinitionExampleComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseElementDefinitionExampleComponentProperties
protected void parseElementDefinitionExampleComponentProperties(com.google.gson.JsonObject json, ElementDefinition.ElementDefinitionExampleComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseElementDefinitionConstraintComponent
protected ElementDefinition.ElementDefinitionConstraintComponent parseElementDefinitionConstraintComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseElementDefinitionConstraintComponentProperties
protected void parseElementDefinitionConstraintComponentProperties(com.google.gson.JsonObject json, ElementDefinition.ElementDefinitionConstraintComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseElementDefinitionBindingComponent
protected ElementDefinition.ElementDefinitionBindingComponent parseElementDefinitionBindingComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseElementDefinitionBindingComponentProperties
protected void parseElementDefinitionBindingComponentProperties(com.google.gson.JsonObject json, ElementDefinition.ElementDefinitionBindingComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseElementDefinitionMappingComponent
protected ElementDefinition.ElementDefinitionMappingComponent parseElementDefinitionMappingComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseElementDefinitionMappingComponentProperties
protected void parseElementDefinitionMappingComponentProperties(com.google.gson.JsonObject json, ElementDefinition.ElementDefinitionMappingComponent 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
-
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
-
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
-
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
-
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
-
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
-
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
-
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
-
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
-
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
-
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
-
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
-
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
-
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
-
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
-
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
-
parseRatioRange
protected RatioRange parseRatioRange(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRatioRangeProperties
protected void parseRatioRangeProperties(com.google.gson.JsonObject json, RatioRange 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
-
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
-
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
-
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
-
parseTimingRepeatComponent
protected Timing.TimingRepeatComponent parseTimingRepeatComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTimingRepeatComponentProperties
protected void parseTimingRepeatComponentProperties(com.google.gson.JsonObject json, Timing.TimingRepeatComponent 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
-
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
-
parseResourceProperties
protected void parseResourceProperties(com.google.gson.JsonObject json, Resource 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
-
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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAccountCoverageComponentProperties
protected void parseAccountCoverageComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAccountGuarantorComponentProperties
protected void parseAccountGuarantorComponentProperties(com.google.gson.JsonObject json, 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
-
parseActivityDefinitionParticipantComponent
protected ActivityDefinition.ActivityDefinitionParticipantComponent parseActivityDefinitionParticipantComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseActivityDefinitionParticipantComponentProperties
protected void parseActivityDefinitionParticipantComponentProperties(com.google.gson.JsonObject json, ActivityDefinition.ActivityDefinitionParticipantComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseActivityDefinitionDynamicValueComponent
protected ActivityDefinition.ActivityDefinitionDynamicValueComponent parseActivityDefinitionDynamicValueComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseActivityDefinitionDynamicValueComponentProperties
protected void parseActivityDefinitionDynamicValueComponentProperties(com.google.gson.JsonObject json, ActivityDefinition.ActivityDefinitionDynamicValueComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAdministrableProductDefinition
protected AdministrableProductDefinition parseAdministrableProductDefinition(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAdministrableProductDefinitionProperties
protected void parseAdministrableProductDefinitionProperties(com.google.gson.JsonObject json, AdministrableProductDefinition res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAdministrableProductDefinitionPropertyComponent
protected AdministrableProductDefinition.AdministrableProductDefinitionPropertyComponent parseAdministrableProductDefinitionPropertyComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAdministrableProductDefinitionPropertyComponentProperties
protected void parseAdministrableProductDefinitionPropertyComponentProperties(com.google.gson.JsonObject json, AdministrableProductDefinition.AdministrableProductDefinitionPropertyComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAdministrableProductDefinitionRouteOfAdministrationComponent
protected AdministrableProductDefinition.AdministrableProductDefinitionRouteOfAdministrationComponent parseAdministrableProductDefinitionRouteOfAdministrationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAdministrableProductDefinitionRouteOfAdministrationComponentProperties
protected void parseAdministrableProductDefinitionRouteOfAdministrationComponentProperties(com.google.gson.JsonObject json, AdministrableProductDefinition.AdministrableProductDefinitionRouteOfAdministrationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAdministrableProductDefinitionRouteOfAdministrationTargetSpeciesComponent
protected AdministrableProductDefinition.AdministrableProductDefinitionRouteOfAdministrationTargetSpeciesComponent parseAdministrableProductDefinitionRouteOfAdministrationTargetSpeciesComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAdministrableProductDefinitionRouteOfAdministrationTargetSpeciesComponentProperties
protected void parseAdministrableProductDefinitionRouteOfAdministrationTargetSpeciesComponentProperties(com.google.gson.JsonObject json, AdministrableProductDefinition.AdministrableProductDefinitionRouteOfAdministrationTargetSpeciesComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAdministrableProductDefinitionRouteOfAdministrationTargetSpeciesWithdrawalPeriodComponent
protected AdministrableProductDefinition.AdministrableProductDefinitionRouteOfAdministrationTargetSpeciesWithdrawalPeriodComponent parseAdministrableProductDefinitionRouteOfAdministrationTargetSpeciesWithdrawalPeriodComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAdministrableProductDefinitionRouteOfAdministrationTargetSpeciesWithdrawalPeriodComponentProperties
protected void parseAdministrableProductDefinitionRouteOfAdministrationTargetSpeciesWithdrawalPeriodComponentProperties(com.google.gson.JsonObject json, AdministrableProductDefinition.AdministrableProductDefinitionRouteOfAdministrationTargetSpeciesWithdrawalPeriodComponent 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
-
parseAdverseEventSuspectEntityComponent
protected AdverseEvent.AdverseEventSuspectEntityComponent parseAdverseEventSuspectEntityComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAdverseEventSuspectEntityComponentProperties
protected void parseAdverseEventSuspectEntityComponentProperties(com.google.gson.JsonObject json, AdverseEvent.AdverseEventSuspectEntityComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAdverseEventSuspectEntityCausalityComponent
protected AdverseEvent.AdverseEventSuspectEntityCausalityComponent parseAdverseEventSuspectEntityCausalityComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAdverseEventSuspectEntityCausalityComponentProperties
protected void parseAdverseEventSuspectEntityCausalityComponentProperties(com.google.gson.JsonObject json, 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
-
parseAllergyIntoleranceReactionComponent
protected AllergyIntolerance.AllergyIntoleranceReactionComponent parseAllergyIntoleranceReactionComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAllergyIntoleranceReactionComponentProperties
protected void parseAllergyIntoleranceReactionComponentProperties(com.google.gson.JsonObject json, 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
-
parseAppointmentParticipantComponent
protected Appointment.AppointmentParticipantComponent parseAppointmentParticipantComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAppointmentParticipantComponentProperties
protected void parseAppointmentParticipantComponentProperties(com.google.gson.JsonObject json, 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
-
parseAuditEventAgentComponent
protected AuditEvent.AuditEventAgentComponent parseAuditEventAgentComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAuditEventAgentComponentProperties
protected void parseAuditEventAgentComponentProperties(com.google.gson.JsonObject json, AuditEvent.AuditEventAgentComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAuditEventAgentNetworkComponent
protected AuditEvent.AuditEventAgentNetworkComponent parseAuditEventAgentNetworkComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAuditEventAgentNetworkComponentProperties
protected void parseAuditEventAgentNetworkComponentProperties(com.google.gson.JsonObject json, AuditEvent.AuditEventAgentNetworkComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAuditEventSourceComponent
protected AuditEvent.AuditEventSourceComponent parseAuditEventSourceComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAuditEventSourceComponentProperties
protected void parseAuditEventSourceComponentProperties(com.google.gson.JsonObject json, AuditEvent.AuditEventSourceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAuditEventEntityComponent
protected AuditEvent.AuditEventEntityComponent parseAuditEventEntityComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAuditEventEntityComponentProperties
protected void parseAuditEventEntityComponentProperties(com.google.gson.JsonObject json, AuditEvent.AuditEventEntityComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAuditEventEntityDetailComponent
protected AuditEvent.AuditEventEntityDetailComponent parseAuditEventEntityDetailComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseAuditEventEntityDetailComponentProperties
protected void parseAuditEventEntityDetailComponentProperties(com.google.gson.JsonObject json, 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
-
parseBiologicallyDerivedProductCollectionComponent
protected BiologicallyDerivedProduct.BiologicallyDerivedProductCollectionComponent parseBiologicallyDerivedProductCollectionComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBiologicallyDerivedProductCollectionComponentProperties
protected void parseBiologicallyDerivedProductCollectionComponentProperties(com.google.gson.JsonObject json, BiologicallyDerivedProduct.BiologicallyDerivedProductCollectionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBiologicallyDerivedProductProcessingComponent
protected BiologicallyDerivedProduct.BiologicallyDerivedProductProcessingComponent parseBiologicallyDerivedProductProcessingComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBiologicallyDerivedProductProcessingComponentProperties
protected void parseBiologicallyDerivedProductProcessingComponentProperties(com.google.gson.JsonObject json, BiologicallyDerivedProduct.BiologicallyDerivedProductProcessingComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBiologicallyDerivedProductManipulationComponent
protected BiologicallyDerivedProduct.BiologicallyDerivedProductManipulationComponent parseBiologicallyDerivedProductManipulationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBiologicallyDerivedProductManipulationComponentProperties
protected void parseBiologicallyDerivedProductManipulationComponentProperties(com.google.gson.JsonObject json, BiologicallyDerivedProduct.BiologicallyDerivedProductManipulationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBiologicallyDerivedProductStorageComponent
protected BiologicallyDerivedProduct.BiologicallyDerivedProductStorageComponent parseBiologicallyDerivedProductStorageComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBiologicallyDerivedProductStorageComponentProperties
protected void parseBiologicallyDerivedProductStorageComponentProperties(com.google.gson.JsonObject json, 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
-
parseBundleLinkComponent
protected Bundle.BundleLinkComponent parseBundleLinkComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBundleLinkComponentProperties
protected void parseBundleLinkComponentProperties(com.google.gson.JsonObject json, Bundle.BundleLinkComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBundleEntryComponent
protected Bundle.BundleEntryComponent parseBundleEntryComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBundleEntryComponentProperties
protected void parseBundleEntryComponentProperties(com.google.gson.JsonObject json, Bundle.BundleEntryComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBundleEntrySearchComponent
protected Bundle.BundleEntrySearchComponent parseBundleEntrySearchComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBundleEntrySearchComponentProperties
protected void parseBundleEntrySearchComponentProperties(com.google.gson.JsonObject json, Bundle.BundleEntrySearchComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBundleEntryRequestComponent
protected Bundle.BundleEntryRequestComponent parseBundleEntryRequestComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBundleEntryRequestComponentProperties
protected void parseBundleEntryRequestComponentProperties(com.google.gson.JsonObject json, Bundle.BundleEntryRequestComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBundleEntryResponseComponent
protected Bundle.BundleEntryResponseComponent parseBundleEntryResponseComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseBundleEntryResponseComponentProperties
protected void parseBundleEntryResponseComponentProperties(com.google.gson.JsonObject json, 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
-
parseCapabilityStatementSoftwareComponent
protected CapabilityStatement.CapabilityStatementSoftwareComponent parseCapabilityStatementSoftwareComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementSoftwareComponentProperties
protected void parseCapabilityStatementSoftwareComponentProperties(com.google.gson.JsonObject json, CapabilityStatement.CapabilityStatementSoftwareComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementImplementationComponent
protected CapabilityStatement.CapabilityStatementImplementationComponent parseCapabilityStatementImplementationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementImplementationComponentProperties
protected void parseCapabilityStatementImplementationComponentProperties(com.google.gson.JsonObject json, CapabilityStatement.CapabilityStatementImplementationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementRestComponent
protected CapabilityStatement.CapabilityStatementRestComponent parseCapabilityStatementRestComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementRestComponentProperties
protected void parseCapabilityStatementRestComponentProperties(com.google.gson.JsonObject json, CapabilityStatement.CapabilityStatementRestComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementRestSecurityComponent
protected CapabilityStatement.CapabilityStatementRestSecurityComponent parseCapabilityStatementRestSecurityComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementRestSecurityComponentProperties
protected void parseCapabilityStatementRestSecurityComponentProperties(com.google.gson.JsonObject json, CapabilityStatement.CapabilityStatementRestSecurityComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementRestResourceComponent
protected CapabilityStatement.CapabilityStatementRestResourceComponent parseCapabilityStatementRestResourceComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementRestResourceComponentProperties
protected void parseCapabilityStatementRestResourceComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementResourceInteractionComponentProperties
protected void parseCapabilityStatementResourceInteractionComponentProperties(com.google.gson.JsonObject json, CapabilityStatement.ResourceInteractionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementRestResourceSearchParamComponent
protected CapabilityStatement.CapabilityStatementRestResourceSearchParamComponent parseCapabilityStatementRestResourceSearchParamComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementRestResourceSearchParamComponentProperties
protected void parseCapabilityStatementRestResourceSearchParamComponentProperties(com.google.gson.JsonObject json, CapabilityStatement.CapabilityStatementRestResourceSearchParamComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementRestResourceOperationComponent
protected CapabilityStatement.CapabilityStatementRestResourceOperationComponent parseCapabilityStatementRestResourceOperationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementRestResourceOperationComponentProperties
protected void parseCapabilityStatementRestResourceOperationComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementSystemInteractionComponentProperties
protected void parseCapabilityStatementSystemInteractionComponentProperties(com.google.gson.JsonObject json, CapabilityStatement.SystemInteractionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementMessagingComponent
protected CapabilityStatement.CapabilityStatementMessagingComponent parseCapabilityStatementMessagingComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementMessagingComponentProperties
protected void parseCapabilityStatementMessagingComponentProperties(com.google.gson.JsonObject json, CapabilityStatement.CapabilityStatementMessagingComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementMessagingEndpointComponent
protected CapabilityStatement.CapabilityStatementMessagingEndpointComponent parseCapabilityStatementMessagingEndpointComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementMessagingEndpointComponentProperties
protected void parseCapabilityStatementMessagingEndpointComponentProperties(com.google.gson.JsonObject json, CapabilityStatement.CapabilityStatementMessagingEndpointComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementMessagingSupportedMessageComponent
protected CapabilityStatement.CapabilityStatementMessagingSupportedMessageComponent parseCapabilityStatementMessagingSupportedMessageComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementMessagingSupportedMessageComponentProperties
protected void parseCapabilityStatementMessagingSupportedMessageComponentProperties(com.google.gson.JsonObject json, CapabilityStatement.CapabilityStatementMessagingSupportedMessageComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementDocumentComponent
protected CapabilityStatement.CapabilityStatementDocumentComponent parseCapabilityStatementDocumentComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCapabilityStatementDocumentComponentProperties
protected void parseCapabilityStatementDocumentComponentProperties(com.google.gson.JsonObject json, 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
-
parseCarePlanActivityComponent
protected CarePlan.CarePlanActivityComponent parseCarePlanActivityComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCarePlanActivityComponentProperties
protected void parseCarePlanActivityComponentProperties(com.google.gson.JsonObject json, CarePlan.CarePlanActivityComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCarePlanActivityDetailComponent
protected CarePlan.CarePlanActivityDetailComponent parseCarePlanActivityDetailComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCarePlanActivityDetailComponentProperties
protected void parseCarePlanActivityDetailComponentProperties(com.google.gson.JsonObject json, 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
-
parseCareTeamParticipantComponent
protected CareTeam.CareTeamParticipantComponent parseCareTeamParticipantComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCareTeamParticipantComponentProperties
protected void parseCareTeamParticipantComponentProperties(com.google.gson.JsonObject json, 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
-
parseCatalogEntryRelatedEntryComponent
protected CatalogEntry.CatalogEntryRelatedEntryComponent parseCatalogEntryRelatedEntryComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCatalogEntryRelatedEntryComponentProperties
protected void parseCatalogEntryRelatedEntryComponentProperties(com.google.gson.JsonObject json, 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
-
parseChargeItemPerformerComponent
protected ChargeItem.ChargeItemPerformerComponent parseChargeItemPerformerComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseChargeItemPerformerComponentProperties
protected void parseChargeItemPerformerComponentProperties(com.google.gson.JsonObject json, 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
-
parseChargeItemDefinitionApplicabilityComponent
protected ChargeItemDefinition.ChargeItemDefinitionApplicabilityComponent parseChargeItemDefinitionApplicabilityComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseChargeItemDefinitionApplicabilityComponentProperties
protected void parseChargeItemDefinitionApplicabilityComponentProperties(com.google.gson.JsonObject json, ChargeItemDefinition.ChargeItemDefinitionApplicabilityComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseChargeItemDefinitionPropertyGroupComponent
protected ChargeItemDefinition.ChargeItemDefinitionPropertyGroupComponent parseChargeItemDefinitionPropertyGroupComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseChargeItemDefinitionPropertyGroupComponentProperties
protected void parseChargeItemDefinitionPropertyGroupComponentProperties(com.google.gson.JsonObject json, ChargeItemDefinition.ChargeItemDefinitionPropertyGroupComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseChargeItemDefinitionPropertyGroupPriceComponentComponent
protected ChargeItemDefinition.ChargeItemDefinitionPropertyGroupPriceComponentComponent parseChargeItemDefinitionPropertyGroupPriceComponentComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseChargeItemDefinitionPropertyGroupPriceComponentComponentProperties
protected void parseChargeItemDefinitionPropertyGroupPriceComponentComponentProperties(com.google.gson.JsonObject json, ChargeItemDefinition.ChargeItemDefinitionPropertyGroupPriceComponentComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitation
protected Citation parseCitation(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationProperties
protected void parseCitationProperties(com.google.gson.JsonObject json, Citation res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationClassificationComponent
protected Citation.CitationClassificationComponent parseCitationClassificationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationClassificationComponentProperties
protected void parseCitationClassificationComponentProperties(com.google.gson.JsonObject json, Citation.CitationClassificationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationStatusDateComponent
protected Citation.CitationStatusDateComponent parseCitationStatusDateComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationStatusDateComponentProperties
protected void parseCitationStatusDateComponentProperties(com.google.gson.JsonObject json, Citation.CitationStatusDateComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationRelatesToComponent
protected Citation.CitationRelatesToComponent parseCitationRelatesToComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationRelatesToComponentProperties
protected void parseCitationRelatesToComponentProperties(com.google.gson.JsonObject json, Citation.CitationRelatesToComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactComponent
protected Citation.CitationCitedArtifactComponent parseCitationCitedArtifactComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactComponentProperties
protected void parseCitationCitedArtifactComponentProperties(com.google.gson.JsonObject json, Citation.CitationCitedArtifactComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactVersionComponent
protected Citation.CitationCitedArtifactVersionComponent parseCitationCitedArtifactVersionComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactVersionComponentProperties
protected void parseCitationCitedArtifactVersionComponentProperties(com.google.gson.JsonObject json, Citation.CitationCitedArtifactVersionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactStatusDateComponent
protected Citation.CitationCitedArtifactStatusDateComponent parseCitationCitedArtifactStatusDateComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactStatusDateComponentProperties
protected void parseCitationCitedArtifactStatusDateComponentProperties(com.google.gson.JsonObject json, Citation.CitationCitedArtifactStatusDateComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactTitleComponent
protected Citation.CitationCitedArtifactTitleComponent parseCitationCitedArtifactTitleComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactTitleComponentProperties
protected void parseCitationCitedArtifactTitleComponentProperties(com.google.gson.JsonObject json, Citation.CitationCitedArtifactTitleComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactAbstractComponent
protected Citation.CitationCitedArtifactAbstractComponent parseCitationCitedArtifactAbstractComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactAbstractComponentProperties
protected void parseCitationCitedArtifactAbstractComponentProperties(com.google.gson.JsonObject json, Citation.CitationCitedArtifactAbstractComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactPartComponent
protected Citation.CitationCitedArtifactPartComponent parseCitationCitedArtifactPartComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactPartComponentProperties
protected void parseCitationCitedArtifactPartComponentProperties(com.google.gson.JsonObject json, Citation.CitationCitedArtifactPartComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactRelatesToComponent
protected Citation.CitationCitedArtifactRelatesToComponent parseCitationCitedArtifactRelatesToComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactRelatesToComponentProperties
protected void parseCitationCitedArtifactRelatesToComponentProperties(com.google.gson.JsonObject json, Citation.CitationCitedArtifactRelatesToComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactPublicationFormComponent
protected Citation.CitationCitedArtifactPublicationFormComponent parseCitationCitedArtifactPublicationFormComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactPublicationFormComponentProperties
protected void parseCitationCitedArtifactPublicationFormComponentProperties(com.google.gson.JsonObject json, Citation.CitationCitedArtifactPublicationFormComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactPublicationFormPublishedInComponent
protected Citation.CitationCitedArtifactPublicationFormPublishedInComponent parseCitationCitedArtifactPublicationFormPublishedInComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactPublicationFormPublishedInComponentProperties
protected void parseCitationCitedArtifactPublicationFormPublishedInComponentProperties(com.google.gson.JsonObject json, Citation.CitationCitedArtifactPublicationFormPublishedInComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactPublicationFormPeriodicReleaseComponent
protected Citation.CitationCitedArtifactPublicationFormPeriodicReleaseComponent parseCitationCitedArtifactPublicationFormPeriodicReleaseComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactPublicationFormPeriodicReleaseComponentProperties
protected void parseCitationCitedArtifactPublicationFormPeriodicReleaseComponentProperties(com.google.gson.JsonObject json, Citation.CitationCitedArtifactPublicationFormPeriodicReleaseComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactPublicationFormPeriodicReleaseDateOfPublicationComponent
protected Citation.CitationCitedArtifactPublicationFormPeriodicReleaseDateOfPublicationComponent parseCitationCitedArtifactPublicationFormPeriodicReleaseDateOfPublicationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactPublicationFormPeriodicReleaseDateOfPublicationComponentProperties
protected void parseCitationCitedArtifactPublicationFormPeriodicReleaseDateOfPublicationComponentProperties(com.google.gson.JsonObject json, Citation.CitationCitedArtifactPublicationFormPeriodicReleaseDateOfPublicationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactWebLocationComponent
protected Citation.CitationCitedArtifactWebLocationComponent parseCitationCitedArtifactWebLocationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactWebLocationComponentProperties
protected void parseCitationCitedArtifactWebLocationComponentProperties(com.google.gson.JsonObject json, Citation.CitationCitedArtifactWebLocationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactClassificationComponent
protected Citation.CitationCitedArtifactClassificationComponent parseCitationCitedArtifactClassificationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactClassificationComponentProperties
protected void parseCitationCitedArtifactClassificationComponentProperties(com.google.gson.JsonObject json, Citation.CitationCitedArtifactClassificationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactClassificationWhoClassifiedComponent
protected Citation.CitationCitedArtifactClassificationWhoClassifiedComponent parseCitationCitedArtifactClassificationWhoClassifiedComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactClassificationWhoClassifiedComponentProperties
protected void parseCitationCitedArtifactClassificationWhoClassifiedComponentProperties(com.google.gson.JsonObject json, Citation.CitationCitedArtifactClassificationWhoClassifiedComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactContributorshipComponent
protected Citation.CitationCitedArtifactContributorshipComponent parseCitationCitedArtifactContributorshipComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactContributorshipComponentProperties
protected void parseCitationCitedArtifactContributorshipComponentProperties(com.google.gson.JsonObject json, Citation.CitationCitedArtifactContributorshipComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactContributorshipEntryComponent
protected Citation.CitationCitedArtifactContributorshipEntryComponent parseCitationCitedArtifactContributorshipEntryComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactContributorshipEntryComponentProperties
protected void parseCitationCitedArtifactContributorshipEntryComponentProperties(com.google.gson.JsonObject json, Citation.CitationCitedArtifactContributorshipEntryComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactContributorshipEntryAffiliationInfoComponent
protected Citation.CitationCitedArtifactContributorshipEntryAffiliationInfoComponent parseCitationCitedArtifactContributorshipEntryAffiliationInfoComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactContributorshipEntryAffiliationInfoComponentProperties
protected void parseCitationCitedArtifactContributorshipEntryAffiliationInfoComponentProperties(com.google.gson.JsonObject json, Citation.CitationCitedArtifactContributorshipEntryAffiliationInfoComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactContributorshipEntryContributionInstanceComponent
protected Citation.CitationCitedArtifactContributorshipEntryContributionInstanceComponent parseCitationCitedArtifactContributorshipEntryContributionInstanceComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactContributorshipEntryContributionInstanceComponentProperties
protected void parseCitationCitedArtifactContributorshipEntryContributionInstanceComponentProperties(com.google.gson.JsonObject json, Citation.CitationCitedArtifactContributorshipEntryContributionInstanceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactContributorshipSummaryComponent
protected Citation.CitationCitedArtifactContributorshipSummaryComponent parseCitationCitedArtifactContributorshipSummaryComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCitationCitedArtifactContributorshipSummaryComponentProperties
protected void parseCitationCitedArtifactContributorshipSummaryComponentProperties(com.google.gson.JsonObject json, Citation.CitationCitedArtifactContributorshipSummaryComponent 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimRelatedClaimComponentProperties
protected void parseClaimRelatedClaimComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimPayeeComponentProperties
protected void parseClaimPayeeComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimCareTeamComponentProperties
protected void parseClaimCareTeamComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimSupportingInformationComponentProperties
protected void parseClaimSupportingInformationComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimDiagnosisComponentProperties
protected void parseClaimDiagnosisComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimProcedureComponentProperties
protected void parseClaimProcedureComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimInsuranceComponentProperties
protected void parseClaimInsuranceComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimAccidentComponentProperties
protected void parseClaimAccidentComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimItemComponentProperties
protected void parseClaimItemComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimDetailComponentProperties
protected void parseClaimDetailComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimSubDetailComponentProperties
protected void parseClaimSubDetailComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponseItemComponentProperties
protected void parseClaimResponseItemComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponseAdjudicationComponentProperties
protected void parseClaimResponseAdjudicationComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponseItemDetailComponentProperties
protected void parseClaimResponseItemDetailComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponseSubDetailComponentProperties
protected void parseClaimResponseSubDetailComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponseAddedItemComponentProperties
protected void parseClaimResponseAddedItemComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponseAddedItemDetailComponentProperties
protected void parseClaimResponseAddedItemDetailComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponseAddedItemSubDetailComponentProperties
protected void parseClaimResponseAddedItemSubDetailComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponseTotalComponentProperties
protected void parseClaimResponseTotalComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponsePaymentComponentProperties
protected void parseClaimResponsePaymentComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponseNoteComponentProperties
protected void parseClaimResponseNoteComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponseInsuranceComponentProperties
protected void parseClaimResponseInsuranceComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClaimResponseErrorComponentProperties
protected void parseClaimResponseErrorComponentProperties(com.google.gson.JsonObject json, 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
-
parseClinicalImpressionInvestigationComponent
protected ClinicalImpression.ClinicalImpressionInvestigationComponent parseClinicalImpressionInvestigationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClinicalImpressionInvestigationComponentProperties
protected void parseClinicalImpressionInvestigationComponentProperties(com.google.gson.JsonObject json, ClinicalImpression.ClinicalImpressionInvestigationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClinicalImpressionFindingComponent
protected ClinicalImpression.ClinicalImpressionFindingComponent parseClinicalImpressionFindingComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClinicalImpressionFindingComponentProperties
protected void parseClinicalImpressionFindingComponentProperties(com.google.gson.JsonObject json, ClinicalImpression.ClinicalImpressionFindingComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClinicalUseDefinition
protected ClinicalUseDefinition parseClinicalUseDefinition(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClinicalUseDefinitionProperties
protected void parseClinicalUseDefinitionProperties(com.google.gson.JsonObject json, ClinicalUseDefinition res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClinicalUseDefinitionContraindicationComponent
protected ClinicalUseDefinition.ClinicalUseDefinitionContraindicationComponent parseClinicalUseDefinitionContraindicationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClinicalUseDefinitionContraindicationComponentProperties
protected void parseClinicalUseDefinitionContraindicationComponentProperties(com.google.gson.JsonObject json, ClinicalUseDefinition.ClinicalUseDefinitionContraindicationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClinicalUseDefinitionContraindicationOtherTherapyComponent
protected ClinicalUseDefinition.ClinicalUseDefinitionContraindicationOtherTherapyComponent parseClinicalUseDefinitionContraindicationOtherTherapyComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClinicalUseDefinitionContraindicationOtherTherapyComponentProperties
protected void parseClinicalUseDefinitionContraindicationOtherTherapyComponentProperties(com.google.gson.JsonObject json, ClinicalUseDefinition.ClinicalUseDefinitionContraindicationOtherTherapyComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClinicalUseDefinitionIndicationComponent
protected ClinicalUseDefinition.ClinicalUseDefinitionIndicationComponent parseClinicalUseDefinitionIndicationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClinicalUseDefinitionIndicationComponentProperties
protected void parseClinicalUseDefinitionIndicationComponentProperties(com.google.gson.JsonObject json, ClinicalUseDefinition.ClinicalUseDefinitionIndicationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClinicalUseDefinitionInteractionComponent
protected ClinicalUseDefinition.ClinicalUseDefinitionInteractionComponent parseClinicalUseDefinitionInteractionComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClinicalUseDefinitionInteractionComponentProperties
protected void parseClinicalUseDefinitionInteractionComponentProperties(com.google.gson.JsonObject json, ClinicalUseDefinition.ClinicalUseDefinitionInteractionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClinicalUseDefinitionInteractionInteractantComponent
protected ClinicalUseDefinition.ClinicalUseDefinitionInteractionInteractantComponent parseClinicalUseDefinitionInteractionInteractantComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClinicalUseDefinitionInteractionInteractantComponentProperties
protected void parseClinicalUseDefinitionInteractionInteractantComponentProperties(com.google.gson.JsonObject json, ClinicalUseDefinition.ClinicalUseDefinitionInteractionInteractantComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClinicalUseDefinitionUndesirableEffectComponent
protected ClinicalUseDefinition.ClinicalUseDefinitionUndesirableEffectComponent parseClinicalUseDefinitionUndesirableEffectComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClinicalUseDefinitionUndesirableEffectComponentProperties
protected void parseClinicalUseDefinitionUndesirableEffectComponentProperties(com.google.gson.JsonObject json, ClinicalUseDefinition.ClinicalUseDefinitionUndesirableEffectComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClinicalUseDefinitionWarningComponent
protected ClinicalUseDefinition.ClinicalUseDefinitionWarningComponent parseClinicalUseDefinitionWarningComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseClinicalUseDefinitionWarningComponentProperties
protected void parseClinicalUseDefinitionWarningComponentProperties(com.google.gson.JsonObject json, ClinicalUseDefinition.ClinicalUseDefinitionWarningComponent 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
-
parseCodeSystemFilterComponent
protected CodeSystem.CodeSystemFilterComponent parseCodeSystemFilterComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCodeSystemFilterComponentProperties
protected void parseCodeSystemFilterComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCodeSystemPropertyComponentProperties
protected void parseCodeSystemPropertyComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCodeSystemConceptDefinitionComponentProperties
protected void parseCodeSystemConceptDefinitionComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCodeSystemConceptDefinitionDesignationComponentProperties
protected void parseCodeSystemConceptDefinitionDesignationComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCodeSystemConceptPropertyComponentProperties
protected void parseCodeSystemConceptPropertyComponentProperties(com.google.gson.JsonObject json, 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
-
parseCommunicationPayloadComponent
protected Communication.CommunicationPayloadComponent parseCommunicationPayloadComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCommunicationPayloadComponentProperties
protected void parseCommunicationPayloadComponentProperties(com.google.gson.JsonObject json, 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
-
parseCommunicationRequestPayloadComponent
protected CommunicationRequest.CommunicationRequestPayloadComponent parseCommunicationRequestPayloadComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCommunicationRequestPayloadComponentProperties
protected void parseCommunicationRequestPayloadComponentProperties(com.google.gson.JsonObject json, 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
-
parseCompartmentDefinitionResourceComponent
protected CompartmentDefinition.CompartmentDefinitionResourceComponent parseCompartmentDefinitionResourceComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCompartmentDefinitionResourceComponentProperties
protected void parseCompartmentDefinitionResourceComponentProperties(com.google.gson.JsonObject json, 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
-
parseCompositionAttesterComponent
protected Composition.CompositionAttesterComponent parseCompositionAttesterComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCompositionAttesterComponentProperties
protected void parseCompositionAttesterComponentProperties(com.google.gson.JsonObject json, Composition.CompositionAttesterComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCompositionRelatesToComponent
protected Composition.CompositionRelatesToComponent parseCompositionRelatesToComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCompositionRelatesToComponentProperties
protected void parseCompositionRelatesToComponentProperties(com.google.gson.JsonObject json, Composition.CompositionRelatesToComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCompositionEventComponent
protected Composition.CompositionEventComponent parseCompositionEventComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCompositionEventComponentProperties
protected void parseCompositionEventComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCompositionSectionComponentProperties
protected void parseCompositionSectionComponentProperties(com.google.gson.JsonObject json, 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
-
parseConceptMapGroupComponent
protected ConceptMap.ConceptMapGroupComponent parseConceptMapGroupComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConceptMapGroupComponentProperties
protected void parseConceptMapGroupComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConceptMapSourceElementComponentProperties
protected void parseConceptMapSourceElementComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConceptMapTargetElementComponentProperties
protected void parseConceptMapTargetElementComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConceptMapOtherElementComponentProperties
protected void parseConceptMapOtherElementComponentProperties(com.google.gson.JsonObject json, ConceptMap.OtherElementComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConceptMapGroupUnmappedComponent
protected ConceptMap.ConceptMapGroupUnmappedComponent parseConceptMapGroupUnmappedComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConceptMapGroupUnmappedComponentProperties
protected void parseConceptMapGroupUnmappedComponentProperties(com.google.gson.JsonObject json, 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
-
parseConditionStageComponent
protected Condition.ConditionStageComponent parseConditionStageComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConditionStageComponentProperties
protected void parseConditionStageComponentProperties(com.google.gson.JsonObject json, Condition.ConditionStageComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConditionEvidenceComponent
protected Condition.ConditionEvidenceComponent parseConditionEvidenceComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConditionEvidenceComponentProperties
protected void parseConditionEvidenceComponentProperties(com.google.gson.JsonObject json, 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
-
parseConsentPolicyComponent
protected Consent.ConsentPolicyComponent parseConsentPolicyComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConsentPolicyComponentProperties
protected void parseConsentPolicyComponentProperties(com.google.gson.JsonObject json, Consent.ConsentPolicyComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConsentVerificationComponent
protected Consent.ConsentVerificationComponent parseConsentVerificationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConsentVerificationComponentProperties
protected void parseConsentVerificationComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConsentProvisionComponentProperties
protected void parseConsentProvisionComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConsentProvisionActorComponentProperties
protected void parseConsentProvisionActorComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseConsentProvisionDataComponentProperties
protected void parseConsentProvisionDataComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractContentDefinitionComponentProperties
protected void parseContractContentDefinitionComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractTermComponentProperties
protected void parseContractTermComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractSecurityLabelComponentProperties
protected void parseContractSecurityLabelComponentProperties(com.google.gson.JsonObject json, Contract.SecurityLabelComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractOfferComponent
protected Contract.ContractOfferComponent parseContractOfferComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractOfferComponentProperties
protected void parseContractOfferComponentProperties(com.google.gson.JsonObject json, Contract.ContractOfferComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractPartyComponent
protected Contract.ContractPartyComponent parseContractPartyComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractPartyComponentProperties
protected void parseContractPartyComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractAnswerComponentProperties
protected void parseContractAnswerComponentProperties(com.google.gson.JsonObject json, Contract.AnswerComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractAssetComponent
protected Contract.ContractAssetComponent parseContractAssetComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractAssetComponentProperties
protected void parseContractAssetComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractAssetContextComponentProperties
protected void parseContractAssetContextComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractValuedItemComponentProperties
protected void parseContractValuedItemComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractActionComponentProperties
protected void parseContractActionComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractActionSubjectComponentProperties
protected void parseContractActionSubjectComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractSignatoryComponentProperties
protected void parseContractSignatoryComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractFriendlyLanguageComponentProperties
protected void parseContractFriendlyLanguageComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractLegalLanguageComponentProperties
protected void parseContractLegalLanguageComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseContractComputableLanguageComponentProperties
protected void parseContractComputableLanguageComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageClassComponentProperties
protected void parseCoverageClassComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageCostToBeneficiaryComponentProperties
protected void parseCoverageCostToBeneficiaryComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageExemptionComponentProperties
protected void parseCoverageExemptionComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageEligibilityRequestSupportingInformationComponentProperties
protected void parseCoverageEligibilityRequestSupportingInformationComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageEligibilityRequestInsuranceComponentProperties
protected void parseCoverageEligibilityRequestInsuranceComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageEligibilityRequestDetailsComponentProperties
protected void parseCoverageEligibilityRequestDetailsComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageEligibilityRequestDiagnosisComponentProperties
protected void parseCoverageEligibilityRequestDiagnosisComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageEligibilityResponseInsuranceComponentProperties
protected void parseCoverageEligibilityResponseInsuranceComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageEligibilityResponseItemsComponentProperties
protected void parseCoverageEligibilityResponseItemsComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageEligibilityResponseBenefitComponentProperties
protected void parseCoverageEligibilityResponseBenefitComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseCoverageEligibilityResponseErrorsComponentProperties
protected void parseCoverageEligibilityResponseErrorsComponentProperties(com.google.gson.JsonObject json, 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
-
parseDetectedIssueEvidenceComponent
protected DetectedIssue.DetectedIssueEvidenceComponent parseDetectedIssueEvidenceComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDetectedIssueEvidenceComponentProperties
protected void parseDetectedIssueEvidenceComponentProperties(com.google.gson.JsonObject json, DetectedIssue.DetectedIssueEvidenceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDetectedIssueMitigationComponent
protected DetectedIssue.DetectedIssueMitigationComponent parseDetectedIssueMitigationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDetectedIssueMitigationComponentProperties
protected void parseDetectedIssueMitigationComponentProperties(com.google.gson.JsonObject json, 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
-
parseDeviceUdiCarrierComponent
protected Device.DeviceUdiCarrierComponent parseDeviceUdiCarrierComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceUdiCarrierComponentProperties
protected void parseDeviceUdiCarrierComponentProperties(com.google.gson.JsonObject json, Device.DeviceUdiCarrierComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDeviceNameComponent
protected Device.DeviceDeviceNameComponent parseDeviceDeviceNameComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDeviceNameComponentProperties
protected void parseDeviceDeviceNameComponentProperties(com.google.gson.JsonObject json, Device.DeviceDeviceNameComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceSpecializationComponent
protected Device.DeviceSpecializationComponent parseDeviceSpecializationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceSpecializationComponentProperties
protected void parseDeviceSpecializationComponentProperties(com.google.gson.JsonObject json, Device.DeviceSpecializationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceVersionComponent
protected Device.DeviceVersionComponent parseDeviceVersionComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceVersionComponentProperties
protected void parseDeviceVersionComponentProperties(com.google.gson.JsonObject json, Device.DeviceVersionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDevicePropertyComponent
protected Device.DevicePropertyComponent parseDevicePropertyComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDevicePropertyComponentProperties
protected void parseDevicePropertyComponentProperties(com.google.gson.JsonObject json, 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
-
parseDeviceDefinitionUdiDeviceIdentifierComponent
protected DeviceDefinition.DeviceDefinitionUdiDeviceIdentifierComponent parseDeviceDefinitionUdiDeviceIdentifierComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDefinitionUdiDeviceIdentifierComponentProperties
protected void parseDeviceDefinitionUdiDeviceIdentifierComponentProperties(com.google.gson.JsonObject json, DeviceDefinition.DeviceDefinitionUdiDeviceIdentifierComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDefinitionDeviceNameComponent
protected DeviceDefinition.DeviceDefinitionDeviceNameComponent parseDeviceDefinitionDeviceNameComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDefinitionDeviceNameComponentProperties
protected void parseDeviceDefinitionDeviceNameComponentProperties(com.google.gson.JsonObject json, DeviceDefinition.DeviceDefinitionDeviceNameComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDefinitionSpecializationComponent
protected DeviceDefinition.DeviceDefinitionSpecializationComponent parseDeviceDefinitionSpecializationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDefinitionSpecializationComponentProperties
protected void parseDeviceDefinitionSpecializationComponentProperties(com.google.gson.JsonObject json, DeviceDefinition.DeviceDefinitionSpecializationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDefinitionCapabilityComponent
protected DeviceDefinition.DeviceDefinitionCapabilityComponent parseDeviceDefinitionCapabilityComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDefinitionCapabilityComponentProperties
protected void parseDeviceDefinitionCapabilityComponentProperties(com.google.gson.JsonObject json, DeviceDefinition.DeviceDefinitionCapabilityComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDefinitionPropertyComponent
protected DeviceDefinition.DeviceDefinitionPropertyComponent parseDeviceDefinitionPropertyComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDefinitionPropertyComponentProperties
protected void parseDeviceDefinitionPropertyComponentProperties(com.google.gson.JsonObject json, DeviceDefinition.DeviceDefinitionPropertyComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDefinitionMaterialComponent
protected DeviceDefinition.DeviceDefinitionMaterialComponent parseDeviceDefinitionMaterialComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceDefinitionMaterialComponentProperties
protected void parseDeviceDefinitionMaterialComponentProperties(com.google.gson.JsonObject json, 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
-
parseDeviceMetricCalibrationComponent
protected DeviceMetric.DeviceMetricCalibrationComponent parseDeviceMetricCalibrationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceMetricCalibrationComponentProperties
protected void parseDeviceMetricCalibrationComponentProperties(com.google.gson.JsonObject json, 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
-
parseDeviceRequestParameterComponent
protected DeviceRequest.DeviceRequestParameterComponent parseDeviceRequestParameterComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDeviceRequestParameterComponentProperties
protected void parseDeviceRequestParameterComponentProperties(com.google.gson.JsonObject json, 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
-
parseDiagnosticReportMediaComponent
protected DiagnosticReport.DiagnosticReportMediaComponent parseDiagnosticReportMediaComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDiagnosticReportMediaComponentProperties
protected void parseDiagnosticReportMediaComponentProperties(com.google.gson.JsonObject json, 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
-
parseDocumentManifestRelatedComponent
protected DocumentManifest.DocumentManifestRelatedComponent parseDocumentManifestRelatedComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDocumentManifestRelatedComponentProperties
protected void parseDocumentManifestRelatedComponentProperties(com.google.gson.JsonObject json, 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
-
parseDocumentReferenceRelatesToComponent
protected DocumentReference.DocumentReferenceRelatesToComponent parseDocumentReferenceRelatesToComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDocumentReferenceRelatesToComponentProperties
protected void parseDocumentReferenceRelatesToComponentProperties(com.google.gson.JsonObject json, DocumentReference.DocumentReferenceRelatesToComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDocumentReferenceContentComponent
protected DocumentReference.DocumentReferenceContentComponent parseDocumentReferenceContentComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDocumentReferenceContentComponentProperties
protected void parseDocumentReferenceContentComponentProperties(com.google.gson.JsonObject json, DocumentReference.DocumentReferenceContentComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDocumentReferenceContextComponent
protected DocumentReference.DocumentReferenceContextComponent parseDocumentReferenceContextComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseDocumentReferenceContextComponentProperties
protected void parseDocumentReferenceContextComponentProperties(com.google.gson.JsonObject json, DocumentReference.DocumentReferenceContextComponent 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEncounterStatusHistoryComponentProperties
protected void parseEncounterStatusHistoryComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEncounterClassHistoryComponentProperties
protected void parseEncounterClassHistoryComponentProperties(com.google.gson.JsonObject json, Encounter.ClassHistoryComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEncounterParticipantComponent
protected Encounter.EncounterParticipantComponent parseEncounterParticipantComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEncounterParticipantComponentProperties
protected void parseEncounterParticipantComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEncounterDiagnosisComponentProperties
protected void parseEncounterDiagnosisComponentProperties(com.google.gson.JsonObject json, Encounter.DiagnosisComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEncounterHospitalizationComponent
protected Encounter.EncounterHospitalizationComponent parseEncounterHospitalizationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEncounterHospitalizationComponentProperties
protected void parseEncounterHospitalizationComponentProperties(com.google.gson.JsonObject json, Encounter.EncounterHospitalizationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEncounterLocationComponent
protected Encounter.EncounterLocationComponent parseEncounterLocationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEncounterLocationComponentProperties
protected void parseEncounterLocationComponentProperties(com.google.gson.JsonObject json, 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
-
parseEpisodeOfCareStatusHistoryComponent
protected EpisodeOfCare.EpisodeOfCareStatusHistoryComponent parseEpisodeOfCareStatusHistoryComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEpisodeOfCareStatusHistoryComponentProperties
protected void parseEpisodeOfCareStatusHistoryComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEpisodeOfCareDiagnosisComponentProperties
protected void parseEpisodeOfCareDiagnosisComponentProperties(com.google.gson.JsonObject json, 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
-
parseEvidenceVariableDefinitionComponent
protected Evidence.EvidenceVariableDefinitionComponent parseEvidenceVariableDefinitionComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEvidenceVariableDefinitionComponentProperties
protected void parseEvidenceVariableDefinitionComponentProperties(com.google.gson.JsonObject json, Evidence.EvidenceVariableDefinitionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEvidenceStatisticComponent
protected Evidence.EvidenceStatisticComponent parseEvidenceStatisticComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEvidenceStatisticComponentProperties
protected void parseEvidenceStatisticComponentProperties(com.google.gson.JsonObject json, Evidence.EvidenceStatisticComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEvidenceStatisticSampleSizeComponent
protected Evidence.EvidenceStatisticSampleSizeComponent parseEvidenceStatisticSampleSizeComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEvidenceStatisticSampleSizeComponentProperties
protected void parseEvidenceStatisticSampleSizeComponentProperties(com.google.gson.JsonObject json, Evidence.EvidenceStatisticSampleSizeComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEvidenceStatisticAttributeEstimateComponent
protected Evidence.EvidenceStatisticAttributeEstimateComponent parseEvidenceStatisticAttributeEstimateComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEvidenceStatisticAttributeEstimateComponentProperties
protected void parseEvidenceStatisticAttributeEstimateComponentProperties(com.google.gson.JsonObject json, Evidence.EvidenceStatisticAttributeEstimateComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEvidenceStatisticModelCharacteristicComponent
protected Evidence.EvidenceStatisticModelCharacteristicComponent parseEvidenceStatisticModelCharacteristicComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEvidenceStatisticModelCharacteristicComponentProperties
protected void parseEvidenceStatisticModelCharacteristicComponentProperties(com.google.gson.JsonObject json, Evidence.EvidenceStatisticModelCharacteristicComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEvidenceStatisticModelCharacteristicVariableComponent
protected Evidence.EvidenceStatisticModelCharacteristicVariableComponent parseEvidenceStatisticModelCharacteristicVariableComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEvidenceStatisticModelCharacteristicVariableComponentProperties
protected void parseEvidenceStatisticModelCharacteristicVariableComponentProperties(com.google.gson.JsonObject json, Evidence.EvidenceStatisticModelCharacteristicVariableComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEvidenceCertaintyComponent
protected Evidence.EvidenceCertaintyComponent parseEvidenceCertaintyComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEvidenceCertaintyComponentProperties
protected void parseEvidenceCertaintyComponentProperties(com.google.gson.JsonObject json, Evidence.EvidenceCertaintyComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEvidenceReport
protected EvidenceReport parseEvidenceReport(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEvidenceReportProperties
protected void parseEvidenceReportProperties(com.google.gson.JsonObject json, EvidenceReport res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEvidenceReportSubjectComponent
protected EvidenceReport.EvidenceReportSubjectComponent parseEvidenceReportSubjectComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEvidenceReportSubjectComponentProperties
protected void parseEvidenceReportSubjectComponentProperties(com.google.gson.JsonObject json, EvidenceReport.EvidenceReportSubjectComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEvidenceReportSubjectCharacteristicComponent
protected EvidenceReport.EvidenceReportSubjectCharacteristicComponent parseEvidenceReportSubjectCharacteristicComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEvidenceReportSubjectCharacteristicComponentProperties
protected void parseEvidenceReportSubjectCharacteristicComponentProperties(com.google.gson.JsonObject json, EvidenceReport.EvidenceReportSubjectCharacteristicComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEvidenceReportRelatesToComponent
protected EvidenceReport.EvidenceReportRelatesToComponent parseEvidenceReportRelatesToComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEvidenceReportRelatesToComponentProperties
protected void parseEvidenceReportRelatesToComponentProperties(com.google.gson.JsonObject json, EvidenceReport.EvidenceReportRelatesToComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEvidenceReportSectionComponent
protected EvidenceReport.SectionComponent parseEvidenceReportSectionComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEvidenceReportSectionComponentProperties
protected void parseEvidenceReportSectionComponentProperties(com.google.gson.JsonObject json, EvidenceReport.SectionComponent 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
-
parseEvidenceVariableCharacteristicComponent
protected EvidenceVariable.EvidenceVariableCharacteristicComponent parseEvidenceVariableCharacteristicComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEvidenceVariableCharacteristicComponentProperties
protected void parseEvidenceVariableCharacteristicComponentProperties(com.google.gson.JsonObject json, EvidenceVariable.EvidenceVariableCharacteristicComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEvidenceVariableCharacteristicTimeFromStartComponent
protected EvidenceVariable.EvidenceVariableCharacteristicTimeFromStartComponent parseEvidenceVariableCharacteristicTimeFromStartComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEvidenceVariableCharacteristicTimeFromStartComponentProperties
protected void parseEvidenceVariableCharacteristicTimeFromStartComponentProperties(com.google.gson.JsonObject json, EvidenceVariable.EvidenceVariableCharacteristicTimeFromStartComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEvidenceVariableCategoryComponent
protected EvidenceVariable.EvidenceVariableCategoryComponent parseEvidenceVariableCategoryComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseEvidenceVariableCategoryComponentProperties
protected void parseEvidenceVariableCategoryComponentProperties(com.google.gson.JsonObject json, EvidenceVariable.EvidenceVariableCategoryComponent 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
-
parseExampleScenarioActorComponent
protected ExampleScenario.ExampleScenarioActorComponent parseExampleScenarioActorComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExampleScenarioActorComponentProperties
protected void parseExampleScenarioActorComponentProperties(com.google.gson.JsonObject json, ExampleScenario.ExampleScenarioActorComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExampleScenarioInstanceComponent
protected ExampleScenario.ExampleScenarioInstanceComponent parseExampleScenarioInstanceComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExampleScenarioInstanceComponentProperties
protected void parseExampleScenarioInstanceComponentProperties(com.google.gson.JsonObject json, ExampleScenario.ExampleScenarioInstanceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExampleScenarioInstanceVersionComponent
protected ExampleScenario.ExampleScenarioInstanceVersionComponent parseExampleScenarioInstanceVersionComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExampleScenarioInstanceVersionComponentProperties
protected void parseExampleScenarioInstanceVersionComponentProperties(com.google.gson.JsonObject json, ExampleScenario.ExampleScenarioInstanceVersionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExampleScenarioInstanceContainedInstanceComponent
protected ExampleScenario.ExampleScenarioInstanceContainedInstanceComponent parseExampleScenarioInstanceContainedInstanceComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExampleScenarioInstanceContainedInstanceComponentProperties
protected void parseExampleScenarioInstanceContainedInstanceComponentProperties(com.google.gson.JsonObject json, ExampleScenario.ExampleScenarioInstanceContainedInstanceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExampleScenarioProcessComponent
protected ExampleScenario.ExampleScenarioProcessComponent parseExampleScenarioProcessComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExampleScenarioProcessComponentProperties
protected void parseExampleScenarioProcessComponentProperties(com.google.gson.JsonObject json, ExampleScenario.ExampleScenarioProcessComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExampleScenarioProcessStepComponent
protected ExampleScenario.ExampleScenarioProcessStepComponent parseExampleScenarioProcessStepComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExampleScenarioProcessStepComponentProperties
protected void parseExampleScenarioProcessStepComponentProperties(com.google.gson.JsonObject json, ExampleScenario.ExampleScenarioProcessStepComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExampleScenarioProcessStepOperationComponent
protected ExampleScenario.ExampleScenarioProcessStepOperationComponent parseExampleScenarioProcessStepOperationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExampleScenarioProcessStepOperationComponentProperties
protected void parseExampleScenarioProcessStepOperationComponentProperties(com.google.gson.JsonObject json, ExampleScenario.ExampleScenarioProcessStepOperationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExampleScenarioProcessStepAlternativeComponent
protected ExampleScenario.ExampleScenarioProcessStepAlternativeComponent parseExampleScenarioProcessStepAlternativeComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExampleScenarioProcessStepAlternativeComponentProperties
protected void parseExampleScenarioProcessStepAlternativeComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitRelatedClaimComponentProperties
protected void parseExplanationOfBenefitRelatedClaimComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitPayeeComponentProperties
protected void parseExplanationOfBenefitPayeeComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitCareTeamComponentProperties
protected void parseExplanationOfBenefitCareTeamComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitSupportingInformationComponentProperties
protected void parseExplanationOfBenefitSupportingInformationComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitDiagnosisComponentProperties
protected void parseExplanationOfBenefitDiagnosisComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitProcedureComponentProperties
protected void parseExplanationOfBenefitProcedureComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitInsuranceComponentProperties
protected void parseExplanationOfBenefitInsuranceComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitAccidentComponentProperties
protected void parseExplanationOfBenefitAccidentComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitItemComponentProperties
protected void parseExplanationOfBenefitItemComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitAdjudicationComponentProperties
protected void parseExplanationOfBenefitAdjudicationComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitDetailComponentProperties
protected void parseExplanationOfBenefitDetailComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitSubDetailComponentProperties
protected void parseExplanationOfBenefitSubDetailComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitAddedItemComponentProperties
protected void parseExplanationOfBenefitAddedItemComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitAddedItemDetailComponentProperties
protected void parseExplanationOfBenefitAddedItemDetailComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitAddedItemDetailSubDetailComponentProperties
protected void parseExplanationOfBenefitAddedItemDetailSubDetailComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitTotalComponentProperties
protected void parseExplanationOfBenefitTotalComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitPaymentComponentProperties
protected void parseExplanationOfBenefitPaymentComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitNoteComponentProperties
protected void parseExplanationOfBenefitNoteComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitBenefitBalanceComponentProperties
protected void parseExplanationOfBenefitBenefitBalanceComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseExplanationOfBenefitBenefitComponentProperties
protected void parseExplanationOfBenefitBenefitComponentProperties(com.google.gson.JsonObject json, 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
-
parseFamilyMemberHistoryConditionComponent
protected FamilyMemberHistory.FamilyMemberHistoryConditionComponent parseFamilyMemberHistoryConditionComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseFamilyMemberHistoryConditionComponentProperties
protected void parseFamilyMemberHistoryConditionComponentProperties(com.google.gson.JsonObject json, 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
-
parseGoalTargetComponent
protected Goal.GoalTargetComponent parseGoalTargetComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseGoalTargetComponentProperties
protected void parseGoalTargetComponentProperties(com.google.gson.JsonObject json, 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
-
parseGraphDefinitionLinkComponent
protected GraphDefinition.GraphDefinitionLinkComponent parseGraphDefinitionLinkComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseGraphDefinitionLinkComponentProperties
protected void parseGraphDefinitionLinkComponentProperties(com.google.gson.JsonObject json, GraphDefinition.GraphDefinitionLinkComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseGraphDefinitionLinkTargetComponent
protected GraphDefinition.GraphDefinitionLinkTargetComponent parseGraphDefinitionLinkTargetComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseGraphDefinitionLinkTargetComponentProperties
protected void parseGraphDefinitionLinkTargetComponentProperties(com.google.gson.JsonObject json, GraphDefinition.GraphDefinitionLinkTargetComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseGraphDefinitionLinkTargetCompartmentComponent
protected GraphDefinition.GraphDefinitionLinkTargetCompartmentComponent parseGraphDefinitionLinkTargetCompartmentComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseGraphDefinitionLinkTargetCompartmentComponentProperties
protected void parseGraphDefinitionLinkTargetCompartmentComponentProperties(com.google.gson.JsonObject json, 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
-
parseGroupCharacteristicComponent
protected Group.GroupCharacteristicComponent parseGroupCharacteristicComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseGroupCharacteristicComponentProperties
protected void parseGroupCharacteristicComponentProperties(com.google.gson.JsonObject json, Group.GroupCharacteristicComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseGroupMemberComponent
protected Group.GroupMemberComponent parseGroupMemberComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseGroupMemberComponentProperties
protected void parseGroupMemberComponentProperties(com.google.gson.JsonObject json, 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
-
parseHealthcareServiceEligibilityComponent
protected HealthcareService.HealthcareServiceEligibilityComponent parseHealthcareServiceEligibilityComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseHealthcareServiceEligibilityComponentProperties
protected void parseHealthcareServiceEligibilityComponentProperties(com.google.gson.JsonObject json, HealthcareService.HealthcareServiceEligibilityComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseHealthcareServiceAvailableTimeComponent
protected HealthcareService.HealthcareServiceAvailableTimeComponent parseHealthcareServiceAvailableTimeComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseHealthcareServiceAvailableTimeComponentProperties
protected void parseHealthcareServiceAvailableTimeComponentProperties(com.google.gson.JsonObject json, HealthcareService.HealthcareServiceAvailableTimeComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseHealthcareServiceNotAvailableComponent
protected HealthcareService.HealthcareServiceNotAvailableComponent parseHealthcareServiceNotAvailableComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseHealthcareServiceNotAvailableComponentProperties
protected void parseHealthcareServiceNotAvailableComponentProperties(com.google.gson.JsonObject json, 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
-
parseImagingStudySeriesComponent
protected ImagingStudy.ImagingStudySeriesComponent parseImagingStudySeriesComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImagingStudySeriesComponentProperties
protected void parseImagingStudySeriesComponentProperties(com.google.gson.JsonObject json, ImagingStudy.ImagingStudySeriesComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImagingStudySeriesPerformerComponent
protected ImagingStudy.ImagingStudySeriesPerformerComponent parseImagingStudySeriesPerformerComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImagingStudySeriesPerformerComponentProperties
protected void parseImagingStudySeriesPerformerComponentProperties(com.google.gson.JsonObject json, ImagingStudy.ImagingStudySeriesPerformerComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImagingStudySeriesInstanceComponent
protected ImagingStudy.ImagingStudySeriesInstanceComponent parseImagingStudySeriesInstanceComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImagingStudySeriesInstanceComponentProperties
protected void parseImagingStudySeriesInstanceComponentProperties(com.google.gson.JsonObject json, 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
-
parseImmunizationPerformerComponent
protected Immunization.ImmunizationPerformerComponent parseImmunizationPerformerComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImmunizationPerformerComponentProperties
protected void parseImmunizationPerformerComponentProperties(com.google.gson.JsonObject json, Immunization.ImmunizationPerformerComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImmunizationEducationComponent
protected Immunization.ImmunizationEducationComponent parseImmunizationEducationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImmunizationEducationComponentProperties
protected void parseImmunizationEducationComponentProperties(com.google.gson.JsonObject json, Immunization.ImmunizationEducationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImmunizationReactionComponent
protected Immunization.ImmunizationReactionComponent parseImmunizationReactionComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImmunizationReactionComponentProperties
protected void parseImmunizationReactionComponentProperties(com.google.gson.JsonObject json, Immunization.ImmunizationReactionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImmunizationProtocolAppliedComponent
protected Immunization.ImmunizationProtocolAppliedComponent parseImmunizationProtocolAppliedComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImmunizationProtocolAppliedComponentProperties
protected void parseImmunizationProtocolAppliedComponentProperties(com.google.gson.JsonObject json, 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
-
parseImmunizationRecommendationRecommendationComponent
protected ImmunizationRecommendation.ImmunizationRecommendationRecommendationComponent parseImmunizationRecommendationRecommendationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImmunizationRecommendationRecommendationComponentProperties
protected void parseImmunizationRecommendationRecommendationComponentProperties(com.google.gson.JsonObject json, ImmunizationRecommendation.ImmunizationRecommendationRecommendationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImmunizationRecommendationRecommendationDateCriterionComponent
protected ImmunizationRecommendation.ImmunizationRecommendationRecommendationDateCriterionComponent parseImmunizationRecommendationRecommendationDateCriterionComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImmunizationRecommendationRecommendationDateCriterionComponentProperties
protected void parseImmunizationRecommendationRecommendationDateCriterionComponentProperties(com.google.gson.JsonObject json, 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
-
parseImplementationGuideDependsOnComponent
protected ImplementationGuide.ImplementationGuideDependsOnComponent parseImplementationGuideDependsOnComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideDependsOnComponentProperties
protected void parseImplementationGuideDependsOnComponentProperties(com.google.gson.JsonObject json, ImplementationGuide.ImplementationGuideDependsOnComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideGlobalComponent
protected ImplementationGuide.ImplementationGuideGlobalComponent parseImplementationGuideGlobalComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideGlobalComponentProperties
protected void parseImplementationGuideGlobalComponentProperties(com.google.gson.JsonObject json, ImplementationGuide.ImplementationGuideGlobalComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideDefinitionComponent
protected ImplementationGuide.ImplementationGuideDefinitionComponent parseImplementationGuideDefinitionComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideDefinitionComponentProperties
protected void parseImplementationGuideDefinitionComponentProperties(com.google.gson.JsonObject json, ImplementationGuide.ImplementationGuideDefinitionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideDefinitionGroupingComponent
protected ImplementationGuide.ImplementationGuideDefinitionGroupingComponent parseImplementationGuideDefinitionGroupingComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideDefinitionGroupingComponentProperties
protected void parseImplementationGuideDefinitionGroupingComponentProperties(com.google.gson.JsonObject json, ImplementationGuide.ImplementationGuideDefinitionGroupingComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideDefinitionResourceComponent
protected ImplementationGuide.ImplementationGuideDefinitionResourceComponent parseImplementationGuideDefinitionResourceComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideDefinitionResourceComponentProperties
protected void parseImplementationGuideDefinitionResourceComponentProperties(com.google.gson.JsonObject json, ImplementationGuide.ImplementationGuideDefinitionResourceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideDefinitionPageComponent
protected ImplementationGuide.ImplementationGuideDefinitionPageComponent parseImplementationGuideDefinitionPageComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideDefinitionPageComponentProperties
protected void parseImplementationGuideDefinitionPageComponentProperties(com.google.gson.JsonObject json, ImplementationGuide.ImplementationGuideDefinitionPageComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideDefinitionParameterComponent
protected ImplementationGuide.ImplementationGuideDefinitionParameterComponent parseImplementationGuideDefinitionParameterComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideDefinitionParameterComponentProperties
protected void parseImplementationGuideDefinitionParameterComponentProperties(com.google.gson.JsonObject json, ImplementationGuide.ImplementationGuideDefinitionParameterComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideDefinitionTemplateComponent
protected ImplementationGuide.ImplementationGuideDefinitionTemplateComponent parseImplementationGuideDefinitionTemplateComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideDefinitionTemplateComponentProperties
protected void parseImplementationGuideDefinitionTemplateComponentProperties(com.google.gson.JsonObject json, ImplementationGuide.ImplementationGuideDefinitionTemplateComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideManifestComponent
protected ImplementationGuide.ImplementationGuideManifestComponent parseImplementationGuideManifestComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideManifestComponentProperties
protected void parseImplementationGuideManifestComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideManifestResourceComponentProperties
protected void parseImplementationGuideManifestResourceComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseImplementationGuideManifestPageComponentProperties
protected void parseImplementationGuideManifestPageComponentProperties(com.google.gson.JsonObject json, ImplementationGuide.ManifestPageComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseIngredient
protected Ingredient parseIngredient(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseIngredientProperties
protected void parseIngredientProperties(com.google.gson.JsonObject json, Ingredient res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseIngredientManufacturerComponent
protected Ingredient.IngredientManufacturerComponent parseIngredientManufacturerComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseIngredientManufacturerComponentProperties
protected void parseIngredientManufacturerComponentProperties(com.google.gson.JsonObject json, Ingredient.IngredientManufacturerComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseIngredientSubstanceComponent
protected Ingredient.IngredientSubstanceComponent parseIngredientSubstanceComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseIngredientSubstanceComponentProperties
protected void parseIngredientSubstanceComponentProperties(com.google.gson.JsonObject json, Ingredient.IngredientSubstanceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseIngredientSubstanceStrengthComponent
protected Ingredient.IngredientSubstanceStrengthComponent parseIngredientSubstanceStrengthComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseIngredientSubstanceStrengthComponentProperties
protected void parseIngredientSubstanceStrengthComponentProperties(com.google.gson.JsonObject json, Ingredient.IngredientSubstanceStrengthComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseIngredientSubstanceStrengthReferenceStrengthComponent
protected Ingredient.IngredientSubstanceStrengthReferenceStrengthComponent parseIngredientSubstanceStrengthReferenceStrengthComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseIngredientSubstanceStrengthReferenceStrengthComponentProperties
protected void parseIngredientSubstanceStrengthReferenceStrengthComponentProperties(com.google.gson.JsonObject json, Ingredient.IngredientSubstanceStrengthReferenceStrengthComponent 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
-
parseInsurancePlanContactComponent
protected InsurancePlan.InsurancePlanContactComponent parseInsurancePlanContactComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInsurancePlanContactComponentProperties
protected void parseInsurancePlanContactComponentProperties(com.google.gson.JsonObject json, InsurancePlan.InsurancePlanContactComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInsurancePlanCoverageComponent
protected InsurancePlan.InsurancePlanCoverageComponent parseInsurancePlanCoverageComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInsurancePlanCoverageComponentProperties
protected void parseInsurancePlanCoverageComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInsurancePlanCoverageBenefitComponentProperties
protected void parseInsurancePlanCoverageBenefitComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInsurancePlanCoverageBenefitLimitComponentProperties
protected void parseInsurancePlanCoverageBenefitLimitComponentProperties(com.google.gson.JsonObject json, InsurancePlan.CoverageBenefitLimitComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInsurancePlanPlanComponent
protected InsurancePlan.InsurancePlanPlanComponent parseInsurancePlanPlanComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInsurancePlanPlanComponentProperties
protected void parseInsurancePlanPlanComponentProperties(com.google.gson.JsonObject json, InsurancePlan.InsurancePlanPlanComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInsurancePlanPlanGeneralCostComponent
protected InsurancePlan.InsurancePlanPlanGeneralCostComponent parseInsurancePlanPlanGeneralCostComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInsurancePlanPlanGeneralCostComponentProperties
protected void parseInsurancePlanPlanGeneralCostComponentProperties(com.google.gson.JsonObject json, InsurancePlan.InsurancePlanPlanGeneralCostComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInsurancePlanPlanSpecificCostComponent
protected InsurancePlan.InsurancePlanPlanSpecificCostComponent parseInsurancePlanPlanSpecificCostComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInsurancePlanPlanSpecificCostComponentProperties
protected void parseInsurancePlanPlanSpecificCostComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInsurancePlanPlanBenefitComponentProperties
protected void parseInsurancePlanPlanBenefitComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInsurancePlanPlanBenefitCostComponentProperties
protected void parseInsurancePlanPlanBenefitCostComponentProperties(com.google.gson.JsonObject json, 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
-
parseInvoiceParticipantComponent
protected Invoice.InvoiceParticipantComponent parseInvoiceParticipantComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInvoiceParticipantComponentProperties
protected void parseInvoiceParticipantComponentProperties(com.google.gson.JsonObject json, Invoice.InvoiceParticipantComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInvoiceLineItemComponent
protected Invoice.InvoiceLineItemComponent parseInvoiceLineItemComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInvoiceLineItemComponentProperties
protected void parseInvoiceLineItemComponentProperties(com.google.gson.JsonObject json, Invoice.InvoiceLineItemComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInvoiceLineItemPriceComponentComponent
protected Invoice.InvoiceLineItemPriceComponentComponent parseInvoiceLineItemPriceComponentComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseInvoiceLineItemPriceComponentComponentProperties
protected void parseInvoiceLineItemPriceComponentComponentProperties(com.google.gson.JsonObject json, 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
-
parseLinkageItemComponent
protected Linkage.LinkageItemComponent parseLinkageItemComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseLinkageItemComponentProperties
protected void parseLinkageItemComponentProperties(com.google.gson.JsonObject json, 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
-
parseListResourceEntryComponent
protected ListResource.ListResourceEntryComponent parseListResourceEntryComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseListResourceEntryComponentProperties
protected void parseListResourceEntryComponentProperties(com.google.gson.JsonObject json, ListResource.ListResourceEntryComponent 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
-
parseLocationPositionComponent
protected Location.LocationPositionComponent parseLocationPositionComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseLocationPositionComponentProperties
protected void parseLocationPositionComponentProperties(com.google.gson.JsonObject json, Location.LocationPositionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseLocationHoursOfOperationComponent
protected Location.LocationHoursOfOperationComponent parseLocationHoursOfOperationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseLocationHoursOfOperationComponentProperties
protected void parseLocationHoursOfOperationComponentProperties(com.google.gson.JsonObject json, Location.LocationHoursOfOperationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseManufacturedItemDefinition
protected ManufacturedItemDefinition parseManufacturedItemDefinition(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseManufacturedItemDefinitionProperties
protected void parseManufacturedItemDefinitionProperties(com.google.gson.JsonObject json, ManufacturedItemDefinition res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseManufacturedItemDefinitionPropertyComponent
protected ManufacturedItemDefinition.ManufacturedItemDefinitionPropertyComponent parseManufacturedItemDefinitionPropertyComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseManufacturedItemDefinitionPropertyComponentProperties
protected void parseManufacturedItemDefinitionPropertyComponentProperties(com.google.gson.JsonObject json, ManufacturedItemDefinition.ManufacturedItemDefinitionPropertyComponent 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
-
parseMeasureGroupComponent
protected Measure.MeasureGroupComponent parseMeasureGroupComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureGroupComponentProperties
protected void parseMeasureGroupComponentProperties(com.google.gson.JsonObject json, Measure.MeasureGroupComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureGroupPopulationComponent
protected Measure.MeasureGroupPopulationComponent parseMeasureGroupPopulationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureGroupPopulationComponentProperties
protected void parseMeasureGroupPopulationComponentProperties(com.google.gson.JsonObject json, Measure.MeasureGroupPopulationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureGroupStratifierComponent
protected Measure.MeasureGroupStratifierComponent parseMeasureGroupStratifierComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureGroupStratifierComponentProperties
protected void parseMeasureGroupStratifierComponentProperties(com.google.gson.JsonObject json, Measure.MeasureGroupStratifierComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureGroupStratifierComponentComponent
protected Measure.MeasureGroupStratifierComponentComponent parseMeasureGroupStratifierComponentComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureGroupStratifierComponentComponentProperties
protected void parseMeasureGroupStratifierComponentComponentProperties(com.google.gson.JsonObject json, Measure.MeasureGroupStratifierComponentComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureSupplementalDataComponent
protected Measure.MeasureSupplementalDataComponent parseMeasureSupplementalDataComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureSupplementalDataComponentProperties
protected void parseMeasureSupplementalDataComponentProperties(com.google.gson.JsonObject json, 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
-
parseMeasureReportGroupComponent
protected MeasureReport.MeasureReportGroupComponent parseMeasureReportGroupComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureReportGroupComponentProperties
protected void parseMeasureReportGroupComponentProperties(com.google.gson.JsonObject json, MeasureReport.MeasureReportGroupComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureReportGroupPopulationComponent
protected MeasureReport.MeasureReportGroupPopulationComponent parseMeasureReportGroupPopulationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureReportGroupPopulationComponentProperties
protected void parseMeasureReportGroupPopulationComponentProperties(com.google.gson.JsonObject json, MeasureReport.MeasureReportGroupPopulationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureReportGroupStratifierComponent
protected MeasureReport.MeasureReportGroupStratifierComponent parseMeasureReportGroupStratifierComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureReportGroupStratifierComponentProperties
protected void parseMeasureReportGroupStratifierComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureReportStratifierGroupComponentProperties
protected void parseMeasureReportStratifierGroupComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureReportStratifierGroupComponentComponentProperties
protected void parseMeasureReportStratifierGroupComponentComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMeasureReportStratifierGroupPopulationComponentProperties
protected void parseMeasureReportStratifierGroupPopulationComponentProperties(com.google.gson.JsonObject json, 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
-
parseMedicationIngredientComponent
protected Medication.MedicationIngredientComponent parseMedicationIngredientComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationIngredientComponentProperties
protected void parseMedicationIngredientComponentProperties(com.google.gson.JsonObject json, Medication.MedicationIngredientComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationBatchComponent
protected Medication.MedicationBatchComponent parseMedicationBatchComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationBatchComponentProperties
protected void parseMedicationBatchComponentProperties(com.google.gson.JsonObject json, 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
-
parseMedicationAdministrationPerformerComponent
protected MedicationAdministration.MedicationAdministrationPerformerComponent parseMedicationAdministrationPerformerComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationAdministrationPerformerComponentProperties
protected void parseMedicationAdministrationPerformerComponentProperties(com.google.gson.JsonObject json, MedicationAdministration.MedicationAdministrationPerformerComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationAdministrationDosageComponent
protected MedicationAdministration.MedicationAdministrationDosageComponent parseMedicationAdministrationDosageComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationAdministrationDosageComponentProperties
protected void parseMedicationAdministrationDosageComponentProperties(com.google.gson.JsonObject json, 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
-
parseMedicationDispensePerformerComponent
protected MedicationDispense.MedicationDispensePerformerComponent parseMedicationDispensePerformerComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationDispensePerformerComponentProperties
protected void parseMedicationDispensePerformerComponentProperties(com.google.gson.JsonObject json, MedicationDispense.MedicationDispensePerformerComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationDispenseSubstitutionComponent
protected MedicationDispense.MedicationDispenseSubstitutionComponent parseMedicationDispenseSubstitutionComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationDispenseSubstitutionComponentProperties
protected void parseMedicationDispenseSubstitutionComponentProperties(com.google.gson.JsonObject json, 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
-
parseMedicationKnowledgeRelatedMedicationKnowledgeComponent
protected MedicationKnowledge.MedicationKnowledgeRelatedMedicationKnowledgeComponent parseMedicationKnowledgeRelatedMedicationKnowledgeComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeRelatedMedicationKnowledgeComponentProperties
protected void parseMedicationKnowledgeRelatedMedicationKnowledgeComponentProperties(com.google.gson.JsonObject json, MedicationKnowledge.MedicationKnowledgeRelatedMedicationKnowledgeComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMonographComponent
protected MedicationKnowledge.MedicationKnowledgeMonographComponent parseMedicationKnowledgeMonographComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMonographComponentProperties
protected void parseMedicationKnowledgeMonographComponentProperties(com.google.gson.JsonObject json, MedicationKnowledge.MedicationKnowledgeMonographComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeIngredientComponent
protected MedicationKnowledge.MedicationKnowledgeIngredientComponent parseMedicationKnowledgeIngredientComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeIngredientComponentProperties
protected void parseMedicationKnowledgeIngredientComponentProperties(com.google.gson.JsonObject json, MedicationKnowledge.MedicationKnowledgeIngredientComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeCostComponent
protected MedicationKnowledge.MedicationKnowledgeCostComponent parseMedicationKnowledgeCostComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeCostComponentProperties
protected void parseMedicationKnowledgeCostComponentProperties(com.google.gson.JsonObject json, MedicationKnowledge.MedicationKnowledgeCostComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMonitoringProgramComponent
protected MedicationKnowledge.MedicationKnowledgeMonitoringProgramComponent parseMedicationKnowledgeMonitoringProgramComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMonitoringProgramComponentProperties
protected void parseMedicationKnowledgeMonitoringProgramComponentProperties(com.google.gson.JsonObject json, MedicationKnowledge.MedicationKnowledgeMonitoringProgramComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeAdministrationGuidelinesComponent
protected MedicationKnowledge.MedicationKnowledgeAdministrationGuidelinesComponent parseMedicationKnowledgeAdministrationGuidelinesComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeAdministrationGuidelinesComponentProperties
protected void parseMedicationKnowledgeAdministrationGuidelinesComponentProperties(com.google.gson.JsonObject json, MedicationKnowledge.MedicationKnowledgeAdministrationGuidelinesComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeAdministrationGuidelinesDosageComponent
protected MedicationKnowledge.MedicationKnowledgeAdministrationGuidelinesDosageComponent parseMedicationKnowledgeAdministrationGuidelinesDosageComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeAdministrationGuidelinesDosageComponentProperties
protected void parseMedicationKnowledgeAdministrationGuidelinesDosageComponentProperties(com.google.gson.JsonObject json, MedicationKnowledge.MedicationKnowledgeAdministrationGuidelinesDosageComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeAdministrationGuidelinesPatientCharacteristicsComponent
protected MedicationKnowledge.MedicationKnowledgeAdministrationGuidelinesPatientCharacteristicsComponent parseMedicationKnowledgeAdministrationGuidelinesPatientCharacteristicsComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeAdministrationGuidelinesPatientCharacteristicsComponentProperties
protected void parseMedicationKnowledgeAdministrationGuidelinesPatientCharacteristicsComponentProperties(com.google.gson.JsonObject json, MedicationKnowledge.MedicationKnowledgeAdministrationGuidelinesPatientCharacteristicsComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMedicineClassificationComponent
protected MedicationKnowledge.MedicationKnowledgeMedicineClassificationComponent parseMedicationKnowledgeMedicineClassificationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeMedicineClassificationComponentProperties
protected void parseMedicationKnowledgeMedicineClassificationComponentProperties(com.google.gson.JsonObject json, MedicationKnowledge.MedicationKnowledgeMedicineClassificationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgePackagingComponent
protected MedicationKnowledge.MedicationKnowledgePackagingComponent parseMedicationKnowledgePackagingComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgePackagingComponentProperties
protected void parseMedicationKnowledgePackagingComponentProperties(com.google.gson.JsonObject json, MedicationKnowledge.MedicationKnowledgePackagingComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeDrugCharacteristicComponent
protected MedicationKnowledge.MedicationKnowledgeDrugCharacteristicComponent parseMedicationKnowledgeDrugCharacteristicComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeDrugCharacteristicComponentProperties
protected void parseMedicationKnowledgeDrugCharacteristicComponentProperties(com.google.gson.JsonObject json, MedicationKnowledge.MedicationKnowledgeDrugCharacteristicComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeRegulatoryComponent
protected MedicationKnowledge.MedicationKnowledgeRegulatoryComponent parseMedicationKnowledgeRegulatoryComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeRegulatoryComponentProperties
protected void parseMedicationKnowledgeRegulatoryComponentProperties(com.google.gson.JsonObject json, MedicationKnowledge.MedicationKnowledgeRegulatoryComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeRegulatorySubstitutionComponent
protected MedicationKnowledge.MedicationKnowledgeRegulatorySubstitutionComponent parseMedicationKnowledgeRegulatorySubstitutionComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeRegulatorySubstitutionComponentProperties
protected void parseMedicationKnowledgeRegulatorySubstitutionComponentProperties(com.google.gson.JsonObject json, MedicationKnowledge.MedicationKnowledgeRegulatorySubstitutionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeRegulatoryScheduleComponent
protected MedicationKnowledge.MedicationKnowledgeRegulatoryScheduleComponent parseMedicationKnowledgeRegulatoryScheduleComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeRegulatoryScheduleComponentProperties
protected void parseMedicationKnowledgeRegulatoryScheduleComponentProperties(com.google.gson.JsonObject json, MedicationKnowledge.MedicationKnowledgeRegulatoryScheduleComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeRegulatoryMaxDispenseComponent
protected MedicationKnowledge.MedicationKnowledgeRegulatoryMaxDispenseComponent parseMedicationKnowledgeRegulatoryMaxDispenseComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeRegulatoryMaxDispenseComponentProperties
protected void parseMedicationKnowledgeRegulatoryMaxDispenseComponentProperties(com.google.gson.JsonObject json, MedicationKnowledge.MedicationKnowledgeRegulatoryMaxDispenseComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeKineticsComponent
protected MedicationKnowledge.MedicationKnowledgeKineticsComponent parseMedicationKnowledgeKineticsComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationKnowledgeKineticsComponentProperties
protected void parseMedicationKnowledgeKineticsComponentProperties(com.google.gson.JsonObject json, 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
-
parseMedicationRequestDispenseRequestComponent
protected MedicationRequest.MedicationRequestDispenseRequestComponent parseMedicationRequestDispenseRequestComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationRequestDispenseRequestComponentProperties
protected void parseMedicationRequestDispenseRequestComponentProperties(com.google.gson.JsonObject json, MedicationRequest.MedicationRequestDispenseRequestComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationRequestDispenseRequestInitialFillComponent
protected MedicationRequest.MedicationRequestDispenseRequestInitialFillComponent parseMedicationRequestDispenseRequestInitialFillComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationRequestDispenseRequestInitialFillComponentProperties
protected void parseMedicationRequestDispenseRequestInitialFillComponentProperties(com.google.gson.JsonObject json, MedicationRequest.MedicationRequestDispenseRequestInitialFillComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationRequestSubstitutionComponent
protected MedicationRequest.MedicationRequestSubstitutionComponent parseMedicationRequestSubstitutionComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicationRequestSubstitutionComponentProperties
protected void parseMedicationRequestSubstitutionComponentProperties(com.google.gson.JsonObject json, 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
-
parseMedicinalProductDefinition
protected MedicinalProductDefinition parseMedicinalProductDefinition(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductDefinitionProperties
protected void parseMedicinalProductDefinitionProperties(com.google.gson.JsonObject json, MedicinalProductDefinition res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductDefinitionContactComponent
protected MedicinalProductDefinition.MedicinalProductDefinitionContactComponent parseMedicinalProductDefinitionContactComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductDefinitionContactComponentProperties
protected void parseMedicinalProductDefinitionContactComponentProperties(com.google.gson.JsonObject json, MedicinalProductDefinition.MedicinalProductDefinitionContactComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductDefinitionNameComponent
protected MedicinalProductDefinition.MedicinalProductDefinitionNameComponent parseMedicinalProductDefinitionNameComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductDefinitionNameComponentProperties
protected void parseMedicinalProductDefinitionNameComponentProperties(com.google.gson.JsonObject json, MedicinalProductDefinition.MedicinalProductDefinitionNameComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductDefinitionNameNamePartComponent
protected MedicinalProductDefinition.MedicinalProductDefinitionNameNamePartComponent parseMedicinalProductDefinitionNameNamePartComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductDefinitionNameNamePartComponentProperties
protected void parseMedicinalProductDefinitionNameNamePartComponentProperties(com.google.gson.JsonObject json, MedicinalProductDefinition.MedicinalProductDefinitionNameNamePartComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductDefinitionNameCountryLanguageComponent
protected MedicinalProductDefinition.MedicinalProductDefinitionNameCountryLanguageComponent parseMedicinalProductDefinitionNameCountryLanguageComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductDefinitionNameCountryLanguageComponentProperties
protected void parseMedicinalProductDefinitionNameCountryLanguageComponentProperties(com.google.gson.JsonObject json, MedicinalProductDefinition.MedicinalProductDefinitionNameCountryLanguageComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductDefinitionCrossReferenceComponent
protected MedicinalProductDefinition.MedicinalProductDefinitionCrossReferenceComponent parseMedicinalProductDefinitionCrossReferenceComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductDefinitionCrossReferenceComponentProperties
protected void parseMedicinalProductDefinitionCrossReferenceComponentProperties(com.google.gson.JsonObject json, MedicinalProductDefinition.MedicinalProductDefinitionCrossReferenceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductDefinitionOperationComponent
protected MedicinalProductDefinition.MedicinalProductDefinitionOperationComponent parseMedicinalProductDefinitionOperationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductDefinitionOperationComponentProperties
protected void parseMedicinalProductDefinitionOperationComponentProperties(com.google.gson.JsonObject json, MedicinalProductDefinition.MedicinalProductDefinitionOperationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductDefinitionCharacteristicComponent
protected MedicinalProductDefinition.MedicinalProductDefinitionCharacteristicComponent parseMedicinalProductDefinitionCharacteristicComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMedicinalProductDefinitionCharacteristicComponentProperties
protected void parseMedicinalProductDefinitionCharacteristicComponentProperties(com.google.gson.JsonObject json, MedicinalProductDefinition.MedicinalProductDefinitionCharacteristicComponent 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
-
parseMessageDefinitionFocusComponent
protected MessageDefinition.MessageDefinitionFocusComponent parseMessageDefinitionFocusComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMessageDefinitionFocusComponentProperties
protected void parseMessageDefinitionFocusComponentProperties(com.google.gson.JsonObject json, MessageDefinition.MessageDefinitionFocusComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMessageDefinitionAllowedResponseComponent
protected MessageDefinition.MessageDefinitionAllowedResponseComponent parseMessageDefinitionAllowedResponseComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMessageDefinitionAllowedResponseComponentProperties
protected void parseMessageDefinitionAllowedResponseComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMessageHeaderMessageDestinationComponentProperties
protected void parseMessageHeaderMessageDestinationComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMessageHeaderMessageSourceComponentProperties
protected void parseMessageHeaderMessageSourceComponentProperties(com.google.gson.JsonObject json, MessageHeader.MessageSourceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMessageHeaderResponseComponent
protected MessageHeader.MessageHeaderResponseComponent parseMessageHeaderResponseComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMessageHeaderResponseComponentProperties
protected void parseMessageHeaderResponseComponentProperties(com.google.gson.JsonObject json, 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
-
parseMolecularSequenceReferenceSeqComponent
protected MolecularSequence.MolecularSequenceReferenceSeqComponent parseMolecularSequenceReferenceSeqComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMolecularSequenceReferenceSeqComponentProperties
protected void parseMolecularSequenceReferenceSeqComponentProperties(com.google.gson.JsonObject json, MolecularSequence.MolecularSequenceReferenceSeqComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMolecularSequenceVariantComponent
protected MolecularSequence.MolecularSequenceVariantComponent parseMolecularSequenceVariantComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMolecularSequenceVariantComponentProperties
protected void parseMolecularSequenceVariantComponentProperties(com.google.gson.JsonObject json, MolecularSequence.MolecularSequenceVariantComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMolecularSequenceQualityComponent
protected MolecularSequence.MolecularSequenceQualityComponent parseMolecularSequenceQualityComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMolecularSequenceQualityComponentProperties
protected void parseMolecularSequenceQualityComponentProperties(com.google.gson.JsonObject json, MolecularSequence.MolecularSequenceQualityComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMolecularSequenceQualityRocComponent
protected MolecularSequence.MolecularSequenceQualityRocComponent parseMolecularSequenceQualityRocComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMolecularSequenceQualityRocComponentProperties
protected void parseMolecularSequenceQualityRocComponentProperties(com.google.gson.JsonObject json, MolecularSequence.MolecularSequenceQualityRocComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMolecularSequenceRepositoryComponent
protected MolecularSequence.MolecularSequenceRepositoryComponent parseMolecularSequenceRepositoryComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMolecularSequenceRepositoryComponentProperties
protected void parseMolecularSequenceRepositoryComponentProperties(com.google.gson.JsonObject json, MolecularSequence.MolecularSequenceRepositoryComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMolecularSequenceStructureVariantComponent
protected MolecularSequence.MolecularSequenceStructureVariantComponent parseMolecularSequenceStructureVariantComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMolecularSequenceStructureVariantComponentProperties
protected void parseMolecularSequenceStructureVariantComponentProperties(com.google.gson.JsonObject json, MolecularSequence.MolecularSequenceStructureVariantComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMolecularSequenceStructureVariantOuterComponent
protected MolecularSequence.MolecularSequenceStructureVariantOuterComponent parseMolecularSequenceStructureVariantOuterComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMolecularSequenceStructureVariantOuterComponentProperties
protected void parseMolecularSequenceStructureVariantOuterComponentProperties(com.google.gson.JsonObject json, MolecularSequence.MolecularSequenceStructureVariantOuterComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMolecularSequenceStructureVariantInnerComponent
protected MolecularSequence.MolecularSequenceStructureVariantInnerComponent parseMolecularSequenceStructureVariantInnerComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseMolecularSequenceStructureVariantInnerComponentProperties
protected void parseMolecularSequenceStructureVariantInnerComponentProperties(com.google.gson.JsonObject json, 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
-
parseNamingSystemUniqueIdComponent
protected NamingSystem.NamingSystemUniqueIdComponent parseNamingSystemUniqueIdComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNamingSystemUniqueIdComponentProperties
protected void parseNamingSystemUniqueIdComponentProperties(com.google.gson.JsonObject json, 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
-
parseNutritionOrderOralDietComponent
protected NutritionOrder.NutritionOrderOralDietComponent parseNutritionOrderOralDietComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionOrderOralDietComponentProperties
protected void parseNutritionOrderOralDietComponentProperties(com.google.gson.JsonObject json, NutritionOrder.NutritionOrderOralDietComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionOrderOralDietNutrientComponent
protected NutritionOrder.NutritionOrderOralDietNutrientComponent parseNutritionOrderOralDietNutrientComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionOrderOralDietNutrientComponentProperties
protected void parseNutritionOrderOralDietNutrientComponentProperties(com.google.gson.JsonObject json, NutritionOrder.NutritionOrderOralDietNutrientComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionOrderOralDietTextureComponent
protected NutritionOrder.NutritionOrderOralDietTextureComponent parseNutritionOrderOralDietTextureComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionOrderOralDietTextureComponentProperties
protected void parseNutritionOrderOralDietTextureComponentProperties(com.google.gson.JsonObject json, NutritionOrder.NutritionOrderOralDietTextureComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionOrderSupplementComponent
protected NutritionOrder.NutritionOrderSupplementComponent parseNutritionOrderSupplementComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionOrderSupplementComponentProperties
protected void parseNutritionOrderSupplementComponentProperties(com.google.gson.JsonObject json, NutritionOrder.NutritionOrderSupplementComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionOrderEnteralFormulaComponent
protected NutritionOrder.NutritionOrderEnteralFormulaComponent parseNutritionOrderEnteralFormulaComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionOrderEnteralFormulaComponentProperties
protected void parseNutritionOrderEnteralFormulaComponentProperties(com.google.gson.JsonObject json, NutritionOrder.NutritionOrderEnteralFormulaComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionOrderEnteralFormulaAdministrationComponent
protected NutritionOrder.NutritionOrderEnteralFormulaAdministrationComponent parseNutritionOrderEnteralFormulaAdministrationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionOrderEnteralFormulaAdministrationComponentProperties
protected void parseNutritionOrderEnteralFormulaAdministrationComponentProperties(com.google.gson.JsonObject json, NutritionOrder.NutritionOrderEnteralFormulaAdministrationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionProduct
protected NutritionProduct parseNutritionProduct(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionProductProperties
protected void parseNutritionProductProperties(com.google.gson.JsonObject json, NutritionProduct res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionProductNutrientComponent
protected NutritionProduct.NutritionProductNutrientComponent parseNutritionProductNutrientComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionProductNutrientComponentProperties
protected void parseNutritionProductNutrientComponentProperties(com.google.gson.JsonObject json, NutritionProduct.NutritionProductNutrientComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionProductIngredientComponent
protected NutritionProduct.NutritionProductIngredientComponent parseNutritionProductIngredientComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionProductIngredientComponentProperties
protected void parseNutritionProductIngredientComponentProperties(com.google.gson.JsonObject json, NutritionProduct.NutritionProductIngredientComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionProductProductCharacteristicComponent
protected NutritionProduct.NutritionProductProductCharacteristicComponent parseNutritionProductProductCharacteristicComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionProductProductCharacteristicComponentProperties
protected void parseNutritionProductProductCharacteristicComponentProperties(com.google.gson.JsonObject json, NutritionProduct.NutritionProductProductCharacteristicComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionProductInstanceComponent
protected NutritionProduct.NutritionProductInstanceComponent parseNutritionProductInstanceComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseNutritionProductInstanceComponentProperties
protected void parseNutritionProductInstanceComponentProperties(com.google.gson.JsonObject json, NutritionProduct.NutritionProductInstanceComponent 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
-
parseObservationReferenceRangeComponent
protected Observation.ObservationReferenceRangeComponent parseObservationReferenceRangeComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseObservationReferenceRangeComponentProperties
protected void parseObservationReferenceRangeComponentProperties(com.google.gson.JsonObject json, Observation.ObservationReferenceRangeComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseObservationComponentComponent
protected Observation.ObservationComponentComponent parseObservationComponentComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseObservationComponentComponentProperties
protected void parseObservationComponentComponentProperties(com.google.gson.JsonObject json, 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
-
parseObservationDefinitionQuantitativeDetailsComponent
protected ObservationDefinition.ObservationDefinitionQuantitativeDetailsComponent parseObservationDefinitionQuantitativeDetailsComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseObservationDefinitionQuantitativeDetailsComponentProperties
protected void parseObservationDefinitionQuantitativeDetailsComponentProperties(com.google.gson.JsonObject json, ObservationDefinition.ObservationDefinitionQuantitativeDetailsComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseObservationDefinitionQualifiedIntervalComponent
protected ObservationDefinition.ObservationDefinitionQualifiedIntervalComponent parseObservationDefinitionQualifiedIntervalComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseObservationDefinitionQualifiedIntervalComponentProperties
protected void parseObservationDefinitionQualifiedIntervalComponentProperties(com.google.gson.JsonObject json, 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
-
parseOperationDefinitionParameterComponent
protected OperationDefinition.OperationDefinitionParameterComponent parseOperationDefinitionParameterComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseOperationDefinitionParameterComponentProperties
protected void parseOperationDefinitionParameterComponentProperties(com.google.gson.JsonObject json, OperationDefinition.OperationDefinitionParameterComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseOperationDefinitionParameterBindingComponent
protected OperationDefinition.OperationDefinitionParameterBindingComponent parseOperationDefinitionParameterBindingComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseOperationDefinitionParameterBindingComponentProperties
protected void parseOperationDefinitionParameterBindingComponentProperties(com.google.gson.JsonObject json, OperationDefinition.OperationDefinitionParameterBindingComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseOperationDefinitionParameterReferencedFromComponent
protected OperationDefinition.OperationDefinitionParameterReferencedFromComponent parseOperationDefinitionParameterReferencedFromComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseOperationDefinitionParameterReferencedFromComponentProperties
protected void parseOperationDefinitionParameterReferencedFromComponentProperties(com.google.gson.JsonObject json, OperationDefinition.OperationDefinitionParameterReferencedFromComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseOperationDefinitionOverloadComponent
protected OperationDefinition.OperationDefinitionOverloadComponent parseOperationDefinitionOverloadComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseOperationDefinitionOverloadComponentProperties
protected void parseOperationDefinitionOverloadComponentProperties(com.google.gson.JsonObject json, 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
-
parseOperationOutcomeIssueComponent
protected OperationOutcome.OperationOutcomeIssueComponent parseOperationOutcomeIssueComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseOperationOutcomeIssueComponentProperties
protected void parseOperationOutcomeIssueComponentProperties(com.google.gson.JsonObject json, 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
-
parseOrganizationContactComponent
protected Organization.OrganizationContactComponent parseOrganizationContactComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseOrganizationContactComponentProperties
protected void parseOrganizationContactComponentProperties(com.google.gson.JsonObject json, 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
-
parsePackagedProductDefinition
protected PackagedProductDefinition parsePackagedProductDefinition(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePackagedProductDefinitionProperties
protected void parsePackagedProductDefinitionProperties(com.google.gson.JsonObject json, PackagedProductDefinition res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePackagedProductDefinitionLegalStatusOfSupplyComponent
protected PackagedProductDefinition.PackagedProductDefinitionLegalStatusOfSupplyComponent parsePackagedProductDefinitionLegalStatusOfSupplyComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePackagedProductDefinitionLegalStatusOfSupplyComponentProperties
protected void parsePackagedProductDefinitionLegalStatusOfSupplyComponentProperties(com.google.gson.JsonObject json, PackagedProductDefinition.PackagedProductDefinitionLegalStatusOfSupplyComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePackagedProductDefinitionPackageComponent
protected PackagedProductDefinition.PackagedProductDefinitionPackageComponent parsePackagedProductDefinitionPackageComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePackagedProductDefinitionPackageComponentProperties
protected void parsePackagedProductDefinitionPackageComponentProperties(com.google.gson.JsonObject json, PackagedProductDefinition.PackagedProductDefinitionPackageComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePackagedProductDefinitionPackagePropertyComponent
protected PackagedProductDefinition.PackagedProductDefinitionPackagePropertyComponent parsePackagedProductDefinitionPackagePropertyComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePackagedProductDefinitionPackagePropertyComponentProperties
protected void parsePackagedProductDefinitionPackagePropertyComponentProperties(com.google.gson.JsonObject json, PackagedProductDefinition.PackagedProductDefinitionPackagePropertyComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePackagedProductDefinitionPackageContainedItemComponent
protected PackagedProductDefinition.PackagedProductDefinitionPackageContainedItemComponent parsePackagedProductDefinitionPackageContainedItemComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePackagedProductDefinitionPackageContainedItemComponentProperties
protected void parsePackagedProductDefinitionPackageContainedItemComponentProperties(com.google.gson.JsonObject json, PackagedProductDefinition.PackagedProductDefinitionPackageContainedItemComponent 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
-
parseParametersParameterComponent
protected Parameters.ParametersParameterComponent parseParametersParameterComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseParametersParameterComponentProperties
protected void parseParametersParameterComponentProperties(com.google.gson.JsonObject json, Parameters.ParametersParameterComponent 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePatientContactComponentProperties
protected void parsePatientContactComponentProperties(com.google.gson.JsonObject json, Patient.ContactComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePatientCommunicationComponent
protected Patient.PatientCommunicationComponent parsePatientCommunicationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePatientCommunicationComponentProperties
protected void parsePatientCommunicationComponentProperties(com.google.gson.JsonObject json, Patient.PatientCommunicationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePatientLinkComponent
protected Patient.PatientLinkComponent parsePatientLinkComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePatientLinkComponentProperties
protected void parsePatientLinkComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePaymentReconciliationDetailsComponentProperties
protected void parsePaymentReconciliationDetailsComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePaymentReconciliationNotesComponentProperties
protected void parsePaymentReconciliationNotesComponentProperties(com.google.gson.JsonObject json, 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
-
parsePersonLinkComponent
protected Person.PersonLinkComponent parsePersonLinkComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePersonLinkComponentProperties
protected void parsePersonLinkComponentProperties(com.google.gson.JsonObject json, 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
-
parsePlanDefinitionGoalComponent
protected PlanDefinition.PlanDefinitionGoalComponent parsePlanDefinitionGoalComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePlanDefinitionGoalComponentProperties
protected void parsePlanDefinitionGoalComponentProperties(com.google.gson.JsonObject json, PlanDefinition.PlanDefinitionGoalComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePlanDefinitionGoalTargetComponent
protected PlanDefinition.PlanDefinitionGoalTargetComponent parsePlanDefinitionGoalTargetComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePlanDefinitionGoalTargetComponentProperties
protected void parsePlanDefinitionGoalTargetComponentProperties(com.google.gson.JsonObject json, PlanDefinition.PlanDefinitionGoalTargetComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePlanDefinitionActionComponent
protected PlanDefinition.PlanDefinitionActionComponent parsePlanDefinitionActionComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePlanDefinitionActionComponentProperties
protected void parsePlanDefinitionActionComponentProperties(com.google.gson.JsonObject json, PlanDefinition.PlanDefinitionActionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePlanDefinitionActionConditionComponent
protected PlanDefinition.PlanDefinitionActionConditionComponent parsePlanDefinitionActionConditionComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePlanDefinitionActionConditionComponentProperties
protected void parsePlanDefinitionActionConditionComponentProperties(com.google.gson.JsonObject json, PlanDefinition.PlanDefinitionActionConditionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePlanDefinitionActionRelatedActionComponent
protected PlanDefinition.PlanDefinitionActionRelatedActionComponent parsePlanDefinitionActionRelatedActionComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePlanDefinitionActionRelatedActionComponentProperties
protected void parsePlanDefinitionActionRelatedActionComponentProperties(com.google.gson.JsonObject json, PlanDefinition.PlanDefinitionActionRelatedActionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePlanDefinitionActionParticipantComponent
protected PlanDefinition.PlanDefinitionActionParticipantComponent parsePlanDefinitionActionParticipantComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePlanDefinitionActionParticipantComponentProperties
protected void parsePlanDefinitionActionParticipantComponentProperties(com.google.gson.JsonObject json, PlanDefinition.PlanDefinitionActionParticipantComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePlanDefinitionActionDynamicValueComponent
protected PlanDefinition.PlanDefinitionActionDynamicValueComponent parsePlanDefinitionActionDynamicValueComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePlanDefinitionActionDynamicValueComponentProperties
protected void parsePlanDefinitionActionDynamicValueComponentProperties(com.google.gson.JsonObject json, 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
-
parsePractitionerQualificationComponent
protected Practitioner.PractitionerQualificationComponent parsePractitionerQualificationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePractitionerQualificationComponentProperties
protected void parsePractitionerQualificationComponentProperties(com.google.gson.JsonObject json, 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
-
parsePractitionerRoleAvailableTimeComponent
protected PractitionerRole.PractitionerRoleAvailableTimeComponent parsePractitionerRoleAvailableTimeComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePractitionerRoleAvailableTimeComponentProperties
protected void parsePractitionerRoleAvailableTimeComponentProperties(com.google.gson.JsonObject json, PractitionerRole.PractitionerRoleAvailableTimeComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePractitionerRoleNotAvailableComponent
protected PractitionerRole.PractitionerRoleNotAvailableComponent parsePractitionerRoleNotAvailableComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parsePractitionerRoleNotAvailableComponentProperties
protected void parsePractitionerRoleNotAvailableComponentProperties(com.google.gson.JsonObject json, 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
-
parseProcedurePerformerComponent
protected Procedure.ProcedurePerformerComponent parseProcedurePerformerComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseProcedurePerformerComponentProperties
protected void parseProcedurePerformerComponentProperties(com.google.gson.JsonObject json, Procedure.ProcedurePerformerComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseProcedureFocalDeviceComponent
protected Procedure.ProcedureFocalDeviceComponent parseProcedureFocalDeviceComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseProcedureFocalDeviceComponentProperties
protected void parseProcedureFocalDeviceComponentProperties(com.google.gson.JsonObject json, 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
-
parseProvenanceAgentComponent
protected Provenance.ProvenanceAgentComponent parseProvenanceAgentComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseProvenanceAgentComponentProperties
protected void parseProvenanceAgentComponentProperties(com.google.gson.JsonObject json, Provenance.ProvenanceAgentComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseProvenanceEntityComponent
protected Provenance.ProvenanceEntityComponent parseProvenanceEntityComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseProvenanceEntityComponentProperties
protected void parseProvenanceEntityComponentProperties(com.google.gson.JsonObject json, 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
-
parseQuestionnaireItemComponent
protected Questionnaire.QuestionnaireItemComponent parseQuestionnaireItemComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseQuestionnaireItemComponentProperties
protected void parseQuestionnaireItemComponentProperties(com.google.gson.JsonObject json, Questionnaire.QuestionnaireItemComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseQuestionnaireItemEnableWhenComponent
protected Questionnaire.QuestionnaireItemEnableWhenComponent parseQuestionnaireItemEnableWhenComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseQuestionnaireItemEnableWhenComponentProperties
protected void parseQuestionnaireItemEnableWhenComponentProperties(com.google.gson.JsonObject json, Questionnaire.QuestionnaireItemEnableWhenComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseQuestionnaireItemAnswerOptionComponent
protected Questionnaire.QuestionnaireItemAnswerOptionComponent parseQuestionnaireItemAnswerOptionComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseQuestionnaireItemAnswerOptionComponentProperties
protected void parseQuestionnaireItemAnswerOptionComponentProperties(com.google.gson.JsonObject json, Questionnaire.QuestionnaireItemAnswerOptionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseQuestionnaireItemInitialComponent
protected Questionnaire.QuestionnaireItemInitialComponent parseQuestionnaireItemInitialComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseQuestionnaireItemInitialComponentProperties
protected void parseQuestionnaireItemInitialComponentProperties(com.google.gson.JsonObject json, 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
-
parseQuestionnaireResponseItemComponent
protected QuestionnaireResponse.QuestionnaireResponseItemComponent parseQuestionnaireResponseItemComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseQuestionnaireResponseItemComponentProperties
protected void parseQuestionnaireResponseItemComponentProperties(com.google.gson.JsonObject json, QuestionnaireResponse.QuestionnaireResponseItemComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseQuestionnaireResponseItemAnswerComponent
protected QuestionnaireResponse.QuestionnaireResponseItemAnswerComponent parseQuestionnaireResponseItemAnswerComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseQuestionnaireResponseItemAnswerComponentProperties
protected void parseQuestionnaireResponseItemAnswerComponentProperties(com.google.gson.JsonObject json, QuestionnaireResponse.QuestionnaireResponseItemAnswerComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRegulatedAuthorization
protected RegulatedAuthorization parseRegulatedAuthorization(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRegulatedAuthorizationProperties
protected void parseRegulatedAuthorizationProperties(com.google.gson.JsonObject json, RegulatedAuthorization res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRegulatedAuthorizationCaseComponent
protected RegulatedAuthorization.RegulatedAuthorizationCaseComponent parseRegulatedAuthorizationCaseComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRegulatedAuthorizationCaseComponentProperties
protected void parseRegulatedAuthorizationCaseComponentProperties(com.google.gson.JsonObject json, RegulatedAuthorization.RegulatedAuthorizationCaseComponent 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
-
parseRelatedPersonCommunicationComponent
protected RelatedPerson.RelatedPersonCommunicationComponent parseRelatedPersonCommunicationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRelatedPersonCommunicationComponentProperties
protected void parseRelatedPersonCommunicationComponentProperties(com.google.gson.JsonObject json, 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
-
parseRequestGroupActionComponent
protected RequestGroup.RequestGroupActionComponent parseRequestGroupActionComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRequestGroupActionComponentProperties
protected void parseRequestGroupActionComponentProperties(com.google.gson.JsonObject json, RequestGroup.RequestGroupActionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRequestGroupActionConditionComponent
protected RequestGroup.RequestGroupActionConditionComponent parseRequestGroupActionConditionComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRequestGroupActionConditionComponentProperties
protected void parseRequestGroupActionConditionComponentProperties(com.google.gson.JsonObject json, RequestGroup.RequestGroupActionConditionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRequestGroupActionRelatedActionComponent
protected RequestGroup.RequestGroupActionRelatedActionComponent parseRequestGroupActionRelatedActionComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRequestGroupActionRelatedActionComponentProperties
protected void parseRequestGroupActionRelatedActionComponentProperties(com.google.gson.JsonObject json, 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
-
parseResearchElementDefinitionCharacteristicComponent
protected ResearchElementDefinition.ResearchElementDefinitionCharacteristicComponent parseResearchElementDefinitionCharacteristicComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseResearchElementDefinitionCharacteristicComponentProperties
protected void parseResearchElementDefinitionCharacteristicComponentProperties(com.google.gson.JsonObject json, 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
-
parseResearchStudyArmComponent
protected ResearchStudy.ResearchStudyArmComponent parseResearchStudyArmComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseResearchStudyArmComponentProperties
protected void parseResearchStudyArmComponentProperties(com.google.gson.JsonObject json, ResearchStudy.ResearchStudyArmComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseResearchStudyObjectiveComponent
protected ResearchStudy.ResearchStudyObjectiveComponent parseResearchStudyObjectiveComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseResearchStudyObjectiveComponentProperties
protected void parseResearchStudyObjectiveComponentProperties(com.google.gson.JsonObject json, 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
-
parseRiskAssessmentPredictionComponent
protected RiskAssessment.RiskAssessmentPredictionComponent parseRiskAssessmentPredictionComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseRiskAssessmentPredictionComponentProperties
protected void parseRiskAssessmentPredictionComponentProperties(com.google.gson.JsonObject json, RiskAssessment.RiskAssessmentPredictionComponent 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
-
parseSearchParameterComponentComponent
protected SearchParameter.SearchParameterComponentComponent parseSearchParameterComponentComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSearchParameterComponentComponentProperties
protected void parseSearchParameterComponentComponentProperties(com.google.gson.JsonObject json, 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
-
parseSpecimenCollectionComponent
protected Specimen.SpecimenCollectionComponent parseSpecimenCollectionComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSpecimenCollectionComponentProperties
protected void parseSpecimenCollectionComponentProperties(com.google.gson.JsonObject json, Specimen.SpecimenCollectionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSpecimenProcessingComponent
protected Specimen.SpecimenProcessingComponent parseSpecimenProcessingComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSpecimenProcessingComponentProperties
protected void parseSpecimenProcessingComponentProperties(com.google.gson.JsonObject json, Specimen.SpecimenProcessingComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSpecimenContainerComponent
protected Specimen.SpecimenContainerComponent parseSpecimenContainerComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSpecimenContainerComponentProperties
protected void parseSpecimenContainerComponentProperties(com.google.gson.JsonObject json, 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
-
parseSpecimenDefinitionTypeTestedComponent
protected SpecimenDefinition.SpecimenDefinitionTypeTestedComponent parseSpecimenDefinitionTypeTestedComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSpecimenDefinitionTypeTestedComponentProperties
protected void parseSpecimenDefinitionTypeTestedComponentProperties(com.google.gson.JsonObject json, SpecimenDefinition.SpecimenDefinitionTypeTestedComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSpecimenDefinitionTypeTestedContainerComponent
protected SpecimenDefinition.SpecimenDefinitionTypeTestedContainerComponent parseSpecimenDefinitionTypeTestedContainerComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSpecimenDefinitionTypeTestedContainerComponentProperties
protected void parseSpecimenDefinitionTypeTestedContainerComponentProperties(com.google.gson.JsonObject json, SpecimenDefinition.SpecimenDefinitionTypeTestedContainerComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSpecimenDefinitionTypeTestedContainerAdditiveComponent
protected SpecimenDefinition.SpecimenDefinitionTypeTestedContainerAdditiveComponent parseSpecimenDefinitionTypeTestedContainerAdditiveComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSpecimenDefinitionTypeTestedContainerAdditiveComponentProperties
protected void parseSpecimenDefinitionTypeTestedContainerAdditiveComponentProperties(com.google.gson.JsonObject json, SpecimenDefinition.SpecimenDefinitionTypeTestedContainerAdditiveComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSpecimenDefinitionTypeTestedHandlingComponent
protected SpecimenDefinition.SpecimenDefinitionTypeTestedHandlingComponent parseSpecimenDefinitionTypeTestedHandlingComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSpecimenDefinitionTypeTestedHandlingComponentProperties
protected void parseSpecimenDefinitionTypeTestedHandlingComponentProperties(com.google.gson.JsonObject json, 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
-
parseStructureDefinitionMappingComponent
protected StructureDefinition.StructureDefinitionMappingComponent parseStructureDefinitionMappingComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureDefinitionMappingComponentProperties
protected void parseStructureDefinitionMappingComponentProperties(com.google.gson.JsonObject json, StructureDefinition.StructureDefinitionMappingComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureDefinitionContextComponent
protected StructureDefinition.StructureDefinitionContextComponent parseStructureDefinitionContextComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureDefinitionContextComponentProperties
protected void parseStructureDefinitionContextComponentProperties(com.google.gson.JsonObject json, StructureDefinition.StructureDefinitionContextComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureDefinitionSnapshotComponent
protected StructureDefinition.StructureDefinitionSnapshotComponent parseStructureDefinitionSnapshotComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureDefinitionSnapshotComponentProperties
protected void parseStructureDefinitionSnapshotComponentProperties(com.google.gson.JsonObject json, StructureDefinition.StructureDefinitionSnapshotComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureDefinitionDifferentialComponent
protected StructureDefinition.StructureDefinitionDifferentialComponent parseStructureDefinitionDifferentialComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureDefinitionDifferentialComponentProperties
protected void parseStructureDefinitionDifferentialComponentProperties(com.google.gson.JsonObject json, 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
-
parseStructureMapStructureComponent
protected StructureMap.StructureMapStructureComponent parseStructureMapStructureComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureMapStructureComponentProperties
protected void parseStructureMapStructureComponentProperties(com.google.gson.JsonObject json, StructureMap.StructureMapStructureComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureMapGroupComponent
protected StructureMap.StructureMapGroupComponent parseStructureMapGroupComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureMapGroupComponentProperties
protected void parseStructureMapGroupComponentProperties(com.google.gson.JsonObject json, StructureMap.StructureMapGroupComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureMapGroupInputComponent
protected StructureMap.StructureMapGroupInputComponent parseStructureMapGroupInputComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureMapGroupInputComponentProperties
protected void parseStructureMapGroupInputComponentProperties(com.google.gson.JsonObject json, StructureMap.StructureMapGroupInputComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureMapGroupRuleComponent
protected StructureMap.StructureMapGroupRuleComponent parseStructureMapGroupRuleComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureMapGroupRuleComponentProperties
protected void parseStructureMapGroupRuleComponentProperties(com.google.gson.JsonObject json, StructureMap.StructureMapGroupRuleComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureMapGroupRuleSourceComponent
protected StructureMap.StructureMapGroupRuleSourceComponent parseStructureMapGroupRuleSourceComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureMapGroupRuleSourceComponentProperties
protected void parseStructureMapGroupRuleSourceComponentProperties(com.google.gson.JsonObject json, StructureMap.StructureMapGroupRuleSourceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureMapGroupRuleTargetComponent
protected StructureMap.StructureMapGroupRuleTargetComponent parseStructureMapGroupRuleTargetComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureMapGroupRuleTargetComponentProperties
protected void parseStructureMapGroupRuleTargetComponentProperties(com.google.gson.JsonObject json, StructureMap.StructureMapGroupRuleTargetComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureMapGroupRuleTargetParameterComponent
protected StructureMap.StructureMapGroupRuleTargetParameterComponent parseStructureMapGroupRuleTargetParameterComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureMapGroupRuleTargetParameterComponentProperties
protected void parseStructureMapGroupRuleTargetParameterComponentProperties(com.google.gson.JsonObject json, StructureMap.StructureMapGroupRuleTargetParameterComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureMapGroupRuleDependentComponent
protected StructureMap.StructureMapGroupRuleDependentComponent parseStructureMapGroupRuleDependentComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseStructureMapGroupRuleDependentComponentProperties
protected void parseStructureMapGroupRuleDependentComponentProperties(com.google.gson.JsonObject json, 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
-
parseSubscriptionChannelComponent
protected Subscription.SubscriptionChannelComponent parseSubscriptionChannelComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubscriptionChannelComponentProperties
protected void parseSubscriptionChannelComponentProperties(com.google.gson.JsonObject json, Subscription.SubscriptionChannelComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubscriptionStatus
protected SubscriptionStatus parseSubscriptionStatus(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubscriptionStatusProperties
protected void parseSubscriptionStatusProperties(com.google.gson.JsonObject json, SubscriptionStatus res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubscriptionStatusNotificationEventComponent
protected SubscriptionStatus.SubscriptionStatusNotificationEventComponent parseSubscriptionStatusNotificationEventComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubscriptionStatusNotificationEventComponentProperties
protected void parseSubscriptionStatusNotificationEventComponentProperties(com.google.gson.JsonObject json, SubscriptionStatus.SubscriptionStatusNotificationEventComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubscriptionTopic
protected SubscriptionTopic parseSubscriptionTopic(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubscriptionTopicProperties
protected void parseSubscriptionTopicProperties(com.google.gson.JsonObject json, SubscriptionTopic res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubscriptionTopicResourceTriggerComponent
protected SubscriptionTopic.SubscriptionTopicResourceTriggerComponent parseSubscriptionTopicResourceTriggerComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubscriptionTopicResourceTriggerComponentProperties
protected void parseSubscriptionTopicResourceTriggerComponentProperties(com.google.gson.JsonObject json, SubscriptionTopic.SubscriptionTopicResourceTriggerComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubscriptionTopicResourceTriggerQueryCriteriaComponent
protected SubscriptionTopic.SubscriptionTopicResourceTriggerQueryCriteriaComponent parseSubscriptionTopicResourceTriggerQueryCriteriaComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubscriptionTopicResourceTriggerQueryCriteriaComponentProperties
protected void parseSubscriptionTopicResourceTriggerQueryCriteriaComponentProperties(com.google.gson.JsonObject json, SubscriptionTopic.SubscriptionTopicResourceTriggerQueryCriteriaComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubscriptionTopicEventTriggerComponent
protected SubscriptionTopic.SubscriptionTopicEventTriggerComponent parseSubscriptionTopicEventTriggerComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubscriptionTopicEventTriggerComponentProperties
protected void parseSubscriptionTopicEventTriggerComponentProperties(com.google.gson.JsonObject json, SubscriptionTopic.SubscriptionTopicEventTriggerComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubscriptionTopicCanFilterByComponent
protected SubscriptionTopic.SubscriptionTopicCanFilterByComponent parseSubscriptionTopicCanFilterByComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubscriptionTopicCanFilterByComponentProperties
protected void parseSubscriptionTopicCanFilterByComponentProperties(com.google.gson.JsonObject json, SubscriptionTopic.SubscriptionTopicCanFilterByComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubscriptionTopicNotificationShapeComponent
protected SubscriptionTopic.SubscriptionTopicNotificationShapeComponent parseSubscriptionTopicNotificationShapeComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubscriptionTopicNotificationShapeComponentProperties
protected void parseSubscriptionTopicNotificationShapeComponentProperties(com.google.gson.JsonObject json, SubscriptionTopic.SubscriptionTopicNotificationShapeComponent 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
-
parseSubstanceInstanceComponent
protected Substance.SubstanceInstanceComponent parseSubstanceInstanceComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceInstanceComponentProperties
protected void parseSubstanceInstanceComponentProperties(com.google.gson.JsonObject json, Substance.SubstanceInstanceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceIngredientComponent
protected Substance.SubstanceIngredientComponent parseSubstanceIngredientComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceIngredientComponentProperties
protected void parseSubstanceIngredientComponentProperties(com.google.gson.JsonObject json, Substance.SubstanceIngredientComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceDefinition
protected SubstanceDefinition parseSubstanceDefinition(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceDefinitionProperties
protected void parseSubstanceDefinitionProperties(com.google.gson.JsonObject json, SubstanceDefinition res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceDefinitionMoietyComponent
protected SubstanceDefinition.SubstanceDefinitionMoietyComponent parseSubstanceDefinitionMoietyComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceDefinitionMoietyComponentProperties
protected void parseSubstanceDefinitionMoietyComponentProperties(com.google.gson.JsonObject json, SubstanceDefinition.SubstanceDefinitionMoietyComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceDefinitionPropertyComponent
protected SubstanceDefinition.SubstanceDefinitionPropertyComponent parseSubstanceDefinitionPropertyComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceDefinitionPropertyComponentProperties
protected void parseSubstanceDefinitionPropertyComponentProperties(com.google.gson.JsonObject json, SubstanceDefinition.SubstanceDefinitionPropertyComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceDefinitionMolecularWeightComponent
protected SubstanceDefinition.SubstanceDefinitionMolecularWeightComponent parseSubstanceDefinitionMolecularWeightComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceDefinitionMolecularWeightComponentProperties
protected void parseSubstanceDefinitionMolecularWeightComponentProperties(com.google.gson.JsonObject json, SubstanceDefinition.SubstanceDefinitionMolecularWeightComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceDefinitionStructureComponent
protected SubstanceDefinition.SubstanceDefinitionStructureComponent parseSubstanceDefinitionStructureComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceDefinitionStructureComponentProperties
protected void parseSubstanceDefinitionStructureComponentProperties(com.google.gson.JsonObject json, SubstanceDefinition.SubstanceDefinitionStructureComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceDefinitionStructureRepresentationComponent
protected SubstanceDefinition.SubstanceDefinitionStructureRepresentationComponent parseSubstanceDefinitionStructureRepresentationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceDefinitionStructureRepresentationComponentProperties
protected void parseSubstanceDefinitionStructureRepresentationComponentProperties(com.google.gson.JsonObject json, SubstanceDefinition.SubstanceDefinitionStructureRepresentationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceDefinitionCodeComponent
protected SubstanceDefinition.SubstanceDefinitionCodeComponent parseSubstanceDefinitionCodeComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceDefinitionCodeComponentProperties
protected void parseSubstanceDefinitionCodeComponentProperties(com.google.gson.JsonObject json, SubstanceDefinition.SubstanceDefinitionCodeComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceDefinitionNameComponent
protected SubstanceDefinition.SubstanceDefinitionNameComponent parseSubstanceDefinitionNameComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceDefinitionNameComponentProperties
protected void parseSubstanceDefinitionNameComponentProperties(com.google.gson.JsonObject json, SubstanceDefinition.SubstanceDefinitionNameComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceDefinitionNameOfficialComponent
protected SubstanceDefinition.SubstanceDefinitionNameOfficialComponent parseSubstanceDefinitionNameOfficialComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceDefinitionNameOfficialComponentProperties
protected void parseSubstanceDefinitionNameOfficialComponentProperties(com.google.gson.JsonObject json, SubstanceDefinition.SubstanceDefinitionNameOfficialComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceDefinitionRelationshipComponent
protected SubstanceDefinition.SubstanceDefinitionRelationshipComponent parseSubstanceDefinitionRelationshipComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceDefinitionRelationshipComponentProperties
protected void parseSubstanceDefinitionRelationshipComponentProperties(com.google.gson.JsonObject json, SubstanceDefinition.SubstanceDefinitionRelationshipComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceDefinitionSourceMaterialComponent
protected SubstanceDefinition.SubstanceDefinitionSourceMaterialComponent parseSubstanceDefinitionSourceMaterialComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSubstanceDefinitionSourceMaterialComponentProperties
protected void parseSubstanceDefinitionSourceMaterialComponentProperties(com.google.gson.JsonObject json, SubstanceDefinition.SubstanceDefinitionSourceMaterialComponent 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
-
parseSupplyDeliverySuppliedItemComponent
protected SupplyDelivery.SupplyDeliverySuppliedItemComponent parseSupplyDeliverySuppliedItemComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSupplyDeliverySuppliedItemComponentProperties
protected void parseSupplyDeliverySuppliedItemComponentProperties(com.google.gson.JsonObject json, 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
-
parseSupplyRequestParameterComponent
protected SupplyRequest.SupplyRequestParameterComponent parseSupplyRequestParameterComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseSupplyRequestParameterComponentProperties
protected void parseSupplyRequestParameterComponentProperties(com.google.gson.JsonObject json, 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
-
parseTaskRestrictionComponent
protected Task.TaskRestrictionComponent parseTaskRestrictionComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTaskRestrictionComponentProperties
protected void parseTaskRestrictionComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTaskParameterComponentProperties
protected void parseTaskParameterComponentProperties(com.google.gson.JsonObject json, Task.ParameterComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTaskOutputComponent
protected Task.TaskOutputComponent parseTaskOutputComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTaskOutputComponentProperties
protected void parseTaskOutputComponentProperties(com.google.gson.JsonObject json, 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
-
parseTerminologyCapabilitiesSoftwareComponent
protected TerminologyCapabilities.TerminologyCapabilitiesSoftwareComponent parseTerminologyCapabilitiesSoftwareComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesSoftwareComponentProperties
protected void parseTerminologyCapabilitiesSoftwareComponentProperties(com.google.gson.JsonObject json, TerminologyCapabilities.TerminologyCapabilitiesSoftwareComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesImplementationComponent
protected TerminologyCapabilities.TerminologyCapabilitiesImplementationComponent parseTerminologyCapabilitiesImplementationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesImplementationComponentProperties
protected void parseTerminologyCapabilitiesImplementationComponentProperties(com.google.gson.JsonObject json, TerminologyCapabilities.TerminologyCapabilitiesImplementationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesCodeSystemComponent
protected TerminologyCapabilities.TerminologyCapabilitiesCodeSystemComponent parseTerminologyCapabilitiesCodeSystemComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesCodeSystemComponentProperties
protected void parseTerminologyCapabilitiesCodeSystemComponentProperties(com.google.gson.JsonObject json, TerminologyCapabilities.TerminologyCapabilitiesCodeSystemComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesCodeSystemVersionComponent
protected TerminologyCapabilities.TerminologyCapabilitiesCodeSystemVersionComponent parseTerminologyCapabilitiesCodeSystemVersionComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesCodeSystemVersionComponentProperties
protected void parseTerminologyCapabilitiesCodeSystemVersionComponentProperties(com.google.gson.JsonObject json, TerminologyCapabilities.TerminologyCapabilitiesCodeSystemVersionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesCodeSystemVersionFilterComponent
protected TerminologyCapabilities.TerminologyCapabilitiesCodeSystemVersionFilterComponent parseTerminologyCapabilitiesCodeSystemVersionFilterComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesCodeSystemVersionFilterComponentProperties
protected void parseTerminologyCapabilitiesCodeSystemVersionFilterComponentProperties(com.google.gson.JsonObject json, TerminologyCapabilities.TerminologyCapabilitiesCodeSystemVersionFilterComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesExpansionComponent
protected TerminologyCapabilities.TerminologyCapabilitiesExpansionComponent parseTerminologyCapabilitiesExpansionComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesExpansionComponentProperties
protected void parseTerminologyCapabilitiesExpansionComponentProperties(com.google.gson.JsonObject json, TerminologyCapabilities.TerminologyCapabilitiesExpansionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesExpansionParameterComponent
protected TerminologyCapabilities.TerminologyCapabilitiesExpansionParameterComponent parseTerminologyCapabilitiesExpansionParameterComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesExpansionParameterComponentProperties
protected void parseTerminologyCapabilitiesExpansionParameterComponentProperties(com.google.gson.JsonObject json, TerminologyCapabilities.TerminologyCapabilitiesExpansionParameterComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesValidateCodeComponent
protected TerminologyCapabilities.TerminologyCapabilitiesValidateCodeComponent parseTerminologyCapabilitiesValidateCodeComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesValidateCodeComponentProperties
protected void parseTerminologyCapabilitiesValidateCodeComponentProperties(com.google.gson.JsonObject json, TerminologyCapabilities.TerminologyCapabilitiesValidateCodeComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesTranslationComponent
protected TerminologyCapabilities.TerminologyCapabilitiesTranslationComponent parseTerminologyCapabilitiesTranslationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesTranslationComponentProperties
protected void parseTerminologyCapabilitiesTranslationComponentProperties(com.google.gson.JsonObject json, TerminologyCapabilities.TerminologyCapabilitiesTranslationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesClosureComponent
protected TerminologyCapabilities.TerminologyCapabilitiesClosureComponent parseTerminologyCapabilitiesClosureComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTerminologyCapabilitiesClosureComponentProperties
protected void parseTerminologyCapabilitiesClosureComponentProperties(com.google.gson.JsonObject json, 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
-
parseTestReportParticipantComponent
protected TestReport.TestReportParticipantComponent parseTestReportParticipantComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestReportParticipantComponentProperties
protected void parseTestReportParticipantComponentProperties(com.google.gson.JsonObject json, TestReport.TestReportParticipantComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestReportSetupComponent
protected TestReport.TestReportSetupComponent parseTestReportSetupComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestReportSetupComponentProperties
protected void parseTestReportSetupComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestReportSetupActionComponentProperties
protected void parseTestReportSetupActionComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestReportSetupActionOperationComponentProperties
protected void parseTestReportSetupActionOperationComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestReportSetupActionAssertComponentProperties
protected void parseTestReportSetupActionAssertComponentProperties(com.google.gson.JsonObject json, TestReport.SetupActionAssertComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestReportTestComponent
protected TestReport.TestReportTestComponent parseTestReportTestComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestReportTestComponentProperties
protected void parseTestReportTestComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestReportTestActionComponentProperties
protected void parseTestReportTestActionComponentProperties(com.google.gson.JsonObject json, TestReport.TestActionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestReportTeardownComponent
protected TestReport.TestReportTeardownComponent parseTestReportTeardownComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestReportTeardownComponentProperties
protected void parseTestReportTeardownComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestReportTeardownActionComponentProperties
protected void parseTestReportTeardownActionComponentProperties(com.google.gson.JsonObject json, 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
-
parseTestScriptOriginComponent
protected TestScript.TestScriptOriginComponent parseTestScriptOriginComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptOriginComponentProperties
protected void parseTestScriptOriginComponentProperties(com.google.gson.JsonObject json, TestScript.TestScriptOriginComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptDestinationComponent
protected TestScript.TestScriptDestinationComponent parseTestScriptDestinationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptDestinationComponentProperties
protected void parseTestScriptDestinationComponentProperties(com.google.gson.JsonObject json, TestScript.TestScriptDestinationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptMetadataComponent
protected TestScript.TestScriptMetadataComponent parseTestScriptMetadataComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptMetadataComponentProperties
protected void parseTestScriptMetadataComponentProperties(com.google.gson.JsonObject json, TestScript.TestScriptMetadataComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptMetadataLinkComponent
protected TestScript.TestScriptMetadataLinkComponent parseTestScriptMetadataLinkComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptMetadataLinkComponentProperties
protected void parseTestScriptMetadataLinkComponentProperties(com.google.gson.JsonObject json, TestScript.TestScriptMetadataLinkComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptMetadataCapabilityComponent
protected TestScript.TestScriptMetadataCapabilityComponent parseTestScriptMetadataCapabilityComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptMetadataCapabilityComponentProperties
protected void parseTestScriptMetadataCapabilityComponentProperties(com.google.gson.JsonObject json, TestScript.TestScriptMetadataCapabilityComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptFixtureComponent
protected TestScript.TestScriptFixtureComponent parseTestScriptFixtureComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptFixtureComponentProperties
protected void parseTestScriptFixtureComponentProperties(com.google.gson.JsonObject json, TestScript.TestScriptFixtureComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptVariableComponent
protected TestScript.TestScriptVariableComponent parseTestScriptVariableComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptVariableComponentProperties
protected void parseTestScriptVariableComponentProperties(com.google.gson.JsonObject json, TestScript.TestScriptVariableComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptSetupComponent
protected TestScript.TestScriptSetupComponent parseTestScriptSetupComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptSetupComponentProperties
protected void parseTestScriptSetupComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptSetupActionComponentProperties
protected void parseTestScriptSetupActionComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptSetupActionOperationComponentProperties
protected void parseTestScriptSetupActionOperationComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptSetupActionOperationRequestHeaderComponentProperties
protected void parseTestScriptSetupActionOperationRequestHeaderComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptSetupActionAssertComponentProperties
protected void parseTestScriptSetupActionAssertComponentProperties(com.google.gson.JsonObject json, TestScript.SetupActionAssertComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptTestComponent
protected TestScript.TestScriptTestComponent parseTestScriptTestComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptTestComponentProperties
protected void parseTestScriptTestComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptTestActionComponentProperties
protected void parseTestScriptTestActionComponentProperties(com.google.gson.JsonObject json, TestScript.TestActionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptTeardownComponent
protected TestScript.TestScriptTeardownComponent parseTestScriptTeardownComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptTeardownComponentProperties
protected void parseTestScriptTeardownComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseTestScriptTeardownActionComponentProperties
protected void parseTestScriptTeardownActionComponentProperties(com.google.gson.JsonObject json, 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
-
parseValueSetComposeComponent
protected ValueSet.ValueSetComposeComponent parseValueSetComposeComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseValueSetComposeComponentProperties
protected void parseValueSetComposeComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseValueSetConceptSetComponentProperties
protected void parseValueSetConceptSetComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseValueSetConceptReferenceComponentProperties
protected void parseValueSetConceptReferenceComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseValueSetConceptReferenceDesignationComponentProperties
protected void parseValueSetConceptReferenceDesignationComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseValueSetConceptSetFilterComponentProperties
protected void parseValueSetConceptSetFilterComponentProperties(com.google.gson.JsonObject json, ValueSet.ConceptSetFilterComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseValueSetExpansionComponent
protected ValueSet.ValueSetExpansionComponent parseValueSetExpansionComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseValueSetExpansionComponentProperties
protected void parseValueSetExpansionComponentProperties(com.google.gson.JsonObject json, ValueSet.ValueSetExpansionComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseValueSetExpansionParameterComponent
protected ValueSet.ValueSetExpansionParameterComponent parseValueSetExpansionParameterComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseValueSetExpansionParameterComponentProperties
protected void parseValueSetExpansionParameterComponentProperties(com.google.gson.JsonObject json, ValueSet.ValueSetExpansionParameterComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseValueSetExpansionContainsComponent
protected ValueSet.ValueSetExpansionContainsComponent parseValueSetExpansionContainsComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseValueSetExpansionContainsComponentProperties
protected void parseValueSetExpansionContainsComponentProperties(com.google.gson.JsonObject json, 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
-
parseVerificationResultPrimarySourceComponent
protected VerificationResult.VerificationResultPrimarySourceComponent parseVerificationResultPrimarySourceComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseVerificationResultPrimarySourceComponentProperties
protected void parseVerificationResultPrimarySourceComponentProperties(com.google.gson.JsonObject json, VerificationResult.VerificationResultPrimarySourceComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseVerificationResultAttestationComponent
protected VerificationResult.VerificationResultAttestationComponent parseVerificationResultAttestationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseVerificationResultAttestationComponentProperties
protected void parseVerificationResultAttestationComponentProperties(com.google.gson.JsonObject json, VerificationResult.VerificationResultAttestationComponent res) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseVerificationResultValidatorComponent
protected VerificationResult.VerificationResultValidatorComponent parseVerificationResultValidatorComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseVerificationResultValidatorComponentProperties
protected void parseVerificationResultValidatorComponentProperties(com.google.gson.JsonObject json, 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
-
parseVisionPrescriptionLensSpecificationComponent
protected VisionPrescription.VisionPrescriptionLensSpecificationComponent parseVisionPrescriptionLensSpecificationComponent(com.google.gson.JsonObject json) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseVisionPrescriptionLensSpecificationComponentProperties
protected void parseVisionPrescriptionLensSpecificationComponentProperties(com.google.gson.JsonObject json, 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) throws IOException, org.hl7.fhir.exceptions.FHIRFormatError
- Throws:
IOExceptionorg.hl7.fhir.exceptions.FHIRFormatError
-
parseVisionPrescriptionPrismComponentProperties
protected void parseVisionPrescriptionPrismComponentProperties(com.google.gson.JsonObject json, 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 DataType 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
-
parseAnyType
protected DataType 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
-
parseType
protected DataType 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
-
composeBaseProperties
protected void composeBaseProperties(Base 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
-
composeInteger64Core
protected void composeInteger64Core(String name, Integer64Type value, boolean inArray) throws IOException
- Throws:
IOException
-
composeInteger64Extras
protected void composeInteger64Extras(String name, Integer64Type 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
-
composeElementProperties
protected void composeElementProperties(Element element) throws IOException
- Throws:
IOException
-
composeBackboneElementProperties
protected void composeBackboneElementProperties(BackboneElement element) throws IOException
- Throws:
IOException
-
composeDataTypeProperties
protected void composeDataTypeProperties(DataType element) throws IOException
- Throws:
IOException
-
composeAddress
protected void composeAddress(String name, Address element) throws IOException
- Throws:
IOException
-
composeAddressProperties
protected void composeAddressProperties(Address element) throws IOException
- Throws:
IOException
-
composeAge
protected void composeAge(String name, Age element) throws IOException
- Throws:
IOException
-
composeAgeProperties
protected void composeAgeProperties(Age element) throws IOException
- Throws:
IOException
-
composeAnnotation
protected void composeAnnotation(String name, Annotation element) throws IOException
- Throws:
IOException
-
composeAnnotationProperties
protected void composeAnnotationProperties(Annotation element) throws IOException
- Throws:
IOException
-
composeAttachment
protected void composeAttachment(String name, Attachment element) throws IOException
- Throws:
IOException
-
composeAttachmentProperties
protected void composeAttachmentProperties(Attachment element) throws IOException
- Throws:
IOException
-
composeCodeableConcept
protected void composeCodeableConcept(String name, CodeableConcept element) throws IOException
- Throws:
IOException
-
composeCodeableConceptProperties
protected void composeCodeableConceptProperties(CodeableConcept element) throws IOException
- Throws:
IOException
-
composeCodeableReference
protected void composeCodeableReference(String name, CodeableReference element) throws IOException
- Throws:
IOException
-
composeCodeableReferenceProperties
protected void composeCodeableReferenceProperties(CodeableReference element) throws IOException
- Throws:
IOException
-
composeCoding
protected void composeCoding(String name, Coding element) throws IOException
- Throws:
IOException
-
composeCodingProperties
protected void composeCodingProperties(Coding element) throws IOException
- Throws:
IOException
-
composeContactDetail
protected void composeContactDetail(String name, ContactDetail element) throws IOException
- Throws:
IOException
-
composeContactDetailProperties
protected void composeContactDetailProperties(ContactDetail element) throws IOException
- Throws:
IOException
-
composeContactPoint
protected void composeContactPoint(String name, ContactPoint element) throws IOException
- Throws:
IOException
-
composeContactPointProperties
protected void composeContactPointProperties(ContactPoint element) throws IOException
- Throws:
IOException
-
composeContributor
protected void composeContributor(String name, Contributor element) throws IOException
- Throws:
IOException
-
composeContributorProperties
protected void composeContributorProperties(Contributor element) throws IOException
- Throws:
IOException
-
composeCount
protected void composeCount(String name, Count element) throws IOException
- Throws:
IOException
-
composeCountProperties
protected void composeCountProperties(Count element) throws IOException
- Throws:
IOException
-
composeDataRequirement
protected void composeDataRequirement(String name, DataRequirement element) throws IOException
- Throws:
IOException
-
composeDataRequirementProperties
protected void composeDataRequirementProperties(DataRequirement element) throws IOException
- Throws:
IOException
-
composeDataRequirementCodeFilterComponent
protected void composeDataRequirementCodeFilterComponent(String name, DataRequirement.DataRequirementCodeFilterComponent element) throws IOException
- Throws:
IOException
-
composeDataRequirementCodeFilterComponentProperties
protected void composeDataRequirementCodeFilterComponentProperties(DataRequirement.DataRequirementCodeFilterComponent element) throws IOException
- Throws:
IOException
-
composeDataRequirementDateFilterComponent
protected void composeDataRequirementDateFilterComponent(String name, DataRequirement.DataRequirementDateFilterComponent element) throws IOException
- Throws:
IOException
-
composeDataRequirementDateFilterComponentProperties
protected void composeDataRequirementDateFilterComponentProperties(DataRequirement.DataRequirementDateFilterComponent element) throws IOException
- Throws:
IOException
-
composeDataRequirementSortComponent
protected void composeDataRequirementSortComponent(String name, DataRequirement.DataRequirementSortComponent element) throws IOException
- Throws:
IOException
-
composeDataRequirementSortComponentProperties
protected void composeDataRequirementSortComponentProperties(DataRequirement.DataRequirementSortComponent element) throws IOException
- Throws:
IOException
-
composeDistance
protected void composeDistance(String name, Distance element) throws IOException
- Throws:
IOException
-
composeDistanceProperties
protected void composeDistanceProperties(Distance element) throws IOException
- Throws:
IOException
-
composeDosage
protected void composeDosage(String name, Dosage element) throws IOException
- Throws:
IOException
-
composeDosageProperties
protected void composeDosageProperties(Dosage element) throws IOException
- Throws:
IOException
-
composeDosageDoseAndRateComponent
protected void composeDosageDoseAndRateComponent(String name, Dosage.DosageDoseAndRateComponent element) throws IOException
- Throws:
IOException
-
composeDosageDoseAndRateComponentProperties
protected void composeDosageDoseAndRateComponentProperties(Dosage.DosageDoseAndRateComponent element) throws IOException
- Throws:
IOException
-
composeDuration
protected void composeDuration(String name, Duration element) throws IOException
- Throws:
IOException
-
composeDurationProperties
protected void composeDurationProperties(Duration element) throws IOException
- Throws:
IOException
-
composeElementDefinition
protected void composeElementDefinition(String name, ElementDefinition element) throws IOException
- Throws:
IOException
-
composeElementDefinitionProperties
protected void composeElementDefinitionProperties(ElementDefinition element) throws IOException
- Throws:
IOException
-
composeElementDefinitionSlicingComponent
protected void composeElementDefinitionSlicingComponent(String name, ElementDefinition.ElementDefinitionSlicingComponent element) throws IOException
- Throws:
IOException
-
composeElementDefinitionSlicingComponentProperties
protected void composeElementDefinitionSlicingComponentProperties(ElementDefinition.ElementDefinitionSlicingComponent element) throws IOException
- Throws:
IOException
-
composeElementDefinitionSlicingDiscriminatorComponent
protected void composeElementDefinitionSlicingDiscriminatorComponent(String name, ElementDefinition.ElementDefinitionSlicingDiscriminatorComponent element) throws IOException
- Throws:
IOException
-
composeElementDefinitionSlicingDiscriminatorComponentProperties
protected void composeElementDefinitionSlicingDiscriminatorComponentProperties(ElementDefinition.ElementDefinitionSlicingDiscriminatorComponent element) throws IOException
- Throws:
IOException
-
composeElementDefinitionBaseComponent
protected void composeElementDefinitionBaseComponent(String name, ElementDefinition.ElementDefinitionBaseComponent element) throws IOException
- Throws:
IOException
-
composeElementDefinitionBaseComponentProperties
protected void composeElementDefinitionBaseComponentProperties(ElementDefinition.ElementDefinitionBaseComponent element) throws IOException
- Throws:
IOException
-
composeTypeRefComponent
protected void composeTypeRefComponent(String name, ElementDefinition.TypeRefComponent element) throws IOException
- Throws:
IOException
-
composeTypeRefComponentProperties
protected void composeTypeRefComponentProperties(ElementDefinition.TypeRefComponent element) throws IOException
- Throws:
IOException
-
composeElementDefinitionExampleComponent
protected void composeElementDefinitionExampleComponent(String name, ElementDefinition.ElementDefinitionExampleComponent element) throws IOException
- Throws:
IOException
-
composeElementDefinitionExampleComponentProperties
protected void composeElementDefinitionExampleComponentProperties(ElementDefinition.ElementDefinitionExampleComponent element) throws IOException
- Throws:
IOException
-
composeElementDefinitionConstraintComponent
protected void composeElementDefinitionConstraintComponent(String name, ElementDefinition.ElementDefinitionConstraintComponent element) throws IOException
- Throws:
IOException
-
composeElementDefinitionConstraintComponentProperties
protected void composeElementDefinitionConstraintComponentProperties(ElementDefinition.ElementDefinitionConstraintComponent element) throws IOException
- Throws:
IOException
-
composeElementDefinitionBindingComponent
protected void composeElementDefinitionBindingComponent(String name, ElementDefinition.ElementDefinitionBindingComponent element) throws IOException
- Throws:
IOException
-
composeElementDefinitionBindingComponentProperties
protected void composeElementDefinitionBindingComponentProperties(ElementDefinition.ElementDefinitionBindingComponent element) throws IOException
- Throws:
IOException
-
composeElementDefinitionMappingComponent
protected void composeElementDefinitionMappingComponent(String name, ElementDefinition.ElementDefinitionMappingComponent element) throws IOException
- Throws:
IOException
-
composeElementDefinitionMappingComponentProperties
protected void composeElementDefinitionMappingComponentProperties(ElementDefinition.ElementDefinitionMappingComponent element) throws IOException
- Throws:
IOException
-
composeExpression
protected void composeExpression(String name, Expression element) throws IOException
- Throws:
IOException
-
composeExpressionProperties
protected void composeExpressionProperties(Expression element) throws IOException
- Throws:
IOException
-
composeExtension
protected void composeExtension(String name, Extension element) throws IOException
- Throws:
IOException
-
composeExtensionProperties
protected void composeExtensionProperties(Extension element) throws IOException
- Throws:
IOException
-
composeHumanName
protected void composeHumanName(String name, HumanName element) throws IOException
- Throws:
IOException
-
composeHumanNameProperties
protected void composeHumanNameProperties(HumanName element) throws IOException
- Throws:
IOException
-
composeIdentifier
protected void composeIdentifier(String name, Identifier element) throws IOException
- Throws:
IOException
-
composeIdentifierProperties
protected void composeIdentifierProperties(Identifier element) throws IOException
- Throws:
IOException
-
composeMarketingStatus
protected void composeMarketingStatus(String name, MarketingStatus element) throws IOException
- Throws:
IOException
-
composeMarketingStatusProperties
protected void composeMarketingStatusProperties(MarketingStatus element) throws IOException
- Throws:
IOException
-
composeMeta
protected void composeMeta(String name, Meta element) throws IOException
- Throws:
IOException
-
composeMetaProperties
protected void composeMetaProperties(Meta element) throws IOException
- Throws:
IOException
-
composeMoney
protected void composeMoney(String name, Money element) throws IOException
- Throws:
IOException
-
composeMoneyProperties
protected void composeMoneyProperties(Money element) throws IOException
- Throws:
IOException
-
composeNarrative
protected void composeNarrative(String name, Narrative element) throws IOException
- Throws:
IOException
-
composeNarrativeProperties
protected void composeNarrativeProperties(Narrative element) throws IOException
- Throws:
IOException
-
composeParameterDefinition
protected void composeParameterDefinition(String name, ParameterDefinition element) throws IOException
- Throws:
IOException
-
composeParameterDefinitionProperties
protected void composeParameterDefinitionProperties(ParameterDefinition element) throws IOException
- Throws:
IOException
-
composePeriod
protected void composePeriod(String name, Period element) throws IOException
- Throws:
IOException
-
composePeriodProperties
protected void composePeriodProperties(Period element) throws IOException
- Throws:
IOException
-
composePopulation
protected void composePopulation(String name, Population element) throws IOException
- Throws:
IOException
-
composePopulationProperties
protected void composePopulationProperties(Population element) throws IOException
- Throws:
IOException
-
composeProdCharacteristic
protected void composeProdCharacteristic(String name, ProdCharacteristic element) throws IOException
- Throws:
IOException
-
composeProdCharacteristicProperties
protected void composeProdCharacteristicProperties(ProdCharacteristic element) throws IOException
- Throws:
IOException
-
composeProductShelfLife
protected void composeProductShelfLife(String name, ProductShelfLife element) throws IOException
- Throws:
IOException
-
composeProductShelfLifeProperties
protected void composeProductShelfLifeProperties(ProductShelfLife element) throws IOException
- Throws:
IOException
-
composeQuantity
protected void composeQuantity(String name, Quantity element) throws IOException
- Throws:
IOException
-
composeQuantityProperties
protected void composeQuantityProperties(Quantity element) throws IOException
- Throws:
IOException
-
composeRange
protected void composeRange(String name, Range element) throws IOException
- Throws:
IOException
-
composeRangeProperties
protected void composeRangeProperties(Range element) throws IOException
- Throws:
IOException
-
composeRatio
protected void composeRatio(String name, Ratio element) throws IOException
- Throws:
IOException
-
composeRatioProperties
protected void composeRatioProperties(Ratio element) throws IOException
- Throws:
IOException
-
composeRatioRange
protected void composeRatioRange(String name, RatioRange element) throws IOException
- Throws:
IOException
-
composeRatioRangeProperties
protected void composeRatioRangeProperties(RatioRange element) throws IOException
- Throws:
IOException
-
composeReference
protected void composeReference(String name, Reference element) throws IOException
- Throws:
IOException
-
composeReferenceProperties
protected void composeReferenceProperties(Reference element) throws IOException
- Throws:
IOException
-
composeRelatedArtifact
protected void composeRelatedArtifact(String name, RelatedArtifact element) throws IOException
- Throws:
IOException
-
composeRelatedArtifactProperties
protected void composeRelatedArtifactProperties(RelatedArtifact element) throws IOException
- Throws:
IOException
-
composeSampledData
protected void composeSampledData(String name, SampledData element) throws IOException
- Throws:
IOException
-
composeSampledDataProperties
protected void composeSampledDataProperties(SampledData element) throws IOException
- Throws:
IOException
-
composeSignature
protected void composeSignature(String name, Signature element) throws IOException
- Throws:
IOException
-
composeSignatureProperties
protected void composeSignatureProperties(Signature element) throws IOException
- Throws:
IOException
-
composeTiming
protected void composeTiming(String name, Timing element) throws IOException
- Throws:
IOException
-
composeTimingProperties
protected void composeTimingProperties(Timing element) throws IOException
- Throws:
IOException
-
composeTimingRepeatComponent
protected void composeTimingRepeatComponent(String name, Timing.TimingRepeatComponent element) throws IOException
- Throws:
IOException
-
composeTimingRepeatComponentProperties
protected void composeTimingRepeatComponentProperties(Timing.TimingRepeatComponent element) throws IOException
- Throws:
IOException
-
composeTriggerDefinition
protected void composeTriggerDefinition(String name, TriggerDefinition element) throws IOException
- Throws:
IOException
-
composeTriggerDefinitionProperties
protected void composeTriggerDefinitionProperties(TriggerDefinition element) throws IOException
- Throws:
IOException
-
composeUsageContext
protected void composeUsageContext(String name, UsageContext element) throws IOException
- Throws:
IOException
-
composeUsageContextProperties
protected void composeUsageContextProperties(UsageContext element) throws IOException
- Throws:
IOException
-
composeResourceProperties
protected void composeResourceProperties(Resource element) throws IOException
- Throws:
IOException
-
composeDomainResourceProperties
protected void composeDomainResourceProperties(DomainResource element) throws IOException
- Throws:
IOException
-
composeAccount
protected void composeAccount(String name, Account element) throws IOException
- Throws:
IOException
-
composeAccountProperties
protected void composeAccountProperties(Account element) throws IOException
- Throws:
IOException
-
composeCoverageComponent
protected void composeCoverageComponent(String name, Account.CoverageComponent element) throws IOException
- Throws:
IOException
-
composeCoverageComponentProperties
protected void composeCoverageComponentProperties(Account.CoverageComponent element) throws IOException
- Throws:
IOException
-
composeGuarantorComponent
protected void composeGuarantorComponent(String name, Account.GuarantorComponent element) throws IOException
- Throws:
IOException
-
composeGuarantorComponentProperties
protected void composeGuarantorComponentProperties(Account.GuarantorComponent element) throws IOException
- Throws:
IOException
-
composeActivityDefinition
protected void composeActivityDefinition(String name, ActivityDefinition element) throws IOException
- Throws:
IOException
-
composeActivityDefinitionProperties
protected void composeActivityDefinitionProperties(ActivityDefinition element) throws IOException
- Throws:
IOException
-
composeActivityDefinitionParticipantComponent
protected void composeActivityDefinitionParticipantComponent(String name, ActivityDefinition.ActivityDefinitionParticipantComponent element) throws IOException
- Throws:
IOException
-
composeActivityDefinitionParticipantComponentProperties
protected void composeActivityDefinitionParticipantComponentProperties(ActivityDefinition.ActivityDefinitionParticipantComponent element) throws IOException
- Throws:
IOException
-
composeActivityDefinitionDynamicValueComponent
protected void composeActivityDefinitionDynamicValueComponent(String name, ActivityDefinition.ActivityDefinitionDynamicValueComponent element) throws IOException
- Throws:
IOException
-
composeActivityDefinitionDynamicValueComponentProperties
protected void composeActivityDefinitionDynamicValueComponentProperties(ActivityDefinition.ActivityDefinitionDynamicValueComponent element) throws IOException
- Throws:
IOException
-
composeAdministrableProductDefinition
protected void composeAdministrableProductDefinition(String name, AdministrableProductDefinition element) throws IOException
- Throws:
IOException
-
composeAdministrableProductDefinitionProperties
protected void composeAdministrableProductDefinitionProperties(AdministrableProductDefinition element) throws IOException
- Throws:
IOException
-
composeAdministrableProductDefinitionPropertyComponent
protected void composeAdministrableProductDefinitionPropertyComponent(String name, AdministrableProductDefinition.AdministrableProductDefinitionPropertyComponent element) throws IOException
- Throws:
IOException
-
composeAdministrableProductDefinitionPropertyComponentProperties
protected void composeAdministrableProductDefinitionPropertyComponentProperties(AdministrableProductDefinition.AdministrableProductDefinitionPropertyComponent element) throws IOException
- Throws:
IOException
-
composeAdministrableProductDefinitionRouteOfAdministrationComponent
protected void composeAdministrableProductDefinitionRouteOfAdministrationComponent(String name, AdministrableProductDefinition.AdministrableProductDefinitionRouteOfAdministrationComponent element) throws IOException
- Throws:
IOException
-
composeAdministrableProductDefinitionRouteOfAdministrationComponentProperties
protected void composeAdministrableProductDefinitionRouteOfAdministrationComponentProperties(AdministrableProductDefinition.AdministrableProductDefinitionRouteOfAdministrationComponent element) throws IOException
- Throws:
IOException
-
composeAdministrableProductDefinitionRouteOfAdministrationTargetSpeciesComponent
protected void composeAdministrableProductDefinitionRouteOfAdministrationTargetSpeciesComponent(String name, AdministrableProductDefinition.AdministrableProductDefinitionRouteOfAdministrationTargetSpeciesComponent element) throws IOException
- Throws:
IOException
-
composeAdministrableProductDefinitionRouteOfAdministrationTargetSpeciesComponentProperties
protected void composeAdministrableProductDefinitionRouteOfAdministrationTargetSpeciesComponentProperties(AdministrableProductDefinition.AdministrableProductDefinitionRouteOfAdministrationTargetSpeciesComponent element) throws IOException
- Throws:
IOException
-
composeAdministrableProductDefinitionRouteOfAdministrationTargetSpeciesWithdrawalPeriodComponent
protected void composeAdministrableProductDefinitionRouteOfAdministrationTargetSpeciesWithdrawalPeriodComponent(String name, AdministrableProductDefinition.AdministrableProductDefinitionRouteOfAdministrationTargetSpeciesWithdrawalPeriodComponent element) throws IOException
- Throws:
IOException
-
composeAdministrableProductDefinitionRouteOfAdministrationTargetSpeciesWithdrawalPeriodComponentProperties
protected void composeAdministrableProductDefinitionRouteOfAdministrationTargetSpeciesWithdrawalPeriodComponentProperties(AdministrableProductDefinition.AdministrableProductDefinitionRouteOfAdministrationTargetSpeciesWithdrawalPeriodComponent element) throws IOException
- Throws:
IOException
-
composeAdverseEvent
protected void composeAdverseEvent(String name, AdverseEvent element) throws IOException
- Throws:
IOException
-
composeAdverseEventProperties
protected void composeAdverseEventProperties(AdverseEvent element) throws IOException
- Throws:
IOException
-
composeAdverseEventSuspectEntityComponent
protected void composeAdverseEventSuspectEntityComponent(String name, AdverseEvent.AdverseEventSuspectEntityComponent element) throws IOException
- Throws:
IOException
-
composeAdverseEventSuspectEntityComponentProperties
protected void composeAdverseEventSuspectEntityComponentProperties(AdverseEvent.AdverseEventSuspectEntityComponent element) throws IOException
- Throws:
IOException
-
composeAdverseEventSuspectEntityCausalityComponent
protected void composeAdverseEventSuspectEntityCausalityComponent(String name, AdverseEvent.AdverseEventSuspectEntityCausalityComponent element) throws IOException
- Throws:
IOException
-
composeAdverseEventSuspectEntityCausalityComponentProperties
protected void composeAdverseEventSuspectEntityCausalityComponentProperties(AdverseEvent.AdverseEventSuspectEntityCausalityComponent element) throws IOException
- Throws:
IOException
-
composeAllergyIntolerance
protected void composeAllergyIntolerance(String name, AllergyIntolerance element) throws IOException
- Throws:
IOException
-
composeAllergyIntoleranceProperties
protected void composeAllergyIntoleranceProperties(AllergyIntolerance element) throws IOException
- Throws:
IOException
-
composeAllergyIntoleranceReactionComponent
protected void composeAllergyIntoleranceReactionComponent(String name, AllergyIntolerance.AllergyIntoleranceReactionComponent element) throws IOException
- Throws:
IOException
-
composeAllergyIntoleranceReactionComponentProperties
protected void composeAllergyIntoleranceReactionComponentProperties(AllergyIntolerance.AllergyIntoleranceReactionComponent element) throws IOException
- Throws:
IOException
-
composeAppointment
protected void composeAppointment(String name, Appointment element) throws IOException
- Throws:
IOException
-
composeAppointmentProperties
protected void composeAppointmentProperties(Appointment element) throws IOException
- Throws:
IOException
-
composeAppointmentParticipantComponent
protected void composeAppointmentParticipantComponent(String name, Appointment.AppointmentParticipantComponent element) throws IOException
- Throws:
IOException
-
composeAppointmentParticipantComponentProperties
protected void composeAppointmentParticipantComponentProperties(Appointment.AppointmentParticipantComponent element) throws IOException
- Throws:
IOException
-
composeAppointmentResponse
protected void composeAppointmentResponse(String name, AppointmentResponse element) throws IOException
- Throws:
IOException
-
composeAppointmentResponseProperties
protected void composeAppointmentResponseProperties(AppointmentResponse element) throws IOException
- Throws:
IOException
-
composeAuditEvent
protected void composeAuditEvent(String name, AuditEvent element) throws IOException
- Throws:
IOException
-
composeAuditEventProperties
protected void composeAuditEventProperties(AuditEvent element) throws IOException
- Throws:
IOException
-
composeAuditEventAgentComponent
protected void composeAuditEventAgentComponent(String name, AuditEvent.AuditEventAgentComponent element) throws IOException
- Throws:
IOException
-
composeAuditEventAgentComponentProperties
protected void composeAuditEventAgentComponentProperties(AuditEvent.AuditEventAgentComponent element) throws IOException
- Throws:
IOException
-
composeAuditEventAgentNetworkComponent
protected void composeAuditEventAgentNetworkComponent(String name, AuditEvent.AuditEventAgentNetworkComponent element) throws IOException
- Throws:
IOException
-
composeAuditEventAgentNetworkComponentProperties
protected void composeAuditEventAgentNetworkComponentProperties(AuditEvent.AuditEventAgentNetworkComponent element) throws IOException
- Throws:
IOException
-
composeAuditEventSourceComponent
protected void composeAuditEventSourceComponent(String name, AuditEvent.AuditEventSourceComponent element) throws IOException
- Throws:
IOException
-
composeAuditEventSourceComponentProperties
protected void composeAuditEventSourceComponentProperties(AuditEvent.AuditEventSourceComponent element) throws IOException
- Throws:
IOException
-
composeAuditEventEntityComponent
protected void composeAuditEventEntityComponent(String name, AuditEvent.AuditEventEntityComponent element) throws IOException
- Throws:
IOException
-
composeAuditEventEntityComponentProperties
protected void composeAuditEventEntityComponentProperties(AuditEvent.AuditEventEntityComponent element) throws IOException
- Throws:
IOException
-
composeAuditEventEntityDetailComponent
protected void composeAuditEventEntityDetailComponent(String name, AuditEvent.AuditEventEntityDetailComponent element) throws IOException
- Throws:
IOException
-
composeAuditEventEntityDetailComponentProperties
protected void composeAuditEventEntityDetailComponentProperties(AuditEvent.AuditEventEntityDetailComponent element) throws IOException
- Throws:
IOException
-
composeBasic
protected void composeBasic(String name, Basic element) throws IOException
- Throws:
IOException
-
composeBasicProperties
protected void composeBasicProperties(Basic element) throws IOException
- Throws:
IOException
-
composeBinary
protected void composeBinary(String name, Binary element) throws IOException
- Throws:
IOException
-
composeBinaryProperties
protected void composeBinaryProperties(Binary element) throws IOException
- Throws:
IOException
-
composeBiologicallyDerivedProduct
protected void composeBiologicallyDerivedProduct(String name, BiologicallyDerivedProduct element) throws IOException
- Throws:
IOException
-
composeBiologicallyDerivedProductProperties
protected void composeBiologicallyDerivedProductProperties(BiologicallyDerivedProduct element) throws IOException
- Throws:
IOException
-
composeBiologicallyDerivedProductCollectionComponent
protected void composeBiologicallyDerivedProductCollectionComponent(String name, BiologicallyDerivedProduct.BiologicallyDerivedProductCollectionComponent element) throws IOException
- Throws:
IOException
-
composeBiologicallyDerivedProductCollectionComponentProperties
protected void composeBiologicallyDerivedProductCollectionComponentProperties(BiologicallyDerivedProduct.BiologicallyDerivedProductCollectionComponent element) throws IOException
- Throws:
IOException
-
composeBiologicallyDerivedProductProcessingComponent
protected void composeBiologicallyDerivedProductProcessingComponent(String name, BiologicallyDerivedProduct.BiologicallyDerivedProductProcessingComponent element) throws IOException
- Throws:
IOException
-
composeBiologicallyDerivedProductProcessingComponentProperties
protected void composeBiologicallyDerivedProductProcessingComponentProperties(BiologicallyDerivedProduct.BiologicallyDerivedProductProcessingComponent element) throws IOException
- Throws:
IOException
-
composeBiologicallyDerivedProductManipulationComponent
protected void composeBiologicallyDerivedProductManipulationComponent(String name, BiologicallyDerivedProduct.BiologicallyDerivedProductManipulationComponent element) throws IOException
- Throws:
IOException
-
composeBiologicallyDerivedProductManipulationComponentProperties
protected void composeBiologicallyDerivedProductManipulationComponentProperties(BiologicallyDerivedProduct.BiologicallyDerivedProductManipulationComponent element) throws IOException
- Throws:
IOException
-
composeBiologicallyDerivedProductStorageComponent
protected void composeBiologicallyDerivedProductStorageComponent(String name, BiologicallyDerivedProduct.BiologicallyDerivedProductStorageComponent element) throws IOException
- Throws:
IOException
-
composeBiologicallyDerivedProductStorageComponentProperties
protected void composeBiologicallyDerivedProductStorageComponentProperties(BiologicallyDerivedProduct.BiologicallyDerivedProductStorageComponent element) throws IOException
- Throws:
IOException
-
composeBodyStructure
protected void composeBodyStructure(String name, BodyStructure element) throws IOException
- Throws:
IOException
-
composeBodyStructureProperties
protected void composeBodyStructureProperties(BodyStructure element) throws IOException
- Throws:
IOException
-
composeBundle
protected void composeBundle(String name, Bundle element) throws IOException
- Throws:
IOException
-
composeBundleProperties
protected void composeBundleProperties(Bundle element) throws IOException
- Throws:
IOException
-
composeBundleLinkComponent
protected void composeBundleLinkComponent(String name, Bundle.BundleLinkComponent element) throws IOException
- Throws:
IOException
-
composeBundleLinkComponentProperties
protected void composeBundleLinkComponentProperties(Bundle.BundleLinkComponent element) throws IOException
- Throws:
IOException
-
composeBundleEntryComponent
protected void composeBundleEntryComponent(String name, Bundle.BundleEntryComponent element) throws IOException
- Throws:
IOException
-
composeBundleEntryComponentProperties
protected void composeBundleEntryComponentProperties(Bundle.BundleEntryComponent element) throws IOException
- Throws:
IOException
-
composeBundleEntrySearchComponent
protected void composeBundleEntrySearchComponent(String name, Bundle.BundleEntrySearchComponent element) throws IOException
- Throws:
IOException
-
composeBundleEntrySearchComponentProperties
protected void composeBundleEntrySearchComponentProperties(Bundle.BundleEntrySearchComponent element) throws IOException
- Throws:
IOException
-
composeBundleEntryRequestComponent
protected void composeBundleEntryRequestComponent(String name, Bundle.BundleEntryRequestComponent element) throws IOException
- Throws:
IOException
-
composeBundleEntryRequestComponentProperties
protected void composeBundleEntryRequestComponentProperties(Bundle.BundleEntryRequestComponent element) throws IOException
- Throws:
IOException
-
composeBundleEntryResponseComponent
protected void composeBundleEntryResponseComponent(String name, Bundle.BundleEntryResponseComponent element) throws IOException
- Throws:
IOException
-
composeBundleEntryResponseComponentProperties
protected void composeBundleEntryResponseComponentProperties(Bundle.BundleEntryResponseComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatement
protected void composeCapabilityStatement(String name, CapabilityStatement element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementProperties
protected void composeCapabilityStatementProperties(CapabilityStatement element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementSoftwareComponent
protected void composeCapabilityStatementSoftwareComponent(String name, CapabilityStatement.CapabilityStatementSoftwareComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementSoftwareComponentProperties
protected void composeCapabilityStatementSoftwareComponentProperties(CapabilityStatement.CapabilityStatementSoftwareComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementImplementationComponent
protected void composeCapabilityStatementImplementationComponent(String name, CapabilityStatement.CapabilityStatementImplementationComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementImplementationComponentProperties
protected void composeCapabilityStatementImplementationComponentProperties(CapabilityStatement.CapabilityStatementImplementationComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementRestComponent
protected void composeCapabilityStatementRestComponent(String name, CapabilityStatement.CapabilityStatementRestComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementRestComponentProperties
protected void composeCapabilityStatementRestComponentProperties(CapabilityStatement.CapabilityStatementRestComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementRestSecurityComponent
protected void composeCapabilityStatementRestSecurityComponent(String name, CapabilityStatement.CapabilityStatementRestSecurityComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementRestSecurityComponentProperties
protected void composeCapabilityStatementRestSecurityComponentProperties(CapabilityStatement.CapabilityStatementRestSecurityComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementRestResourceComponent
protected void composeCapabilityStatementRestResourceComponent(String name, CapabilityStatement.CapabilityStatementRestResourceComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementRestResourceComponentProperties
protected void composeCapabilityStatementRestResourceComponentProperties(CapabilityStatement.CapabilityStatementRestResourceComponent element) throws IOException
- Throws:
IOException
-
composeResourceInteractionComponent
protected void composeResourceInteractionComponent(String name, CapabilityStatement.ResourceInteractionComponent element) throws IOException
- Throws:
IOException
-
composeResourceInteractionComponentProperties
protected void composeResourceInteractionComponentProperties(CapabilityStatement.ResourceInteractionComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementRestResourceSearchParamComponent
protected void composeCapabilityStatementRestResourceSearchParamComponent(String name, CapabilityStatement.CapabilityStatementRestResourceSearchParamComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementRestResourceSearchParamComponentProperties
protected void composeCapabilityStatementRestResourceSearchParamComponentProperties(CapabilityStatement.CapabilityStatementRestResourceSearchParamComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementRestResourceOperationComponent
protected void composeCapabilityStatementRestResourceOperationComponent(String name, CapabilityStatement.CapabilityStatementRestResourceOperationComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementRestResourceOperationComponentProperties
protected void composeCapabilityStatementRestResourceOperationComponentProperties(CapabilityStatement.CapabilityStatementRestResourceOperationComponent element) throws IOException
- Throws:
IOException
-
composeSystemInteractionComponent
protected void composeSystemInteractionComponent(String name, CapabilityStatement.SystemInteractionComponent element) throws IOException
- Throws:
IOException
-
composeSystemInteractionComponentProperties
protected void composeSystemInteractionComponentProperties(CapabilityStatement.SystemInteractionComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementMessagingComponent
protected void composeCapabilityStatementMessagingComponent(String name, CapabilityStatement.CapabilityStatementMessagingComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementMessagingComponentProperties
protected void composeCapabilityStatementMessagingComponentProperties(CapabilityStatement.CapabilityStatementMessagingComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementMessagingEndpointComponent
protected void composeCapabilityStatementMessagingEndpointComponent(String name, CapabilityStatement.CapabilityStatementMessagingEndpointComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementMessagingEndpointComponentProperties
protected void composeCapabilityStatementMessagingEndpointComponentProperties(CapabilityStatement.CapabilityStatementMessagingEndpointComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementMessagingSupportedMessageComponent
protected void composeCapabilityStatementMessagingSupportedMessageComponent(String name, CapabilityStatement.CapabilityStatementMessagingSupportedMessageComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementMessagingSupportedMessageComponentProperties
protected void composeCapabilityStatementMessagingSupportedMessageComponentProperties(CapabilityStatement.CapabilityStatementMessagingSupportedMessageComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementDocumentComponent
protected void composeCapabilityStatementDocumentComponent(String name, CapabilityStatement.CapabilityStatementDocumentComponent element) throws IOException
- Throws:
IOException
-
composeCapabilityStatementDocumentComponentProperties
protected void composeCapabilityStatementDocumentComponentProperties(CapabilityStatement.CapabilityStatementDocumentComponent element) throws IOException
- Throws:
IOException
-
composeCarePlan
protected void composeCarePlan(String name, CarePlan element) throws IOException
- Throws:
IOException
-
composeCarePlanProperties
protected void composeCarePlanProperties(CarePlan element) throws IOException
- Throws:
IOException
-
composeCarePlanActivityComponent
protected void composeCarePlanActivityComponent(String name, CarePlan.CarePlanActivityComponent element) throws IOException
- Throws:
IOException
-
composeCarePlanActivityComponentProperties
protected void composeCarePlanActivityComponentProperties(CarePlan.CarePlanActivityComponent element) throws IOException
- Throws:
IOException
-
composeCarePlanActivityDetailComponent
protected void composeCarePlanActivityDetailComponent(String name, CarePlan.CarePlanActivityDetailComponent element) throws IOException
- Throws:
IOException
-
composeCarePlanActivityDetailComponentProperties
protected void composeCarePlanActivityDetailComponentProperties(CarePlan.CarePlanActivityDetailComponent element) throws IOException
- Throws:
IOException
-
composeCareTeam
protected void composeCareTeam(String name, CareTeam element) throws IOException
- Throws:
IOException
-
composeCareTeamProperties
protected void composeCareTeamProperties(CareTeam element) throws IOException
- Throws:
IOException
-
composeCareTeamParticipantComponent
protected void composeCareTeamParticipantComponent(String name, CareTeam.CareTeamParticipantComponent element) throws IOException
- Throws:
IOException
-
composeCareTeamParticipantComponentProperties
protected void composeCareTeamParticipantComponentProperties(CareTeam.CareTeamParticipantComponent element) throws IOException
- Throws:
IOException
-
composeCatalogEntry
protected void composeCatalogEntry(String name, CatalogEntry element) throws IOException
- Throws:
IOException
-
composeCatalogEntryProperties
protected void composeCatalogEntryProperties(CatalogEntry element) throws IOException
- Throws:
IOException
-
composeCatalogEntryRelatedEntryComponent
protected void composeCatalogEntryRelatedEntryComponent(String name, CatalogEntry.CatalogEntryRelatedEntryComponent element) throws IOException
- Throws:
IOException
-
composeCatalogEntryRelatedEntryComponentProperties
protected void composeCatalogEntryRelatedEntryComponentProperties(CatalogEntry.CatalogEntryRelatedEntryComponent element) throws IOException
- Throws:
IOException
-
composeChargeItem
protected void composeChargeItem(String name, ChargeItem element) throws IOException
- Throws:
IOException
-
composeChargeItemProperties
protected void composeChargeItemProperties(ChargeItem element) throws IOException
- Throws:
IOException
-
composeChargeItemPerformerComponent
protected void composeChargeItemPerformerComponent(String name, ChargeItem.ChargeItemPerformerComponent element) throws IOException
- Throws:
IOException
-
composeChargeItemPerformerComponentProperties
protected void composeChargeItemPerformerComponentProperties(ChargeItem.ChargeItemPerformerComponent element) throws IOException
- Throws:
IOException
-
composeChargeItemDefinition
protected void composeChargeItemDefinition(String name, ChargeItemDefinition element) throws IOException
- Throws:
IOException
-
composeChargeItemDefinitionProperties
protected void composeChargeItemDefinitionProperties(ChargeItemDefinition element) throws IOException
- Throws:
IOException
-
composeChargeItemDefinitionApplicabilityComponent
protected void composeChargeItemDefinitionApplicabilityComponent(String name, ChargeItemDefinition.ChargeItemDefinitionApplicabilityComponent element) throws IOException
- Throws:
IOException
-
composeChargeItemDefinitionApplicabilityComponentProperties
protected void composeChargeItemDefinitionApplicabilityComponentProperties(ChargeItemDefinition.ChargeItemDefinitionApplicabilityComponent element) throws IOException
- Throws:
IOException
-
composeChargeItemDefinitionPropertyGroupComponent
protected void composeChargeItemDefinitionPropertyGroupComponent(String name, ChargeItemDefinition.ChargeItemDefinitionPropertyGroupComponent element) throws IOException
- Throws:
IOException
-
composeChargeItemDefinitionPropertyGroupComponentProperties
protected void composeChargeItemDefinitionPropertyGroupComponentProperties(ChargeItemDefinition.ChargeItemDefinitionPropertyGroupComponent element) throws IOException
- Throws:
IOException
-
composeChargeItemDefinitionPropertyGroupPriceComponentComponent
protected void composeChargeItemDefinitionPropertyGroupPriceComponentComponent(String name, ChargeItemDefinition.ChargeItemDefinitionPropertyGroupPriceComponentComponent element) throws IOException
- Throws:
IOException
-
composeChargeItemDefinitionPropertyGroupPriceComponentComponentProperties
protected void composeChargeItemDefinitionPropertyGroupPriceComponentComponentProperties(ChargeItemDefinition.ChargeItemDefinitionPropertyGroupPriceComponentComponent element) throws IOException
- Throws:
IOException
-
composeCitation
protected void composeCitation(String name, Citation element) throws IOException
- Throws:
IOException
-
composeCitationProperties
protected void composeCitationProperties(Citation element) throws IOException
- Throws:
IOException
-
composeCitationClassificationComponent
protected void composeCitationClassificationComponent(String name, Citation.CitationClassificationComponent element) throws IOException
- Throws:
IOException
-
composeCitationClassificationComponentProperties
protected void composeCitationClassificationComponentProperties(Citation.CitationClassificationComponent element) throws IOException
- Throws:
IOException
-
composeCitationStatusDateComponent
protected void composeCitationStatusDateComponent(String name, Citation.CitationStatusDateComponent element) throws IOException
- Throws:
IOException
-
composeCitationStatusDateComponentProperties
protected void composeCitationStatusDateComponentProperties(Citation.CitationStatusDateComponent element) throws IOException
- Throws:
IOException
-
composeCitationRelatesToComponent
protected void composeCitationRelatesToComponent(String name, Citation.CitationRelatesToComponent element) throws IOException
- Throws:
IOException
-
composeCitationRelatesToComponentProperties
protected void composeCitationRelatesToComponentProperties(Citation.CitationRelatesToComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactComponent
protected void composeCitationCitedArtifactComponent(String name, Citation.CitationCitedArtifactComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactComponentProperties
protected void composeCitationCitedArtifactComponentProperties(Citation.CitationCitedArtifactComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactVersionComponent
protected void composeCitationCitedArtifactVersionComponent(String name, Citation.CitationCitedArtifactVersionComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactVersionComponentProperties
protected void composeCitationCitedArtifactVersionComponentProperties(Citation.CitationCitedArtifactVersionComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactStatusDateComponent
protected void composeCitationCitedArtifactStatusDateComponent(String name, Citation.CitationCitedArtifactStatusDateComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactStatusDateComponentProperties
protected void composeCitationCitedArtifactStatusDateComponentProperties(Citation.CitationCitedArtifactStatusDateComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactTitleComponent
protected void composeCitationCitedArtifactTitleComponent(String name, Citation.CitationCitedArtifactTitleComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactTitleComponentProperties
protected void composeCitationCitedArtifactTitleComponentProperties(Citation.CitationCitedArtifactTitleComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactAbstractComponent
protected void composeCitationCitedArtifactAbstractComponent(String name, Citation.CitationCitedArtifactAbstractComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactAbstractComponentProperties
protected void composeCitationCitedArtifactAbstractComponentProperties(Citation.CitationCitedArtifactAbstractComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactPartComponent
protected void composeCitationCitedArtifactPartComponent(String name, Citation.CitationCitedArtifactPartComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactPartComponentProperties
protected void composeCitationCitedArtifactPartComponentProperties(Citation.CitationCitedArtifactPartComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactRelatesToComponent
protected void composeCitationCitedArtifactRelatesToComponent(String name, Citation.CitationCitedArtifactRelatesToComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactRelatesToComponentProperties
protected void composeCitationCitedArtifactRelatesToComponentProperties(Citation.CitationCitedArtifactRelatesToComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactPublicationFormComponent
protected void composeCitationCitedArtifactPublicationFormComponent(String name, Citation.CitationCitedArtifactPublicationFormComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactPublicationFormComponentProperties
protected void composeCitationCitedArtifactPublicationFormComponentProperties(Citation.CitationCitedArtifactPublicationFormComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactPublicationFormPublishedInComponent
protected void composeCitationCitedArtifactPublicationFormPublishedInComponent(String name, Citation.CitationCitedArtifactPublicationFormPublishedInComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactPublicationFormPublishedInComponentProperties
protected void composeCitationCitedArtifactPublicationFormPublishedInComponentProperties(Citation.CitationCitedArtifactPublicationFormPublishedInComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactPublicationFormPeriodicReleaseComponent
protected void composeCitationCitedArtifactPublicationFormPeriodicReleaseComponent(String name, Citation.CitationCitedArtifactPublicationFormPeriodicReleaseComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactPublicationFormPeriodicReleaseComponentProperties
protected void composeCitationCitedArtifactPublicationFormPeriodicReleaseComponentProperties(Citation.CitationCitedArtifactPublicationFormPeriodicReleaseComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactPublicationFormPeriodicReleaseDateOfPublicationComponent
protected void composeCitationCitedArtifactPublicationFormPeriodicReleaseDateOfPublicationComponent(String name, Citation.CitationCitedArtifactPublicationFormPeriodicReleaseDateOfPublicationComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactPublicationFormPeriodicReleaseDateOfPublicationComponentProperties
protected void composeCitationCitedArtifactPublicationFormPeriodicReleaseDateOfPublicationComponentProperties(Citation.CitationCitedArtifactPublicationFormPeriodicReleaseDateOfPublicationComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactWebLocationComponent
protected void composeCitationCitedArtifactWebLocationComponent(String name, Citation.CitationCitedArtifactWebLocationComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactWebLocationComponentProperties
protected void composeCitationCitedArtifactWebLocationComponentProperties(Citation.CitationCitedArtifactWebLocationComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactClassificationComponent
protected void composeCitationCitedArtifactClassificationComponent(String name, Citation.CitationCitedArtifactClassificationComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactClassificationComponentProperties
protected void composeCitationCitedArtifactClassificationComponentProperties(Citation.CitationCitedArtifactClassificationComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactClassificationWhoClassifiedComponent
protected void composeCitationCitedArtifactClassificationWhoClassifiedComponent(String name, Citation.CitationCitedArtifactClassificationWhoClassifiedComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactClassificationWhoClassifiedComponentProperties
protected void composeCitationCitedArtifactClassificationWhoClassifiedComponentProperties(Citation.CitationCitedArtifactClassificationWhoClassifiedComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactContributorshipComponent
protected void composeCitationCitedArtifactContributorshipComponent(String name, Citation.CitationCitedArtifactContributorshipComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactContributorshipComponentProperties
protected void composeCitationCitedArtifactContributorshipComponentProperties(Citation.CitationCitedArtifactContributorshipComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactContributorshipEntryComponent
protected void composeCitationCitedArtifactContributorshipEntryComponent(String name, Citation.CitationCitedArtifactContributorshipEntryComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactContributorshipEntryComponentProperties
protected void composeCitationCitedArtifactContributorshipEntryComponentProperties(Citation.CitationCitedArtifactContributorshipEntryComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactContributorshipEntryAffiliationInfoComponent
protected void composeCitationCitedArtifactContributorshipEntryAffiliationInfoComponent(String name, Citation.CitationCitedArtifactContributorshipEntryAffiliationInfoComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactContributorshipEntryAffiliationInfoComponentProperties
protected void composeCitationCitedArtifactContributorshipEntryAffiliationInfoComponentProperties(Citation.CitationCitedArtifactContributorshipEntryAffiliationInfoComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactContributorshipEntryContributionInstanceComponent
protected void composeCitationCitedArtifactContributorshipEntryContributionInstanceComponent(String name, Citation.CitationCitedArtifactContributorshipEntryContributionInstanceComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactContributorshipEntryContributionInstanceComponentProperties
protected void composeCitationCitedArtifactContributorshipEntryContributionInstanceComponentProperties(Citation.CitationCitedArtifactContributorshipEntryContributionInstanceComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactContributorshipSummaryComponent
protected void composeCitationCitedArtifactContributorshipSummaryComponent(String name, Citation.CitationCitedArtifactContributorshipSummaryComponent element) throws IOException
- Throws:
IOException
-
composeCitationCitedArtifactContributorshipSummaryComponentProperties
protected void composeCitationCitedArtifactContributorshipSummaryComponentProperties(Citation.CitationCitedArtifactContributorshipSummaryComponent element) throws IOException
- Throws:
IOException
-
composeClaim
protected void composeClaim(String name, Claim element) throws IOException
- Throws:
IOException
-
composeClaimProperties
protected void composeClaimProperties(Claim element) throws IOException
- Throws:
IOException
-
composeRelatedClaimComponent
protected void composeRelatedClaimComponent(String name, Claim.RelatedClaimComponent element) throws IOException
- Throws:
IOException
-
composeRelatedClaimComponentProperties
protected void composeRelatedClaimComponentProperties(Claim.RelatedClaimComponent element) throws IOException
- Throws:
IOException
-
composePayeeComponent
protected void composePayeeComponent(String name, Claim.PayeeComponent element) throws IOException
- Throws:
IOException
-
composePayeeComponentProperties
protected void composePayeeComponentProperties(Claim.PayeeComponent element) throws IOException
- Throws:
IOException
-
composeCareTeamComponent
protected void composeCareTeamComponent(String name, Claim.CareTeamComponent element) throws IOException
- Throws:
IOException
-
composeCareTeamComponentProperties
protected void composeCareTeamComponentProperties(Claim.CareTeamComponent element) throws IOException
- Throws:
IOException
-
composeSupportingInformationComponent
protected void composeSupportingInformationComponent(String name, Claim.SupportingInformationComponent element) throws IOException
- Throws:
IOException
-
composeSupportingInformationComponentProperties
protected void composeSupportingInformationComponentProperties(Claim.SupportingInformationComponent element) throws IOException
- Throws:
IOException
-
composeDiagnosisComponent
protected void composeDiagnosisComponent(String name, Claim.DiagnosisComponent element) throws IOException
- Throws:
IOException
-
composeDiagnosisComponentProperties
protected void composeDiagnosisComponentProperties(Claim.DiagnosisComponent element) throws IOException
- Throws:
IOException
-
composeProcedureComponent
protected void composeProcedureComponent(String name, Claim.ProcedureComponent element) throws IOException
- Throws:
IOException
-
composeProcedureComponentProperties
protected void composeProcedureComponentProperties(Claim.ProcedureComponent element) throws IOException
- Throws:
IOException
-
composeInsuranceComponent
protected void composeInsuranceComponent(String name, Claim.InsuranceComponent element) throws IOException
- Throws:
IOException
-
composeInsuranceComponentProperties
protected void composeInsuranceComponentProperties(Claim.InsuranceComponent element) throws IOException
- Throws:
IOException
-
composeAccidentComponent
protected void composeAccidentComponent(String name, Claim.AccidentComponent element) throws IOException
- Throws:
IOException
-
composeAccidentComponentProperties
protected void composeAccidentComponentProperties(Claim.AccidentComponent element) throws IOException
- Throws:
IOException
-
composeItemComponent
protected void composeItemComponent(String name, Claim.ItemComponent element) throws IOException
- Throws:
IOException
-
composeItemComponentProperties
protected void composeItemComponentProperties(Claim.ItemComponent element) throws IOException
- Throws:
IOException
-
composeDetailComponent
protected void composeDetailComponent(String name, Claim.DetailComponent element) throws IOException
- Throws:
IOException
-
composeDetailComponentProperties
protected void composeDetailComponentProperties(Claim.DetailComponent element) throws IOException
- Throws:
IOException
-
composeSubDetailComponent
protected void composeSubDetailComponent(String name, Claim.SubDetailComponent element) throws IOException
- Throws:
IOException
-
composeSubDetailComponentProperties
protected void composeSubDetailComponentProperties(Claim.SubDetailComponent element) throws IOException
- Throws:
IOException
-
composeClaimResponse
protected void composeClaimResponse(String name, ClaimResponse element) throws IOException
- Throws:
IOException
-
composeClaimResponseProperties
protected void composeClaimResponseProperties(ClaimResponse element) throws IOException
- Throws:
IOException
-
composeItemComponent
protected void composeItemComponent(String name, ClaimResponse.ItemComponent element) throws IOException
- Throws:
IOException
-
composeItemComponentProperties
protected void composeItemComponentProperties(ClaimResponse.ItemComponent element) throws IOException
- Throws:
IOException
-
composeAdjudicationComponent
protected void composeAdjudicationComponent(String name, ClaimResponse.AdjudicationComponent element) throws IOException
- Throws:
IOException
-
composeAdjudicationComponentProperties
protected void composeAdjudicationComponentProperties(ClaimResponse.AdjudicationComponent element) throws IOException
- Throws:
IOException
-
composeItemDetailComponent
protected void composeItemDetailComponent(String name, ClaimResponse.ItemDetailComponent element) throws IOException
- Throws:
IOException
-
composeItemDetailComponentProperties
protected void composeItemDetailComponentProperties(ClaimResponse.ItemDetailComponent element) throws IOException
- Throws:
IOException
-
composeSubDetailComponent
protected void composeSubDetailComponent(String name, ClaimResponse.SubDetailComponent element) throws IOException
- Throws:
IOException
-
composeSubDetailComponentProperties
protected void composeSubDetailComponentProperties(ClaimResponse.SubDetailComponent element) throws IOException
- Throws:
IOException
-
composeAddedItemComponent
protected void composeAddedItemComponent(String name, ClaimResponse.AddedItemComponent element) throws IOException
- Throws:
IOException
-
composeAddedItemComponentProperties
protected void composeAddedItemComponentProperties(ClaimResponse.AddedItemComponent element) throws IOException
- Throws:
IOException
-
composeAddedItemDetailComponent
protected void composeAddedItemDetailComponent(String name, ClaimResponse.AddedItemDetailComponent element) throws IOException
- Throws:
IOException
-
composeAddedItemDetailComponentProperties
protected void composeAddedItemDetailComponentProperties(ClaimResponse.AddedItemDetailComponent element) throws IOException
- Throws:
IOException
-
composeAddedItemSubDetailComponent
protected void composeAddedItemSubDetailComponent(String name, ClaimResponse.AddedItemSubDetailComponent element) throws IOException
- Throws:
IOException
-
composeAddedItemSubDetailComponentProperties
protected void composeAddedItemSubDetailComponentProperties(ClaimResponse.AddedItemSubDetailComponent element) throws IOException
- Throws:
IOException
-
composeTotalComponent
protected void composeTotalComponent(String name, ClaimResponse.TotalComponent element) throws IOException
- Throws:
IOException
-
composeTotalComponentProperties
protected void composeTotalComponentProperties(ClaimResponse.TotalComponent element) throws IOException
- Throws:
IOException
-
composePaymentComponent
protected void composePaymentComponent(String name, ClaimResponse.PaymentComponent element) throws IOException
- Throws:
IOException
-
composePaymentComponentProperties
protected void composePaymentComponentProperties(ClaimResponse.PaymentComponent element) throws IOException
- Throws:
IOException
-
composeNoteComponent
protected void composeNoteComponent(String name, ClaimResponse.NoteComponent element) throws IOException
- Throws:
IOException
-
composeNoteComponentProperties
protected void composeNoteComponentProperties(ClaimResponse.NoteComponent element) throws IOException
- Throws:
IOException
-
composeInsuranceComponent
protected void composeInsuranceComponent(String name, ClaimResponse.InsuranceComponent element) throws IOException
- Throws:
IOException
-
composeInsuranceComponentProperties
protected void composeInsuranceComponentProperties(ClaimResponse.InsuranceComponent element) throws IOException
- Throws:
IOException
-
composeErrorComponent
protected void composeErrorComponent(String name, ClaimResponse.ErrorComponent element) throws IOException
- Throws:
IOException
-
composeErrorComponentProperties
protected void composeErrorComponentProperties(ClaimResponse.ErrorComponent element) throws IOException
- Throws:
IOException
-
composeClinicalImpression
protected void composeClinicalImpression(String name, ClinicalImpression element) throws IOException
- Throws:
IOException
-
composeClinicalImpressionProperties
protected void composeClinicalImpressionProperties(ClinicalImpression element) throws IOException
- Throws:
IOException
-
composeClinicalImpressionInvestigationComponent
protected void composeClinicalImpressionInvestigationComponent(String name, ClinicalImpression.ClinicalImpressionInvestigationComponent element) throws IOException
- Throws:
IOException
-
composeClinicalImpressionInvestigationComponentProperties
protected void composeClinicalImpressionInvestigationComponentProperties(ClinicalImpression.ClinicalImpressionInvestigationComponent element) throws IOException
- Throws:
IOException
-
composeClinicalImpressionFindingComponent
protected void composeClinicalImpressionFindingComponent(String name, ClinicalImpression.ClinicalImpressionFindingComponent element) throws IOException
- Throws:
IOException
-
composeClinicalImpressionFindingComponentProperties
protected void composeClinicalImpressionFindingComponentProperties(ClinicalImpression.ClinicalImpressionFindingComponent element) throws IOException
- Throws:
IOException
-
composeClinicalUseDefinition
protected void composeClinicalUseDefinition(String name, ClinicalUseDefinition element) throws IOException
- Throws:
IOException
-
composeClinicalUseDefinitionProperties
protected void composeClinicalUseDefinitionProperties(ClinicalUseDefinition element) throws IOException
- Throws:
IOException
-
composeClinicalUseDefinitionContraindicationComponent
protected void composeClinicalUseDefinitionContraindicationComponent(String name, ClinicalUseDefinition.ClinicalUseDefinitionContraindicationComponent element) throws IOException
- Throws:
IOException
-
composeClinicalUseDefinitionContraindicationComponentProperties
protected void composeClinicalUseDefinitionContraindicationComponentProperties(ClinicalUseDefinition.ClinicalUseDefinitionContraindicationComponent element) throws IOException
- Throws:
IOException
-
composeClinicalUseDefinitionContraindicationOtherTherapyComponent
protected void composeClinicalUseDefinitionContraindicationOtherTherapyComponent(String name, ClinicalUseDefinition.ClinicalUseDefinitionContraindicationOtherTherapyComponent element) throws IOException
- Throws:
IOException
-
composeClinicalUseDefinitionContraindicationOtherTherapyComponentProperties
protected void composeClinicalUseDefinitionContraindicationOtherTherapyComponentProperties(ClinicalUseDefinition.ClinicalUseDefinitionContraindicationOtherTherapyComponent element) throws IOException
- Throws:
IOException
-
composeClinicalUseDefinitionIndicationComponent
protected void composeClinicalUseDefinitionIndicationComponent(String name, ClinicalUseDefinition.ClinicalUseDefinitionIndicationComponent element) throws IOException
- Throws:
IOException
-
composeClinicalUseDefinitionIndicationComponentProperties
protected void composeClinicalUseDefinitionIndicationComponentProperties(ClinicalUseDefinition.ClinicalUseDefinitionIndicationComponent element) throws IOException
- Throws:
IOException
-
composeClinicalUseDefinitionInteractionComponent
protected void composeClinicalUseDefinitionInteractionComponent(String name, ClinicalUseDefinition.ClinicalUseDefinitionInteractionComponent element) throws IOException
- Throws:
IOException
-
composeClinicalUseDefinitionInteractionComponentProperties
protected void composeClinicalUseDefinitionInteractionComponentProperties(ClinicalUseDefinition.ClinicalUseDefinitionInteractionComponent element) throws IOException
- Throws:
IOException
-
composeClinicalUseDefinitionInteractionInteractantComponent
protected void composeClinicalUseDefinitionInteractionInteractantComponent(String name, ClinicalUseDefinition.ClinicalUseDefinitionInteractionInteractantComponent element) throws IOException
- Throws:
IOException
-
composeClinicalUseDefinitionInteractionInteractantComponentProperties
protected void composeClinicalUseDefinitionInteractionInteractantComponentProperties(ClinicalUseDefinition.ClinicalUseDefinitionInteractionInteractantComponent element) throws IOException
- Throws:
IOException
-
composeClinicalUseDefinitionUndesirableEffectComponent
protected void composeClinicalUseDefinitionUndesirableEffectComponent(String name, ClinicalUseDefinition.ClinicalUseDefinitionUndesirableEffectComponent element) throws IOException
- Throws:
IOException
-
composeClinicalUseDefinitionUndesirableEffectComponentProperties
protected void composeClinicalUseDefinitionUndesirableEffectComponentProperties(ClinicalUseDefinition.ClinicalUseDefinitionUndesirableEffectComponent element) throws IOException
- Throws:
IOException
-
composeClinicalUseDefinitionWarningComponent
protected void composeClinicalUseDefinitionWarningComponent(String name, ClinicalUseDefinition.ClinicalUseDefinitionWarningComponent element) throws IOException
- Throws:
IOException
-
composeClinicalUseDefinitionWarningComponentProperties
protected void composeClinicalUseDefinitionWarningComponentProperties(ClinicalUseDefinition.ClinicalUseDefinitionWarningComponent element) throws IOException
- Throws:
IOException
-
composeCodeSystem
protected void composeCodeSystem(String name, CodeSystem element) throws IOException
- Throws:
IOException
-
composeCodeSystemProperties
protected void composeCodeSystemProperties(CodeSystem element) throws IOException
- Throws:
IOException
-
composeCodeSystemFilterComponent
protected void composeCodeSystemFilterComponent(String name, CodeSystem.CodeSystemFilterComponent element) throws IOException
- Throws:
IOException
-
composeCodeSystemFilterComponentProperties
protected void composeCodeSystemFilterComponentProperties(CodeSystem.CodeSystemFilterComponent element) throws IOException
- Throws:
IOException
-
composePropertyComponent
protected void composePropertyComponent(String name, CodeSystem.PropertyComponent element) throws IOException
- Throws:
IOException
-
composePropertyComponentProperties
protected void composePropertyComponentProperties(CodeSystem.PropertyComponent element) throws IOException
- Throws:
IOException
-
composeConceptDefinitionComponent
protected void composeConceptDefinitionComponent(String name, CodeSystem.ConceptDefinitionComponent element) throws IOException
- Throws:
IOException
-
composeConceptDefinitionComponentProperties
protected void composeConceptDefinitionComponentProperties(CodeSystem.ConceptDefinitionComponent element) throws IOException
- Throws:
IOException
-
composeConceptDefinitionDesignationComponent
protected void composeConceptDefinitionDesignationComponent(String name, CodeSystem.ConceptDefinitionDesignationComponent element) throws IOException
- Throws:
IOException
-
composeConceptDefinitionDesignationComponentProperties
protected void composeConceptDefinitionDesignationComponentProperties(CodeSystem.ConceptDefinitionDesignationComponent element) throws IOException
- Throws:
IOException
-
composeConceptPropertyComponent
protected void composeConceptPropertyComponent(String name, CodeSystem.ConceptPropertyComponent element) throws IOException
- Throws:
IOException
-
composeConceptPropertyComponentProperties
protected void composeConceptPropertyComponentProperties(CodeSystem.ConceptPropertyComponent element) throws IOException
- Throws:
IOException
-
composeCommunication
protected void composeCommunication(String name, Communication element) throws IOException
- Throws:
IOException
-
composeCommunicationProperties
protected void composeCommunicationProperties(Communication element) throws IOException
- Throws:
IOException
-
composeCommunicationPayloadComponent
protected void composeCommunicationPayloadComponent(String name, Communication.CommunicationPayloadComponent element) throws IOException
- Throws:
IOException
-
composeCommunicationPayloadComponentProperties
protected void composeCommunicationPayloadComponentProperties(Communication.CommunicationPayloadComponent element) throws IOException
- Throws:
IOException
-
composeCommunicationRequest
protected void composeCommunicationRequest(String name, CommunicationRequest element) throws IOException
- Throws:
IOException
-
composeCommunicationRequestProperties
protected void composeCommunicationRequestProperties(CommunicationRequest element) throws IOException
- Throws:
IOException
-
composeCommunicationRequestPayloadComponent
protected void composeCommunicationRequestPayloadComponent(String name, CommunicationRequest.CommunicationRequestPayloadComponent element) throws IOException
- Throws:
IOException
-
composeCommunicationRequestPayloadComponentProperties
protected void composeCommunicationRequestPayloadComponentProperties(CommunicationRequest.CommunicationRequestPayloadComponent element) throws IOException
- Throws:
IOException
-
composeCompartmentDefinition
protected void composeCompartmentDefinition(String name, CompartmentDefinition element) throws IOException
- Throws:
IOException
-
composeCompartmentDefinitionProperties
protected void composeCompartmentDefinitionProperties(CompartmentDefinition element) throws IOException
- Throws:
IOException
-
composeCompartmentDefinitionResourceComponent
protected void composeCompartmentDefinitionResourceComponent(String name, CompartmentDefinition.CompartmentDefinitionResourceComponent element) throws IOException
- Throws:
IOException
-
composeCompartmentDefinitionResourceComponentProperties
protected void composeCompartmentDefinitionResourceComponentProperties(CompartmentDefinition.CompartmentDefinitionResourceComponent element) throws IOException
- Throws:
IOException
-
composeComposition
protected void composeComposition(String name, Composition element) throws IOException
- Throws:
IOException
-
composeCompositionProperties
protected void composeCompositionProperties(Composition element) throws IOException
- Throws:
IOException
-
composeCompositionAttesterComponent
protected void composeCompositionAttesterComponent(String name, Composition.CompositionAttesterComponent element) throws IOException
- Throws:
IOException
-
composeCompositionAttesterComponentProperties
protected void composeCompositionAttesterComponentProperties(Composition.CompositionAttesterComponent element) throws IOException
- Throws:
IOException
-
composeCompositionRelatesToComponent
protected void composeCompositionRelatesToComponent(String name, Composition.CompositionRelatesToComponent element) throws IOException
- Throws:
IOException
-
composeCompositionRelatesToComponentProperties
protected void composeCompositionRelatesToComponentProperties(Composition.CompositionRelatesToComponent element) throws IOException
- Throws:
IOException
-
composeCompositionEventComponent
protected void composeCompositionEventComponent(String name, Composition.CompositionEventComponent element) throws IOException
- Throws:
IOException
-
composeCompositionEventComponentProperties
protected void composeCompositionEventComponentProperties(Composition.CompositionEventComponent element) throws IOException
- Throws:
IOException
-
composeSectionComponent
protected void composeSectionComponent(String name, Composition.SectionComponent element) throws IOException
- Throws:
IOException
-
composeSectionComponentProperties
protected void composeSectionComponentProperties(Composition.SectionComponent element) throws IOException
- Throws:
IOException
-
composeConceptMap
protected void composeConceptMap(String name, ConceptMap element) throws IOException
- Throws:
IOException
-
composeConceptMapProperties
protected void composeConceptMapProperties(ConceptMap element) throws IOException
- Throws:
IOException
-
composeConceptMapGroupComponent
protected void composeConceptMapGroupComponent(String name, ConceptMap.ConceptMapGroupComponent element) throws IOException
- Throws:
IOException
-
composeConceptMapGroupComponentProperties
protected void composeConceptMapGroupComponentProperties(ConceptMap.ConceptMapGroupComponent element) throws IOException
- Throws:
IOException
-
composeSourceElementComponent
protected void composeSourceElementComponent(String name, ConceptMap.SourceElementComponent element) throws IOException
- Throws:
IOException
-
composeSourceElementComponentProperties
protected void composeSourceElementComponentProperties(ConceptMap.SourceElementComponent element) throws IOException
- Throws:
IOException
-
composeTargetElementComponent
protected void composeTargetElementComponent(String name, ConceptMap.TargetElementComponent element) throws IOException
- Throws:
IOException
-
composeTargetElementComponentProperties
protected void composeTargetElementComponentProperties(ConceptMap.TargetElementComponent element) throws IOException
- Throws:
IOException
-
composeOtherElementComponent
protected void composeOtherElementComponent(String name, ConceptMap.OtherElementComponent element) throws IOException
- Throws:
IOException
-
composeOtherElementComponentProperties
protected void composeOtherElementComponentProperties(ConceptMap.OtherElementComponent element) throws IOException
- Throws:
IOException
-
composeConceptMapGroupUnmappedComponent
protected void composeConceptMapGroupUnmappedComponent(String name, ConceptMap.ConceptMapGroupUnmappedComponent element) throws IOException
- Throws:
IOException
-
composeConceptMapGroupUnmappedComponentProperties
protected void composeConceptMapGroupUnmappedComponentProperties(ConceptMap.ConceptMapGroupUnmappedComponent element) throws IOException
- Throws:
IOException
-
composeCondition
protected void composeCondition(String name, Condition element) throws IOException
- Throws:
IOException
-
composeConditionProperties
protected void composeConditionProperties(Condition element) throws IOException
- Throws:
IOException
-
composeConditionStageComponent
protected void composeConditionStageComponent(String name, Condition.ConditionStageComponent element) throws IOException
- Throws:
IOException
-
composeConditionStageComponentProperties
protected void composeConditionStageComponentProperties(Condition.ConditionStageComponent element) throws IOException
- Throws:
IOException
-
composeConditionEvidenceComponent
protected void composeConditionEvidenceComponent(String name, Condition.ConditionEvidenceComponent element) throws IOException
- Throws:
IOException
-
composeConditionEvidenceComponentProperties
protected void composeConditionEvidenceComponentProperties(Condition.ConditionEvidenceComponent element) throws IOException
- Throws:
IOException
-
composeConsent
protected void composeConsent(String name, Consent element) throws IOException
- Throws:
IOException
-
composeConsentProperties
protected void composeConsentProperties(Consent element) throws IOException
- Throws:
IOException
-
composeConsentPolicyComponent
protected void composeConsentPolicyComponent(String name, Consent.ConsentPolicyComponent element) throws IOException
- Throws:
IOException
-
composeConsentPolicyComponentProperties
protected void composeConsentPolicyComponentProperties(Consent.ConsentPolicyComponent element) throws IOException
- Throws:
IOException
-
composeConsentVerificationComponent
protected void composeConsentVerificationComponent(String name, Consent.ConsentVerificationComponent element) throws IOException
- Throws:
IOException
-
composeConsentVerificationComponentProperties
protected void composeConsentVerificationComponentProperties(Consent.ConsentVerificationComponent element) throws IOException
- Throws:
IOException
-
composeProvisionComponent
protected void composeProvisionComponent(String name, Consent.ProvisionComponent element) throws IOException
- Throws:
IOException
-
composeProvisionComponentProperties
protected void composeProvisionComponentProperties(Consent.ProvisionComponent element) throws IOException
- Throws:
IOException
-
composeProvisionActorComponent
protected void composeProvisionActorComponent(String name, Consent.ProvisionActorComponent element) throws IOException
- Throws:
IOException
-
composeProvisionActorComponentProperties
protected void composeProvisionActorComponentProperties(Consent.ProvisionActorComponent element) throws IOException
- Throws:
IOException
-
composeProvisionDataComponent
protected void composeProvisionDataComponent(String name, Consent.ProvisionDataComponent element) throws IOException
- Throws:
IOException
-
composeProvisionDataComponentProperties
protected void composeProvisionDataComponentProperties(Consent.ProvisionDataComponent element) throws IOException
- Throws:
IOException
-
composeContract
protected void composeContract(String name, Contract element) throws IOException
- Throws:
IOException
-
composeContractProperties
protected void composeContractProperties(Contract element) throws IOException
- Throws:
IOException
-
composeContentDefinitionComponent
protected void composeContentDefinitionComponent(String name, Contract.ContentDefinitionComponent element) throws IOException
- Throws:
IOException
-
composeContentDefinitionComponentProperties
protected void composeContentDefinitionComponentProperties(Contract.ContentDefinitionComponent element) throws IOException
- Throws:
IOException
-
composeTermComponent
protected void composeTermComponent(String name, Contract.TermComponent element) throws IOException
- Throws:
IOException
-
composeTermComponentProperties
protected void composeTermComponentProperties(Contract.TermComponent element) throws IOException
- Throws:
IOException
-
composeSecurityLabelComponent
protected void composeSecurityLabelComponent(String name, Contract.SecurityLabelComponent element) throws IOException
- Throws:
IOException
-
composeSecurityLabelComponentProperties
protected void composeSecurityLabelComponentProperties(Contract.SecurityLabelComponent element) throws IOException
- Throws:
IOException
-
composeContractOfferComponent
protected void composeContractOfferComponent(String name, Contract.ContractOfferComponent element) throws IOException
- Throws:
IOException
-
composeContractOfferComponentProperties
protected void composeContractOfferComponentProperties(Contract.ContractOfferComponent element) throws IOException
- Throws:
IOException
-
composeContractPartyComponent
protected void composeContractPartyComponent(String name, Contract.ContractPartyComponent element) throws IOException
- Throws:
IOException
-
composeContractPartyComponentProperties
protected void composeContractPartyComponentProperties(Contract.ContractPartyComponent element) throws IOException
- Throws:
IOException
-
composeAnswerComponent
protected void composeAnswerComponent(String name, Contract.AnswerComponent element) throws IOException
- Throws:
IOException
-
composeAnswerComponentProperties
protected void composeAnswerComponentProperties(Contract.AnswerComponent element) throws IOException
- Throws:
IOException
-
composeContractAssetComponent
protected void composeContractAssetComponent(String name, Contract.ContractAssetComponent element) throws IOException
- Throws:
IOException
-
composeContractAssetComponentProperties
protected void composeContractAssetComponentProperties(Contract.ContractAssetComponent element) throws IOException
- Throws:
IOException
-
composeAssetContextComponent
protected void composeAssetContextComponent(String name, Contract.AssetContextComponent element) throws IOException
- Throws:
IOException
-
composeAssetContextComponentProperties
protected void composeAssetContextComponentProperties(Contract.AssetContextComponent element) throws IOException
- Throws:
IOException
-
composeValuedItemComponent
protected void composeValuedItemComponent(String name, Contract.ValuedItemComponent element) throws IOException
- Throws:
IOException
-
composeValuedItemComponentProperties
protected void composeValuedItemComponentProperties(Contract.ValuedItemComponent element) throws IOException
- Throws:
IOException
-
composeActionComponent
protected void composeActionComponent(String name, Contract.ActionComponent element) throws IOException
- Throws:
IOException
-
composeActionComponentProperties
protected void composeActionComponentProperties(Contract.ActionComponent element) throws IOException
- Throws:
IOException
-
composeActionSubjectComponent
protected void composeActionSubjectComponent(String name, Contract.ActionSubjectComponent element) throws IOException
- Throws:
IOException
-
composeActionSubjectComponentProperties
protected void composeActionSubjectComponentProperties(Contract.ActionSubjectComponent element) throws IOException
- Throws:
IOException
-
composeSignatoryComponent
protected void composeSignatoryComponent(String name, Contract.SignatoryComponent element) throws IOException
- Throws:
IOException
-
composeSignatoryComponentProperties
protected void composeSignatoryComponentProperties(Contract.SignatoryComponent element) throws IOException
- Throws:
IOException
-
composeFriendlyLanguageComponent
protected void composeFriendlyLanguageComponent(String name, Contract.FriendlyLanguageComponent element) throws IOException
- Throws:
IOException
-
composeFriendlyLanguageComponentProperties
protected void composeFriendlyLanguageComponentProperties(Contract.FriendlyLanguageComponent element) throws IOException
- Throws:
IOException
-
composeLegalLanguageComponent
protected void composeLegalLanguageComponent(String name, Contract.LegalLanguageComponent element) throws IOException
- Throws:
IOException
-
composeLegalLanguageComponentProperties
protected void composeLegalLanguageComponentProperties(Contract.LegalLanguageComponent element) throws IOException
- Throws:
IOException
-
composeComputableLanguageComponent
protected void composeComputableLanguageComponent(String name, Contract.ComputableLanguageComponent element) throws IOException
- Throws:
IOException
-
composeComputableLanguageComponentProperties
protected void composeComputableLanguageComponentProperties(Contract.ComputableLanguageComponent element) throws IOException
- Throws:
IOException
-
composeCoverage
protected void composeCoverage(String name, Coverage element) throws IOException
- Throws:
IOException
-
composeCoverageProperties
protected void composeCoverageProperties(Coverage element) throws IOException
- Throws:
IOException
-
composeClassComponent
protected void composeClassComponent(String name, Coverage.ClassComponent element) throws IOException
- Throws:
IOException
-
composeClassComponentProperties
protected void composeClassComponentProperties(Coverage.ClassComponent element) throws IOException
- Throws:
IOException
-
composeCostToBeneficiaryComponent
protected void composeCostToBeneficiaryComponent(String name, Coverage.CostToBeneficiaryComponent element) throws IOException
- Throws:
IOException
-
composeCostToBeneficiaryComponentProperties
protected void composeCostToBeneficiaryComponentProperties(Coverage.CostToBeneficiaryComponent element) throws IOException
- Throws:
IOException
-
composeExemptionComponent
protected void composeExemptionComponent(String name, Coverage.ExemptionComponent element) throws IOException
- Throws:
IOException
-
composeExemptionComponentProperties
protected void composeExemptionComponentProperties(Coverage.ExemptionComponent element) throws IOException
- Throws:
IOException
-
composeCoverageEligibilityRequest
protected void composeCoverageEligibilityRequest(String name, CoverageEligibilityRequest element) throws IOException
- Throws:
IOException
-
composeCoverageEligibilityRequestProperties
protected void composeCoverageEligibilityRequestProperties(CoverageEligibilityRequest element) throws IOException
- Throws:
IOException
-
composeSupportingInformationComponent
protected void composeSupportingInformationComponent(String name, CoverageEligibilityRequest.SupportingInformationComponent element) throws IOException
- Throws:
IOException
-
composeSupportingInformationComponentProperties
protected void composeSupportingInformationComponentProperties(CoverageEligibilityRequest.SupportingInformationComponent element) throws IOException
- Throws:
IOException
-
composeInsuranceComponent
protected void composeInsuranceComponent(String name, CoverageEligibilityRequest.InsuranceComponent element) throws IOException
- Throws:
IOException
-
composeInsuranceComponentProperties
protected void composeInsuranceComponentProperties(CoverageEligibilityRequest.InsuranceComponent element) throws IOException
- Throws:
IOException
-
composeDetailsComponent
protected void composeDetailsComponent(String name, CoverageEligibilityRequest.DetailsComponent element) throws IOException
- Throws:
IOException
-
composeDetailsComponentProperties
protected void composeDetailsComponentProperties(CoverageEligibilityRequest.DetailsComponent element) throws IOException
- Throws:
IOException
-
composeDiagnosisComponent
protected void composeDiagnosisComponent(String name, CoverageEligibilityRequest.DiagnosisComponent element) throws IOException
- Throws:
IOException
-
composeDiagnosisComponentProperties
protected void composeDiagnosisComponentProperties(CoverageEligibilityRequest.DiagnosisComponent element) throws IOException
- Throws:
IOException
-
composeCoverageEligibilityResponse
protected void composeCoverageEligibilityResponse(String name, CoverageEligibilityResponse element) throws IOException
- Throws:
IOException
-
composeCoverageEligibilityResponseProperties
protected void composeCoverageEligibilityResponseProperties(CoverageEligibilityResponse element) throws IOException
- Throws:
IOException
-
composeInsuranceComponent
protected void composeInsuranceComponent(String name, CoverageEligibilityResponse.InsuranceComponent element) throws IOException
- Throws:
IOException
-
composeInsuranceComponentProperties
protected void composeInsuranceComponentProperties(CoverageEligibilityResponse.InsuranceComponent element) throws IOException
- Throws:
IOException
-
composeItemsComponent
protected void composeItemsComponent(String name, CoverageEligibilityResponse.ItemsComponent element) throws IOException
- Throws:
IOException
-
composeItemsComponentProperties
protected void composeItemsComponentProperties(CoverageEligibilityResponse.ItemsComponent element) throws IOException
- Throws:
IOException
-
composeBenefitComponent
protected void composeBenefitComponent(String name, CoverageEligibilityResponse.BenefitComponent element) throws IOException
- Throws:
IOException
-
composeBenefitComponentProperties
protected void composeBenefitComponentProperties(CoverageEligibilityResponse.BenefitComponent element) throws IOException
- Throws:
IOException
-
composeErrorsComponent
protected void composeErrorsComponent(String name, CoverageEligibilityResponse.ErrorsComponent element) throws IOException
- Throws:
IOException
-
composeErrorsComponentProperties
protected void composeErrorsComponentProperties(CoverageEligibilityResponse.ErrorsComponent element) throws IOException
- Throws:
IOException
-
composeDetectedIssue
protected void composeDetectedIssue(String name, DetectedIssue element) throws IOException
- Throws:
IOException
-
composeDetectedIssueProperties
protected void composeDetectedIssueProperties(DetectedIssue element) throws IOException
- Throws:
IOException
-
composeDetectedIssueEvidenceComponent
protected void composeDetectedIssueEvidenceComponent(String name, DetectedIssue.DetectedIssueEvidenceComponent element) throws IOException
- Throws:
IOException
-
composeDetectedIssueEvidenceComponentProperties
protected void composeDetectedIssueEvidenceComponentProperties(DetectedIssue.DetectedIssueEvidenceComponent element) throws IOException
- Throws:
IOException
-
composeDetectedIssueMitigationComponent
protected void composeDetectedIssueMitigationComponent(String name, DetectedIssue.DetectedIssueMitigationComponent element) throws IOException
- Throws:
IOException
-
composeDetectedIssueMitigationComponentProperties
protected void composeDetectedIssueMitigationComponentProperties(DetectedIssue.DetectedIssueMitigationComponent element) throws IOException
- Throws:
IOException
-
composeDevice
protected void composeDevice(String name, Device element) throws IOException
- Throws:
IOException
-
composeDeviceProperties
protected void composeDeviceProperties(Device element) throws IOException
- Throws:
IOException
-
composeDeviceUdiCarrierComponent
protected void composeDeviceUdiCarrierComponent(String name, Device.DeviceUdiCarrierComponent element) throws IOException
- Throws:
IOException
-
composeDeviceUdiCarrierComponentProperties
protected void composeDeviceUdiCarrierComponentProperties(Device.DeviceUdiCarrierComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDeviceNameComponent
protected void composeDeviceDeviceNameComponent(String name, Device.DeviceDeviceNameComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDeviceNameComponentProperties
protected void composeDeviceDeviceNameComponentProperties(Device.DeviceDeviceNameComponent element) throws IOException
- Throws:
IOException
-
composeDeviceSpecializationComponent
protected void composeDeviceSpecializationComponent(String name, Device.DeviceSpecializationComponent element) throws IOException
- Throws:
IOException
-
composeDeviceSpecializationComponentProperties
protected void composeDeviceSpecializationComponentProperties(Device.DeviceSpecializationComponent element) throws IOException
- Throws:
IOException
-
composeDeviceVersionComponent
protected void composeDeviceVersionComponent(String name, Device.DeviceVersionComponent element) throws IOException
- Throws:
IOException
-
composeDeviceVersionComponentProperties
protected void composeDeviceVersionComponentProperties(Device.DeviceVersionComponent element) throws IOException
- Throws:
IOException
-
composeDevicePropertyComponent
protected void composeDevicePropertyComponent(String name, Device.DevicePropertyComponent element) throws IOException
- Throws:
IOException
-
composeDevicePropertyComponentProperties
protected void composeDevicePropertyComponentProperties(Device.DevicePropertyComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDefinition
protected void composeDeviceDefinition(String name, DeviceDefinition element) throws IOException
- Throws:
IOException
-
composeDeviceDefinitionProperties
protected void composeDeviceDefinitionProperties(DeviceDefinition element) throws IOException
- Throws:
IOException
-
composeDeviceDefinitionUdiDeviceIdentifierComponent
protected void composeDeviceDefinitionUdiDeviceIdentifierComponent(String name, DeviceDefinition.DeviceDefinitionUdiDeviceIdentifierComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDefinitionUdiDeviceIdentifierComponentProperties
protected void composeDeviceDefinitionUdiDeviceIdentifierComponentProperties(DeviceDefinition.DeviceDefinitionUdiDeviceIdentifierComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDefinitionDeviceNameComponent
protected void composeDeviceDefinitionDeviceNameComponent(String name, DeviceDefinition.DeviceDefinitionDeviceNameComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDefinitionDeviceNameComponentProperties
protected void composeDeviceDefinitionDeviceNameComponentProperties(DeviceDefinition.DeviceDefinitionDeviceNameComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDefinitionSpecializationComponent
protected void composeDeviceDefinitionSpecializationComponent(String name, DeviceDefinition.DeviceDefinitionSpecializationComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDefinitionSpecializationComponentProperties
protected void composeDeviceDefinitionSpecializationComponentProperties(DeviceDefinition.DeviceDefinitionSpecializationComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDefinitionCapabilityComponent
protected void composeDeviceDefinitionCapabilityComponent(String name, DeviceDefinition.DeviceDefinitionCapabilityComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDefinitionCapabilityComponentProperties
protected void composeDeviceDefinitionCapabilityComponentProperties(DeviceDefinition.DeviceDefinitionCapabilityComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDefinitionPropertyComponent
protected void composeDeviceDefinitionPropertyComponent(String name, DeviceDefinition.DeviceDefinitionPropertyComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDefinitionPropertyComponentProperties
protected void composeDeviceDefinitionPropertyComponentProperties(DeviceDefinition.DeviceDefinitionPropertyComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDefinitionMaterialComponent
protected void composeDeviceDefinitionMaterialComponent(String name, DeviceDefinition.DeviceDefinitionMaterialComponent element) throws IOException
- Throws:
IOException
-
composeDeviceDefinitionMaterialComponentProperties
protected void composeDeviceDefinitionMaterialComponentProperties(DeviceDefinition.DeviceDefinitionMaterialComponent element) throws IOException
- Throws:
IOException
-
composeDeviceMetric
protected void composeDeviceMetric(String name, DeviceMetric element) throws IOException
- Throws:
IOException
-
composeDeviceMetricProperties
protected void composeDeviceMetricProperties(DeviceMetric element) throws IOException
- Throws:
IOException
-
composeDeviceMetricCalibrationComponent
protected void composeDeviceMetricCalibrationComponent(String name, DeviceMetric.DeviceMetricCalibrationComponent element) throws IOException
- Throws:
IOException
-
composeDeviceMetricCalibrationComponentProperties
protected void composeDeviceMetricCalibrationComponentProperties(DeviceMetric.DeviceMetricCalibrationComponent element) throws IOException
- Throws:
IOException
-
composeDeviceRequest
protected void composeDeviceRequest(String name, DeviceRequest element) throws IOException
- Throws:
IOException
-
composeDeviceRequestProperties
protected void composeDeviceRequestProperties(DeviceRequest element) throws IOException
- Throws:
IOException
-
composeDeviceRequestParameterComponent
protected void composeDeviceRequestParameterComponent(String name, DeviceRequest.DeviceRequestParameterComponent element) throws IOException
- Throws:
IOException
-
composeDeviceRequestParameterComponentProperties
protected void composeDeviceRequestParameterComponentProperties(DeviceRequest.DeviceRequestParameterComponent element) throws IOException
- Throws:
IOException
-
composeDeviceUseStatement
protected void composeDeviceUseStatement(String name, DeviceUseStatement element) throws IOException
- Throws:
IOException
-
composeDeviceUseStatementProperties
protected void composeDeviceUseStatementProperties(DeviceUseStatement element) throws IOException
- Throws:
IOException
-
composeDiagnosticReport
protected void composeDiagnosticReport(String name, DiagnosticReport element) throws IOException
- Throws:
IOException
-
composeDiagnosticReportProperties
protected void composeDiagnosticReportProperties(DiagnosticReport element) throws IOException
- Throws:
IOException
-
composeDiagnosticReportMediaComponent
protected void composeDiagnosticReportMediaComponent(String name, DiagnosticReport.DiagnosticReportMediaComponent element) throws IOException
- Throws:
IOException
-
composeDiagnosticReportMediaComponentProperties
protected void composeDiagnosticReportMediaComponentProperties(DiagnosticReport.DiagnosticReportMediaComponent element) throws IOException
- Throws:
IOException
-
composeDocumentManifest
protected void composeDocumentManifest(String name, DocumentManifest element) throws IOException
- Throws:
IOException
-
composeDocumentManifestProperties
protected void composeDocumentManifestProperties(DocumentManifest element) throws IOException
- Throws:
IOException
-
composeDocumentManifestRelatedComponent
protected void composeDocumentManifestRelatedComponent(String name, DocumentManifest.DocumentManifestRelatedComponent element) throws IOException
- Throws:
IOException
-
composeDocumentManifestRelatedComponentProperties
protected void composeDocumentManifestRelatedComponentProperties(DocumentManifest.DocumentManifestRelatedComponent element) throws IOException
- Throws:
IOException
-
composeDocumentReference
protected void composeDocumentReference(String name, DocumentReference element) throws IOException
- Throws:
IOException
-
composeDocumentReferenceProperties
protected void composeDocumentReferenceProperties(DocumentReference element) throws IOException
- Throws:
IOException
-
composeDocumentReferenceRelatesToComponent
protected void composeDocumentReferenceRelatesToComponent(String name, DocumentReference.DocumentReferenceRelatesToComponent element) throws IOException
- Throws:
IOException
-
composeDocumentReferenceRelatesToComponentProperties
protected void composeDocumentReferenceRelatesToComponentProperties(DocumentReference.DocumentReferenceRelatesToComponent element) throws IOException
- Throws:
IOException
-
composeDocumentReferenceContentComponent
protected void composeDocumentReferenceContentComponent(String name, DocumentReference.DocumentReferenceContentComponent element) throws IOException
- Throws:
IOException
-
composeDocumentReferenceContentComponentProperties
protected void composeDocumentReferenceContentComponentProperties(DocumentReference.DocumentReferenceContentComponent element) throws IOException
- Throws:
IOException
-
composeDocumentReferenceContextComponent
protected void composeDocumentReferenceContextComponent(String name, DocumentReference.DocumentReferenceContextComponent element) throws IOException
- Throws:
IOException
-
composeDocumentReferenceContextComponentProperties
protected void composeDocumentReferenceContextComponentProperties(DocumentReference.DocumentReferenceContextComponent element) throws IOException
- Throws:
IOException
-
composeEncounter
protected void composeEncounter(String name, Encounter element) throws IOException
- Throws:
IOException
-
composeEncounterProperties
protected void composeEncounterProperties(Encounter element) throws IOException
- Throws:
IOException
-
composeStatusHistoryComponent
protected void composeStatusHistoryComponent(String name, Encounter.StatusHistoryComponent element) throws IOException
- Throws:
IOException
-
composeStatusHistoryComponentProperties
protected void composeStatusHistoryComponentProperties(Encounter.StatusHistoryComponent element) throws IOException
- Throws:
IOException
-
composeClassHistoryComponent
protected void composeClassHistoryComponent(String name, Encounter.ClassHistoryComponent element) throws IOException
- Throws:
IOException
-
composeClassHistoryComponentProperties
protected void composeClassHistoryComponentProperties(Encounter.ClassHistoryComponent element) throws IOException
- Throws:
IOException
-
composeEncounterParticipantComponent
protected void composeEncounterParticipantComponent(String name, Encounter.EncounterParticipantComponent element) throws IOException
- Throws:
IOException
-
composeEncounterParticipantComponentProperties
protected void composeEncounterParticipantComponentProperties(Encounter.EncounterParticipantComponent element) throws IOException
- Throws:
IOException
-
composeDiagnosisComponent
protected void composeDiagnosisComponent(String name, Encounter.DiagnosisComponent element) throws IOException
- Throws:
IOException
-
composeDiagnosisComponentProperties
protected void composeDiagnosisComponentProperties(Encounter.DiagnosisComponent element) throws IOException
- Throws:
IOException
-
composeEncounterHospitalizationComponent
protected void composeEncounterHospitalizationComponent(String name, Encounter.EncounterHospitalizationComponent element) throws IOException
- Throws:
IOException
-
composeEncounterHospitalizationComponentProperties
protected void composeEncounterHospitalizationComponentProperties(Encounter.EncounterHospitalizationComponent element) throws IOException
- Throws:
IOException
-
composeEncounterLocationComponent
protected void composeEncounterLocationComponent(String name, Encounter.EncounterLocationComponent element) throws IOException
- Throws:
IOException
-
composeEncounterLocationComponentProperties
protected void composeEncounterLocationComponentProperties(Encounter.EncounterLocationComponent element) throws IOException
- Throws:
IOException
-
composeEndpoint
protected void composeEndpoint(String name, Endpoint element) throws IOException
- Throws:
IOException
-
composeEndpointProperties
protected void composeEndpointProperties(Endpoint element) throws IOException
- Throws:
IOException
-
composeEnrollmentRequest
protected void composeEnrollmentRequest(String name, EnrollmentRequest element) throws IOException
- Throws:
IOException
-
composeEnrollmentRequestProperties
protected void composeEnrollmentRequestProperties(EnrollmentRequest element) throws IOException
- Throws:
IOException
-
composeEnrollmentResponse
protected void composeEnrollmentResponse(String name, EnrollmentResponse element) throws IOException
- Throws:
IOException
-
composeEnrollmentResponseProperties
protected void composeEnrollmentResponseProperties(EnrollmentResponse element) throws IOException
- Throws:
IOException
-
composeEpisodeOfCare
protected void composeEpisodeOfCare(String name, EpisodeOfCare element) throws IOException
- Throws:
IOException
-
composeEpisodeOfCareProperties
protected void composeEpisodeOfCareProperties(EpisodeOfCare element) throws IOException
- Throws:
IOException
-
composeEpisodeOfCareStatusHistoryComponent
protected void composeEpisodeOfCareStatusHistoryComponent(String name, EpisodeOfCare.EpisodeOfCareStatusHistoryComponent element) throws IOException
- Throws:
IOException
-
composeEpisodeOfCareStatusHistoryComponentProperties
protected void composeEpisodeOfCareStatusHistoryComponentProperties(EpisodeOfCare.EpisodeOfCareStatusHistoryComponent element) throws IOException
- Throws:
IOException
-
composeDiagnosisComponent
protected void composeDiagnosisComponent(String name, EpisodeOfCare.DiagnosisComponent element) throws IOException
- Throws:
IOException
-
composeDiagnosisComponentProperties
protected void composeDiagnosisComponentProperties(EpisodeOfCare.DiagnosisComponent element) throws IOException
- Throws:
IOException
-
composeEventDefinition
protected void composeEventDefinition(String name, EventDefinition element) throws IOException
- Throws:
IOException
-
composeEventDefinitionProperties
protected void composeEventDefinitionProperties(EventDefinition element) throws IOException
- Throws:
IOException
-
composeEvidence
protected void composeEvidence(String name, Evidence element) throws IOException
- Throws:
IOException
-
composeEvidenceProperties
protected void composeEvidenceProperties(Evidence element) throws IOException
- Throws:
IOException
-
composeEvidenceVariableDefinitionComponent
protected void composeEvidenceVariableDefinitionComponent(String name, Evidence.EvidenceVariableDefinitionComponent element) throws IOException
- Throws:
IOException
-
composeEvidenceVariableDefinitionComponentProperties
protected void composeEvidenceVariableDefinitionComponentProperties(Evidence.EvidenceVariableDefinitionComponent element) throws IOException
- Throws:
IOException
-
composeEvidenceStatisticComponent
protected void composeEvidenceStatisticComponent(String name, Evidence.EvidenceStatisticComponent element) throws IOException
- Throws:
IOException
-
composeEvidenceStatisticComponentProperties
protected void composeEvidenceStatisticComponentProperties(Evidence.EvidenceStatisticComponent element) throws IOException
- Throws:
IOException
-
composeEvidenceStatisticSampleSizeComponent
protected void composeEvidenceStatisticSampleSizeComponent(String name, Evidence.EvidenceStatisticSampleSizeComponent element) throws IOException
- Throws:
IOException
-
composeEvidenceStatisticSampleSizeComponentProperties
protected void composeEvidenceStatisticSampleSizeComponentProperties(Evidence.EvidenceStatisticSampleSizeComponent element) throws IOException
- Throws:
IOException
-
composeEvidenceStatisticAttributeEstimateComponent
protected void composeEvidenceStatisticAttributeEstimateComponent(String name, Evidence.EvidenceStatisticAttributeEstimateComponent element) throws IOException
- Throws:
IOException
-
composeEvidenceStatisticAttributeEstimateComponentProperties
protected void composeEvidenceStatisticAttributeEstimateComponentProperties(Evidence.EvidenceStatisticAttributeEstimateComponent element) throws IOException
- Throws:
IOException
-
composeEvidenceStatisticModelCharacteristicComponent
protected void composeEvidenceStatisticModelCharacteristicComponent(String name, Evidence.EvidenceStatisticModelCharacteristicComponent element) throws IOException
- Throws:
IOException
-
composeEvidenceStatisticModelCharacteristicComponentProperties
protected void composeEvidenceStatisticModelCharacteristicComponentProperties(Evidence.EvidenceStatisticModelCharacteristicComponent element) throws IOException
- Throws:
IOException
-
composeEvidenceStatisticModelCharacteristicVariableComponent
protected void composeEvidenceStatisticModelCharacteristicVariableComponent(String name, Evidence.EvidenceStatisticModelCharacteristicVariableComponent element) throws IOException
- Throws:
IOException
-
composeEvidenceStatisticModelCharacteristicVariableComponentProperties
protected void composeEvidenceStatisticModelCharacteristicVariableComponentProperties(Evidence.EvidenceStatisticModelCharacteristicVariableComponent element) throws IOException
- Throws:
IOException
-
composeEvidenceCertaintyComponent
protected void composeEvidenceCertaintyComponent(String name, Evidence.EvidenceCertaintyComponent element) throws IOException
- Throws:
IOException
-
composeEvidenceCertaintyComponentProperties
protected void composeEvidenceCertaintyComponentProperties(Evidence.EvidenceCertaintyComponent element) throws IOException
- Throws:
IOException
-
composeEvidenceReport
protected void composeEvidenceReport(String name, EvidenceReport element) throws IOException
- Throws:
IOException
-
composeEvidenceReportProperties
protected void composeEvidenceReportProperties(EvidenceReport element) throws IOException
- Throws:
IOException
-
composeEvidenceReportSubjectComponent
protected void composeEvidenceReportSubjectComponent(String name, EvidenceReport.EvidenceReportSubjectComponent element) throws IOException
- Throws:
IOException
-
composeEvidenceReportSubjectComponentProperties
protected void composeEvidenceReportSubjectComponentProperties(EvidenceReport.EvidenceReportSubjectComponent element) throws IOException
- Throws:
IOException
-
composeEvidenceReportSubjectCharacteristicComponent
protected void composeEvidenceReportSubjectCharacteristicComponent(String name, EvidenceReport.EvidenceReportSubjectCharacteristicComponent element) throws IOException
- Throws:
IOException
-
composeEvidenceReportSubjectCharacteristicComponentProperties
protected void composeEvidenceReportSubjectCharacteristicComponentProperties(EvidenceReport.EvidenceReportSubjectCharacteristicComponent element) throws IOException
- Throws:
IOException
-
composeEvidenceReportRelatesToComponent
protected void composeEvidenceReportRelatesToComponent(String name, EvidenceReport.EvidenceReportRelatesToComponent element) throws IOException
- Throws:
IOException
-
composeEvidenceReportRelatesToComponentProperties
protected void composeEvidenceReportRelatesToComponentProperties(EvidenceReport.EvidenceReportRelatesToComponent element) throws IOException
- Throws:
IOException
-
composeSectionComponent
protected void composeSectionComponent(String name, EvidenceReport.SectionComponent element) throws IOException
- Throws:
IOException
-
composeSectionComponentProperties
protected void composeSectionComponentProperties(EvidenceReport.SectionComponent element) throws IOException
- Throws:
IOException
-
composeEvidenceVariable
protected void composeEvidenceVariable(String name, EvidenceVariable element) throws IOException
- Throws:
IOException
-
composeEvidenceVariableProperties
protected void composeEvidenceVariableProperties(EvidenceVariable element) throws IOException
- Throws:
IOException
-
composeEvidenceVariableCharacteristicComponent
protected void composeEvidenceVariableCharacteristicComponent(String name, EvidenceVariable.EvidenceVariableCharacteristicComponent element) throws IOException
- Throws:
IOException
-
composeEvidenceVariableCharacteristicComponentProperties
protected void composeEvidenceVariableCharacteristicComponentProperties(EvidenceVariable.EvidenceVariableCharacteristicComponent element) throws IOException
- Throws:
IOException
-
composeEvidenceVariableCharacteristicTimeFromStartComponent
protected void composeEvidenceVariableCharacteristicTimeFromStartComponent(String name, EvidenceVariable.EvidenceVariableCharacteristicTimeFromStartComponent element) throws IOException
- Throws:
IOException
-
composeEvidenceVariableCharacteristicTimeFromStartComponentProperties
protected void composeEvidenceVariableCharacteristicTimeFromStartComponentProperties(EvidenceVariable.EvidenceVariableCharacteristicTimeFromStartComponent element) throws IOException
- Throws:
IOException
-
composeEvidenceVariableCategoryComponent
protected void composeEvidenceVariableCategoryComponent(String name, EvidenceVariable.EvidenceVariableCategoryComponent element) throws IOException
- Throws:
IOException
-
composeEvidenceVariableCategoryComponentProperties
protected void composeEvidenceVariableCategoryComponentProperties(EvidenceVariable.EvidenceVariableCategoryComponent element) throws IOException
- Throws:
IOException
-
composeExampleScenario
protected void composeExampleScenario(String name, ExampleScenario element) throws IOException
- Throws:
IOException
-
composeExampleScenarioProperties
protected void composeExampleScenarioProperties(ExampleScenario element) throws IOException
- Throws:
IOException
-
composeExampleScenarioActorComponent
protected void composeExampleScenarioActorComponent(String name, ExampleScenario.ExampleScenarioActorComponent element) throws IOException
- Throws:
IOException
-
composeExampleScenarioActorComponentProperties
protected void composeExampleScenarioActorComponentProperties(ExampleScenario.ExampleScenarioActorComponent element) throws IOException
- Throws:
IOException
-
composeExampleScenarioInstanceComponent
protected void composeExampleScenarioInstanceComponent(String name, ExampleScenario.ExampleScenarioInstanceComponent element) throws IOException
- Throws:
IOException
-
composeExampleScenarioInstanceComponentProperties
protected void composeExampleScenarioInstanceComponentProperties(ExampleScenario.ExampleScenarioInstanceComponent element) throws IOException
- Throws:
IOException
-
composeExampleScenarioInstanceVersionComponent
protected void composeExampleScenarioInstanceVersionComponent(String name, ExampleScenario.ExampleScenarioInstanceVersionComponent element) throws IOException
- Throws:
IOException
-
composeExampleScenarioInstanceVersionComponentProperties
protected void composeExampleScenarioInstanceVersionComponentProperties(ExampleScenario.ExampleScenarioInstanceVersionComponent element) throws IOException
- Throws:
IOException
-
composeExampleScenarioInstanceContainedInstanceComponent
protected void composeExampleScenarioInstanceContainedInstanceComponent(String name, ExampleScenario.ExampleScenarioInstanceContainedInstanceComponent element) throws IOException
- Throws:
IOException
-
composeExampleScenarioInstanceContainedInstanceComponentProperties
protected void composeExampleScenarioInstanceContainedInstanceComponentProperties(ExampleScenario.ExampleScenarioInstanceContainedInstanceComponent element) throws IOException
- Throws:
IOException
-
composeExampleScenarioProcessComponent
protected void composeExampleScenarioProcessComponent(String name, ExampleScenario.ExampleScenarioProcessComponent element) throws IOException
- Throws:
IOException
-
composeExampleScenarioProcessComponentProperties
protected void composeExampleScenarioProcessComponentProperties(ExampleScenario.ExampleScenarioProcessComponent element) throws IOException
- Throws:
IOException
-
composeExampleScenarioProcessStepComponent
protected void composeExampleScenarioProcessStepComponent(String name, ExampleScenario.ExampleScenarioProcessStepComponent element) throws IOException
- Throws:
IOException
-
composeExampleScenarioProcessStepComponentProperties
protected void composeExampleScenarioProcessStepComponentProperties(ExampleScenario.ExampleScenarioProcessStepComponent element) throws IOException
- Throws:
IOException
-
composeExampleScenarioProcessStepOperationComponent
protected void composeExampleScenarioProcessStepOperationComponent(String name, ExampleScenario.ExampleScenarioProcessStepOperationComponent element) throws IOException
- Throws:
IOException
-
composeExampleScenarioProcessStepOperationComponentProperties
protected void composeExampleScenarioProcessStepOperationComponentProperties(ExampleScenario.ExampleScenarioProcessStepOperationComponent element) throws IOException
- Throws:
IOException
-
composeExampleScenarioProcessStepAlternativeComponent
protected void composeExampleScenarioProcessStepAlternativeComponent(String name, ExampleScenario.ExampleScenarioProcessStepAlternativeComponent element) throws IOException
- Throws:
IOException
-
composeExampleScenarioProcessStepAlternativeComponentProperties
protected void composeExampleScenarioProcessStepAlternativeComponentProperties(ExampleScenario.ExampleScenarioProcessStepAlternativeComponent element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefit
protected void composeExplanationOfBenefit(String name, ExplanationOfBenefit element) throws IOException
- Throws:
IOException
-
composeExplanationOfBenefitProperties
protected void composeExplanationOfBenefitProperties(ExplanationOfBenefit element) throws IOException
- Throws:
IOException
-
composeRelatedClaimComponent
protected void composeRelatedClaimComponent(String name, ExplanationOfBenefit.RelatedClaimComponent element) throws IOException
- Throws:
IOException
-
composeRelatedClaimComponentProperties
protected void composeRelatedClaimComponentProperties(ExplanationOfBenefit.RelatedClaimComponent element) throws IOException
- Throws:
IOException
-
composePayeeComponent
protected void composePayeeComponent(String name, ExplanationOfBenefit.PayeeComponent element) throws IOException
- Throws:
IOException
-
composePayeeComponentProperties
protected void composePayeeComponentProperties(ExplanationOfBenefit.PayeeComponent element) throws IOException
- Throws:
IOException
-
composeCareTeamComponent
protected void composeCareTeamComponent(String name, ExplanationOfBenefit.CareTeamComponent element) throws IOException
- Throws:
IOException
-
composeCareTeamComponentProperties
protected void composeCareTeamComponentProperties(ExplanationOfBenefit.CareTeamComponent element) throws IOException
- Throws:
IOException
-
composeSupportingInformationComponent
protected void composeSupportingInformationComponent(String name, ExplanationOfBenefit.SupportingInformationComponent element) throws IOException
- Throws:
IOException
-
composeSupportingInformationComponentProperties
protected void composeSupportingInformationComponentProperties(ExplanationOfBenefit.SupportingInformationComponent element) throws IOException
- Throws:
IOException
-
composeDiagnosisComponent
protected void composeDiagnosisComponent(String name, ExplanationOfBenefit.DiagnosisComponent element) throws IOException
- Throws:
IOException
-
composeDiagnosisComponentProperties
protected void composeDiagnosisComponentProperties(ExplanationOfBenefit.DiagnosisComponent element) throws IOException
- Throws:
IOException
-
composeProcedureComponent
protected void composeProcedureComponent(String name, ExplanationOfBenefit.ProcedureComponent element) throws IOException
- Throws:
IOException
-
composeProcedureComponentProperties
protected void composeProcedureComponentProperties(ExplanationOfBenefit.ProcedureComponent element) throws IOException
- Throws:
IOException
-
composeInsuranceComponent
protected void composeInsuranceComponent(String name, ExplanationOfBenefit.InsuranceComponent element) throws IOException
- Throws:
IOException
-
composeInsuranceComponentProperties
protected void composeInsuranceComponentProperties(ExplanationOfBenefit.InsuranceComponent element) throws IOException
- Throws:
IOException
-
composeAccidentComponent
protected void composeAccidentComponent(String name, ExplanationOfBenefit.AccidentComponent element) throws IOException
- Throws:
IOException
-
composeAccidentComponentProperties
protected void composeAccidentComponentProperties(ExplanationOfBenefit.AccidentComponent element) throws IOException
- Throws:
IOException
-
composeItemComponent
protected void composeItemComponent(String name, ExplanationOfBenefit.ItemComponent element) throws IOException
- Throws:
IOException
-
composeItemComponentProperties
protected void composeItemComponentProperties(ExplanationOfBenefit.ItemComponent element) throws IOException
- Throws:
IOException
-
composeAdjudicationComponent
protected void composeAdjudicationComponent(String name, ExplanationOfBenefit.AdjudicationComponent element) throws IOException
- Throws:
IOException
-
composeAdjudicationComponentProperties
protected void composeAdjudicationComponentProperties(ExplanationOfBenefit.AdjudicationComponent element) throws IOException
- Throws:
IOException
-
composeDetailComponent
protected void composeDetailComponent(String name, ExplanationOfBenefit.DetailComponent element) throws IOException
- Throws:
IOException
-
composeDetailComponentProperties
protected void composeDetailComponentProperties(ExplanationOfBenefit.DetailComponent element) throws IOException
- Throws:
IOException
-
composeSubDetailComponent
protected void composeSubDetailComponent(String name, ExplanationOfBenefit.SubDetailComponent element) throws IOException
- Throws:
IOException
-
composeSubDetailComponentProperties
protected void composeSubDetailComponentProperties(ExplanationOfBenefit.SubDetailComponent element) throws IOException
- Throws:
IOException
-
composeAddedItemComponent
protected void composeAddedItemComponent(String name, ExplanationOfBenefit.AddedItemComponent element) throws IOException
- Throws:
IOException
-
composeAddedItemComponentProperties
protected void composeAddedItemComponentProperties(ExplanationOfBenefit.AddedItemComponent element) throws IOException
- Throws:
IOException
-
composeAddedItemDetailComponent
protected void composeAddedItemDetailComponent(String name, ExplanationOfBenefit.AddedItemDetailComponent element) throws IOException
- Throws:
IOException
-
composeAddedItemDetailComponentProperties
protected void composeAddedItemDetailComponentProperties(ExplanationOfBenefit.AddedItemDetailComponent element) throws IOException
- Throws:
IOException
-
composeAddedItemDetailSubDetailComponent
protected void composeAddedItemDetailSubDetailComponent(String name, ExplanationOfBenefit.AddedItemDetailSubDetailComponent element) throws IOException
- Throws:
IOException
-
composeAddedItemDetailSubDetailComponentProperties
protected void composeAddedItemDetailSubDetailComponentProperties(ExplanationOfBenefit.AddedItemDetailSubDetailComponent element) throws IOException
- Throws:
IOException
-
composeTotalComponent
protected void composeTotalComponent(String name, ExplanationOfBenefit.TotalComponent element) throws IOException
- Throws:
IOException
-
composeTotalComponentProperties
protected void composeTotalComponentProperties(ExplanationOfBenefit.TotalComponent element) throws IOException
- Throws:
IOException
-
composePaymentComponent
protected void composePaymentComponent(String name, ExplanationOfBenefit.PaymentComponent element) throws IOException
- Throws:
IOException
-
composePaymentComponentProperties
protected void composePaymentComponentProperties(ExplanationOfBenefit.PaymentComponent element) throws IOException
- Throws:
IOException
-
composeNoteComponent
protected void composeNoteComponent(String name, ExplanationOfBenefit.NoteComponent element) throws IOException
- Throws:
IOException
-
composeNoteComponentProperties
protected void composeNoteComponentProperties(ExplanationOfBenefit.NoteComponent element) throws IOException
- Throws:
IOException
-
composeBenefitBalanceComponent
protected void composeBenefitBalanceComponent(String name, ExplanationOfBenefit.BenefitBalanceComponent element) throws IOException
- Throws:
IOException
-
composeBenefitBalanceComponentProperties
protected void composeBenefitBalanceComponentProperties(ExplanationOfBenefit.BenefitBalanceComponent element) throws IOException
- Throws:
IOException
-
composeBenefitComponent
protected void composeBenefitComponent(String name, ExplanationOfBenefit.BenefitComponent element) throws IOException
- Throws:
IOException
-
composeBenefitComponentProperties
protected void composeBenefitComponentProperties(ExplanationOfBenefit.BenefitComponent element) throws IOException
- Throws:
IOException
-
composeFamilyMemberHistory
protected void composeFamilyMemberHistory(String name, FamilyMemberHistory element) throws IOException
- Throws:
IOException
-
composeFamilyMemberHistoryProperties
protected void composeFamilyMemberHistoryProperties(FamilyMemberHistory element) throws IOException
- Throws:
IOException
-
composeFamilyMemberHistoryConditionComponent
protected void composeFamilyMemberHistoryConditionComponent(String name, FamilyMemberHistory.FamilyMemberHistoryConditionComponent element) throws IOException
- Throws:
IOException
-
composeFamilyMemberHistoryConditionComponentProperties
protected void composeFamilyMemberHistoryConditionComponentProperties(FamilyMemberHistory.FamilyMemberHistoryConditionComponent element) throws IOException
- Throws:
IOException
-
composeFlag
protected void composeFlag(String name, Flag element) throws IOException
- Throws:
IOException
-
composeFlagProperties
protected void composeFlagProperties(Flag element) throws IOException
- Throws:
IOException
-
composeGoal
protected void composeGoal(String name, Goal element) throws IOException
- Throws:
IOException
-
composeGoalProperties
protected void composeGoalProperties(Goal element) throws IOException
- Throws:
IOException
-
composeGoalTargetComponent
protected void composeGoalTargetComponent(String name, Goal.GoalTargetComponent element) throws IOException
- Throws:
IOException
-
composeGoalTargetComponentProperties
protected void composeGoalTargetComponentProperties(Goal.GoalTargetComponent element) throws IOException
- Throws:
IOException
-
composeGraphDefinition
protected void composeGraphDefinition(String name, GraphDefinition element) throws IOException
- Throws:
IOException
-
composeGraphDefinitionProperties
protected void composeGraphDefinitionProperties(GraphDefinition element) throws IOException
- Throws:
IOException
-
composeGraphDefinitionLinkComponent
protected void composeGraphDefinitionLinkComponent(String name, GraphDefinition.GraphDefinitionLinkComponent element) throws IOException
- Throws:
IOException
-
composeGraphDefinitionLinkComponentProperties
protected void composeGraphDefinitionLinkComponentProperties(GraphDefinition.GraphDefinitionLinkComponent element) throws IOException
- Throws:
IOException
-
composeGraphDefinitionLinkTargetComponent
protected void composeGraphDefinitionLinkTargetComponent(String name, GraphDefinition.GraphDefinitionLinkTargetComponent element) throws IOException
- Throws:
IOException
-
composeGraphDefinitionLinkTargetComponentProperties
protected void composeGraphDefinitionLinkTargetComponentProperties(GraphDefinition.GraphDefinitionLinkTargetComponent element) throws IOException
- Throws:
IOException
-
composeGraphDefinitionLinkTargetCompartmentComponent
protected void composeGraphDefinitionLinkTargetCompartmentComponent(String name, GraphDefinition.GraphDefinitionLinkTargetCompartmentComponent element) throws IOException
- Throws:
IOException
-
composeGraphDefinitionLinkTargetCompartmentComponentProperties
protected void composeGraphDefinitionLinkTargetCompartmentComponentProperties(GraphDefinition.GraphDefinitionLinkTargetCompartmentComponent element) throws IOException
- Throws:
IOException
-
composeGroup
protected void composeGroup(String name, Group element) throws IOException
- Throws:
IOException
-
composeGroupProperties
protected void composeGroupProperties(Group element) throws IOException
- Throws:
IOException
-
composeGroupCharacteristicComponent
protected void composeGroupCharacteristicComponent(String name, Group.GroupCharacteristicComponent element) throws IOException
- Throws:
IOException
-
composeGroupCharacteristicComponentProperties
protected void composeGroupCharacteristicComponentProperties(Group.GroupCharacteristicComponent element) throws IOException
- Throws:
IOException
-
composeGroupMemberComponent
protected void composeGroupMemberComponent(String name, Group.GroupMemberComponent element) throws IOException
- Throws:
IOException
-
composeGroupMemberComponentProperties
protected void composeGroupMemberComponentProperties(Group.GroupMemberComponent element) throws IOException
- Throws:
IOException
-
composeGuidanceResponse
protected void composeGuidanceResponse(String name, GuidanceResponse element) throws IOException
- Throws:
IOException
-
composeGuidanceResponseProperties
protected void composeGuidanceResponseProperties(GuidanceResponse element) throws IOException
- Throws:
IOException
-
composeHealthcareService
protected void composeHealthcareService(String name, HealthcareService element) throws IOException
- Throws:
IOException
-
composeHealthcareServiceProperties
protected void composeHealthcareServiceProperties(HealthcareService element) throws IOException
- Throws:
IOException
-
composeHealthcareServiceEligibilityComponent
protected void composeHealthcareServiceEligibilityComponent(String name, HealthcareService.HealthcareServiceEligibilityComponent element) throws IOException
- Throws:
IOException
-
composeHealthcareServiceEligibilityComponentProperties
protected void composeHealthcareServiceEligibilityComponentProperties(HealthcareService.HealthcareServiceEligibilityComponent element) throws IOException
- Throws:
IOException
-
composeHealthcareServiceAvailableTimeComponent
protected void composeHealthcareServiceAvailableTimeComponent(String name, HealthcareService.HealthcareServiceAvailableTimeComponent element) throws IOException
- Throws:
IOException
-
composeHealthcareServiceAvailableTimeComponentProperties
protected void composeHealthcareServiceAvailableTimeComponentProperties(HealthcareService.HealthcareServiceAvailableTimeComponent element) throws IOException
- Throws:
IOException
-
composeHealthcareServiceNotAvailableComponent
protected void composeHealthcareServiceNotAvailableComponent(String name, HealthcareService.HealthcareServiceNotAvailableComponent element) throws IOException
- Throws:
IOException
-
composeHealthcareServiceNotAvailableComponentProperties
protected void composeHealthcareServiceNotAvailableComponentProperties(HealthcareService.HealthcareServiceNotAvailableComponent element) throws IOException
- Throws:
IOException
-
composeImagingStudy
protected void composeImagingStudy(String name, ImagingStudy element) throws IOException
- Throws:
IOException
-
composeImagingStudyProperties
protected void composeImagingStudyProperties(ImagingStudy element) throws IOException
- Throws:
IOException
-
composeImagingStudySeriesComponent
protected void composeImagingStudySeriesComponent(String name, ImagingStudy.ImagingStudySeriesComponent element) throws IOException
- Throws:
IOException
-
composeImagingStudySeriesComponentProperties
protected void composeImagingStudySeriesComponentProperties(ImagingStudy.ImagingStudySeriesComponent element) throws IOException
- Throws:
IOException
-
composeImagingStudySeriesPerformerComponent
protected void composeImagingStudySeriesPerformerComponent(String name, ImagingStudy.ImagingStudySeriesPerformerComponent element) throws IOException
- Throws:
IOException
-
composeImagingStudySeriesPerformerComponentProperties
protected void composeImagingStudySeriesPerformerComponentProperties(ImagingStudy.ImagingStudySeriesPerformerComponent element) throws IOException
- Throws:
IOException
-
composeImagingStudySeriesInstanceComponent
protected void composeImagingStudySeriesInstanceComponent(String name, ImagingStudy.ImagingStudySeriesInstanceComponent element) throws IOException
- Throws:
IOException
-
composeImagingStudySeriesInstanceComponentProperties
protected void composeImagingStudySeriesInstanceComponentProperties(ImagingStudy.ImagingStudySeriesInstanceComponent element) throws IOException
- Throws:
IOException
-
composeImmunization
protected void composeImmunization(String name, Immunization element) throws IOException
- Throws:
IOException
-
composeImmunizationProperties
protected void composeImmunizationProperties(Immunization element) throws IOException
- Throws:
IOException
-
composeImmunizationPerformerComponent
protected void composeImmunizationPerformerComponent(String name, Immunization.ImmunizationPerformerComponent element) throws IOException
- Throws:
IOException
-
composeImmunizationPerformerComponentProperties
protected void composeImmunizationPerformerComponentProperties(Immunization.ImmunizationPerformerComponent element) throws IOException
- Throws:
IOException
-
composeImmunizationEducationComponent
protected void composeImmunizationEducationComponent(String name, Immunization.ImmunizationEducationComponent element) throws IOException
- Throws:
IOException
-
composeImmunizationEducationComponentProperties
protected void composeImmunizationEducationComponentProperties(Immunization.ImmunizationEducationComponent element) throws IOException
- Throws:
IOException
-
composeImmunizationReactionComponent
protected void composeImmunizationReactionComponent(String name, Immunization.ImmunizationReactionComponent element) throws IOException
- Throws:
IOException
-
composeImmunizationReactionComponentProperties
protected void composeImmunizationReactionComponentProperties(Immunization.ImmunizationReactionComponent element) throws IOException
- Throws:
IOException
-
composeImmunizationProtocolAppliedComponent
protected void composeImmunizationProtocolAppliedComponent(String name, Immunization.ImmunizationProtocolAppliedComponent element) throws IOException
- Throws:
IOException
-
composeImmunizationProtocolAppliedComponentProperties
protected void composeImmunizationProtocolAppliedComponentProperties(Immunization.ImmunizationProtocolAppliedComponent element) throws IOException
- Throws:
IOException
-
composeImmunizationEvaluation
protected void composeImmunizationEvaluation(String name, ImmunizationEvaluation element) throws IOException
- Throws:
IOException
-
composeImmunizationEvaluationProperties
protected void composeImmunizationEvaluationProperties(ImmunizationEvaluation element) throws IOException
- Throws:
IOException
-
composeImmunizationRecommendation
protected void composeImmunizationRecommendation(String name, ImmunizationRecommendation element) throws IOException
- Throws:
IOException
-
composeImmunizationRecommendationProperties
protected void composeImmunizationRecommendationProperties(ImmunizationRecommendation element) throws IOException
- Throws:
IOException
-
composeImmunizationRecommendationRecommendationComponent
protected void composeImmunizationRecommendationRecommendationComponent(String name, ImmunizationRecommendation.ImmunizationRecommendationRecommendationComponent element) throws IOException
- Throws:
IOException
-
composeImmunizationRecommendationRecommendationComponentProperties
protected void composeImmunizationRecommendationRecommendationComponentProperties(ImmunizationRecommendation.ImmunizationRecommendationRecommendationComponent element) throws IOException
- Throws:
IOException
-
composeImmunizationRecommendationRecommendationDateCriterionComponent
protected void composeImmunizationRecommendationRecommendationDateCriterionComponent(String name, ImmunizationRecommendation.ImmunizationRecommendationRecommendationDateCriterionComponent element) throws IOException
- Throws:
IOException
-
composeImmunizationRecommendationRecommendationDateCriterionComponentProperties
protected void composeImmunizationRecommendationRecommendationDateCriterionComponentProperties(ImmunizationRecommendation.ImmunizationRecommendationRecommendationDateCriterionComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuide
protected void composeImplementationGuide(String name, ImplementationGuide element) throws IOException
- Throws:
IOException
-
composeImplementationGuideProperties
protected void composeImplementationGuideProperties(ImplementationGuide element) throws IOException
- Throws:
IOException
-
composeImplementationGuideDependsOnComponent
protected void composeImplementationGuideDependsOnComponent(String name, ImplementationGuide.ImplementationGuideDependsOnComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideDependsOnComponentProperties
protected void composeImplementationGuideDependsOnComponentProperties(ImplementationGuide.ImplementationGuideDependsOnComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideGlobalComponent
protected void composeImplementationGuideGlobalComponent(String name, ImplementationGuide.ImplementationGuideGlobalComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideGlobalComponentProperties
protected void composeImplementationGuideGlobalComponentProperties(ImplementationGuide.ImplementationGuideGlobalComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideDefinitionComponent
protected void composeImplementationGuideDefinitionComponent(String name, ImplementationGuide.ImplementationGuideDefinitionComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideDefinitionComponentProperties
protected void composeImplementationGuideDefinitionComponentProperties(ImplementationGuide.ImplementationGuideDefinitionComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideDefinitionGroupingComponent
protected void composeImplementationGuideDefinitionGroupingComponent(String name, ImplementationGuide.ImplementationGuideDefinitionGroupingComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideDefinitionGroupingComponentProperties
protected void composeImplementationGuideDefinitionGroupingComponentProperties(ImplementationGuide.ImplementationGuideDefinitionGroupingComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideDefinitionResourceComponent
protected void composeImplementationGuideDefinitionResourceComponent(String name, ImplementationGuide.ImplementationGuideDefinitionResourceComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideDefinitionResourceComponentProperties
protected void composeImplementationGuideDefinitionResourceComponentProperties(ImplementationGuide.ImplementationGuideDefinitionResourceComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideDefinitionPageComponent
protected void composeImplementationGuideDefinitionPageComponent(String name, ImplementationGuide.ImplementationGuideDefinitionPageComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideDefinitionPageComponentProperties
protected void composeImplementationGuideDefinitionPageComponentProperties(ImplementationGuide.ImplementationGuideDefinitionPageComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideDefinitionParameterComponent
protected void composeImplementationGuideDefinitionParameterComponent(String name, ImplementationGuide.ImplementationGuideDefinitionParameterComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideDefinitionParameterComponentProperties
protected void composeImplementationGuideDefinitionParameterComponentProperties(ImplementationGuide.ImplementationGuideDefinitionParameterComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideDefinitionTemplateComponent
protected void composeImplementationGuideDefinitionTemplateComponent(String name, ImplementationGuide.ImplementationGuideDefinitionTemplateComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideDefinitionTemplateComponentProperties
protected void composeImplementationGuideDefinitionTemplateComponentProperties(ImplementationGuide.ImplementationGuideDefinitionTemplateComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideManifestComponent
protected void composeImplementationGuideManifestComponent(String name, ImplementationGuide.ImplementationGuideManifestComponent element) throws IOException
- Throws:
IOException
-
composeImplementationGuideManifestComponentProperties
protected void composeImplementationGuideManifestComponentProperties(ImplementationGuide.ImplementationGuideManifestComponent element) throws IOException
- Throws:
IOException
-
composeManifestResourceComponent
protected void composeManifestResourceComponent(String name, ImplementationGuide.ManifestResourceComponent element) throws IOException
- Throws:
IOException
-
composeManifestResourceComponentProperties
protected void composeManifestResourceComponentProperties(ImplementationGuide.ManifestResourceComponent element) throws IOException
- Throws:
IOException
-
composeManifestPageComponent
protected void composeManifestPageComponent(String name, ImplementationGuide.ManifestPageComponent element) throws IOException
- Throws:
IOException
-
composeManifestPageComponentProperties
protected void composeManifestPageComponentProperties(ImplementationGuide.ManifestPageComponent element) throws IOException
- Throws:
IOException
-
composeIngredient
protected void composeIngredient(String name, Ingredient element) throws IOException
- Throws:
IOException
-
composeIngredientProperties
protected void composeIngredientProperties(Ingredient element) throws IOException
- Throws:
IOException
-
composeIngredientManufacturerComponent
protected void composeIngredientManufacturerComponent(String name, Ingredient.IngredientManufacturerComponent element) throws IOException
- Throws:
IOException
-
composeIngredientManufacturerComponentProperties
protected void composeIngredientManufacturerComponentProperties(Ingredient.IngredientManufacturerComponent element) throws IOException
- Throws:
IOException
-
composeIngredientSubstanceComponent
protected void composeIngredientSubstanceComponent(String name, Ingredient.IngredientSubstanceComponent element) throws IOException
- Throws:
IOException
-
composeIngredientSubstanceComponentProperties
protected void composeIngredientSubstanceComponentProperties(Ingredient.IngredientSubstanceComponent element) throws IOException
- Throws:
IOException
-
composeIngredientSubstanceStrengthComponent
protected void composeIngredientSubstanceStrengthComponent(String name, Ingredient.IngredientSubstanceStrengthComponent element) throws IOException
- Throws:
IOException
-
composeIngredientSubstanceStrengthComponentProperties
protected void composeIngredientSubstanceStrengthComponentProperties(Ingredient.IngredientSubstanceStrengthComponent element) throws IOException
- Throws:
IOException
-
composeIngredientSubstanceStrengthReferenceStrengthComponent
protected void composeIngredientSubstanceStrengthReferenceStrengthComponent(String name, Ingredient.IngredientSubstanceStrengthReferenceStrengthComponent element) throws IOException
- Throws:
IOException
-
composeIngredientSubstanceStrengthReferenceStrengthComponentProperties
protected void composeIngredientSubstanceStrengthReferenceStrengthComponentProperties(Ingredient.IngredientSubstanceStrengthReferenceStrengthComponent element) throws IOException
- Throws:
IOException
-
composeInsurancePlan
protected void composeInsurancePlan(String name, InsurancePlan element) throws IOException
- Throws:
IOException
-
composeInsurancePlanProperties
protected void composeInsurancePlanProperties(InsurancePlan element) throws IOException
- Throws:
IOException
-
composeInsurancePlanContactComponent
protected void composeInsurancePlanContactComponent(String name, InsurancePlan.InsurancePlanContactComponent element) throws IOException
- Throws:
IOException
-
composeInsurancePlanContactComponentProperties
protected void composeInsurancePlanContactComponentProperties(InsurancePlan.InsurancePlanContactComponent element) throws IOException
- Throws:
IOException
-
composeInsurancePlanCoverageComponent
protected void composeInsurancePlanCoverageComponent(String name, InsurancePlan.InsurancePlanCoverageComponent element) throws IOException
- Throws:
IOException
-
composeInsurancePlanCoverageComponentProperties
protected void composeInsurancePlanCoverageComponentProperties(InsurancePlan.InsurancePlanCoverageComponent element) throws IOException
- Throws:
IOException
-
composeCoverageBenefitComponent
protected void composeCoverageBenefitComponent(String name, InsurancePlan.CoverageBenefitComponent element) throws IOException
- Throws:
IOException
-
composeCoverageBenefitComponentProperties
protected void composeCoverageBenefitComponentProperties(InsurancePlan.CoverageBenefitComponent element) throws IOException
- Throws:
IOException
-
composeCoverageBenefitLimitComponent
protected void composeCoverageBenefitLimitComponent(String name, InsurancePlan.CoverageBenefitLimitComponent element) throws IOException
- Throws:
IOException
-
composeCoverageBenefitLimitComponentProperties
protected void composeCoverageBenefitLimitComponentProperties(InsurancePlan.CoverageBenefitLimitComponent element) throws IOException
- Throws:
IOException
-
composeInsurancePlanPlanComponent
protected void composeInsurancePlanPlanComponent(String name, InsurancePlan.InsurancePlanPlanComponent element) throws IOException
- Throws:
IOException
-
composeInsurancePlanPlanComponentProperties
protected void composeInsurancePlanPlanComponentProperties(InsurancePlan.InsurancePlanPlanComponent element) throws IOException
- Throws:
IOException
-
composeInsurancePlanPlanGeneralCostComponent
protected void composeInsurancePlanPlanGeneralCostComponent(String name, InsurancePlan.InsurancePlanPlanGeneralCostComponent element) throws IOException
- Throws:
IOException
-
composeInsurancePlanPlanGeneralCostComponentProperties
protected void composeInsurancePlanPlanGeneralCostComponentProperties(InsurancePlan.InsurancePlanPlanGeneralCostComponent element) throws IOException
- Throws:
IOException
-
composeInsurancePlanPlanSpecificCostComponent
protected void composeInsurancePlanPlanSpecificCostComponent(String name, InsurancePlan.InsurancePlanPlanSpecificCostComponent element) throws IOException
- Throws:
IOException
-
composeInsurancePlanPlanSpecificCostComponentProperties
protected void composeInsurancePlanPlanSpecificCostComponentProperties(InsurancePlan.InsurancePlanPlanSpecificCostComponent element) throws IOException
- Throws:
IOException
-
composePlanBenefitComponent
protected void composePlanBenefitComponent(String name, InsurancePlan.PlanBenefitComponent element) throws IOException
- Throws:
IOException
-
composePlanBenefitComponentProperties
protected void composePlanBenefitComponentProperties(InsurancePlan.PlanBenefitComponent element) throws IOException
- Throws:
IOException
-
composePlanBenefitCostComponent
protected void composePlanBenefitCostComponent(String name, InsurancePlan.PlanBenefitCostComponent element) throws IOException
- Throws:
IOException
-
composePlanBenefitCostComponentProperties
protected void composePlanBenefitCostComponentProperties(InsurancePlan.PlanBenefitCostComponent element) throws IOException
- Throws:
IOException
-
composeInvoice
protected void composeInvoice(String name, Invoice element) throws IOException
- Throws:
IOException
-
composeInvoiceProperties
protected void composeInvoiceProperties(Invoice element) throws IOException
- Throws:
IOException
-
composeInvoiceParticipantComponent
protected void composeInvoiceParticipantComponent(String name, Invoice.InvoiceParticipantComponent element) throws IOException
- Throws:
IOException
-
composeInvoiceParticipantComponentProperties
protected void composeInvoiceParticipantComponentProperties(Invoice.InvoiceParticipantComponent element) throws IOException
- Throws:
IOException
-
composeInvoiceLineItemComponent
protected void composeInvoiceLineItemComponent(String name, Invoice.InvoiceLineItemComponent element) throws IOException
- Throws:
IOException
-
composeInvoiceLineItemComponentProperties
protected void composeInvoiceLineItemComponentProperties(Invoice.InvoiceLineItemComponent element) throws IOException
- Throws:
IOException
-
composeInvoiceLineItemPriceComponentComponent
protected void composeInvoiceLineItemPriceComponentComponent(String name, Invoice.InvoiceLineItemPriceComponentComponent element) throws IOException
- Throws:
IOException
-
composeInvoiceLineItemPriceComponentComponentProperties
protected void composeInvoiceLineItemPriceComponentComponentProperties(Invoice.InvoiceLineItemPriceComponentComponent element) throws IOException
- Throws:
IOException
-
composeLibrary
protected void composeLibrary(String name, Library element) throws IOException
- Throws:
IOException
-
composeLibraryProperties
protected void composeLibraryProperties(Library element) throws IOException
- Throws:
IOException
-
composeLinkage
protected void composeLinkage(String name, Linkage element) throws IOException
- Throws:
IOException
-
composeLinkageProperties
protected void composeLinkageProperties(Linkage element) throws IOException
- Throws:
IOException
-
composeLinkageItemComponent
protected void composeLinkageItemComponent(String name, Linkage.LinkageItemComponent element) throws IOException
- Throws:
IOException
-
composeLinkageItemComponentProperties
protected void composeLinkageItemComponentProperties(Linkage.LinkageItemComponent element) throws IOException
- Throws:
IOException
-
composeListResource
protected void composeListResource(String name, ListResource element) throws IOException
- Throws:
IOException
-
composeListResourceProperties
protected void composeListResourceProperties(ListResource element) throws IOException
- Throws:
IOException
-
composeListResourceEntryComponent
protected void composeListResourceEntryComponent(String name, ListResource.ListResourceEntryComponent element) throws IOException
- Throws:
IOException
-
composeListResourceEntryComponentProperties
protected void composeListResourceEntryComponentProperties(ListResource.ListResourceEntryComponent element) throws IOException
- Throws:
IOException
-
composeLocation
protected void composeLocation(String name, Location element) throws IOException
- Throws:
IOException
-
composeLocationProperties
protected void composeLocationProperties(Location element) throws IOException
- Throws:
IOException
-
composeLocationPositionComponent
protected void composeLocationPositionComponent(String name, Location.LocationPositionComponent element) throws IOException
- Throws:
IOException
-
composeLocationPositionComponentProperties
protected void composeLocationPositionComponentProperties(Location.LocationPositionComponent element) throws IOException
- Throws:
IOException
-
composeLocationHoursOfOperationComponent
protected void composeLocationHoursOfOperationComponent(String name, Location.LocationHoursOfOperationComponent element) throws IOException
- Throws:
IOException
-
composeLocationHoursOfOperationComponentProperties
protected void composeLocationHoursOfOperationComponentProperties(Location.LocationHoursOfOperationComponent element) throws IOException
- Throws:
IOException
-
composeManufacturedItemDefinition
protected void composeManufacturedItemDefinition(String name, ManufacturedItemDefinition element) throws IOException
- Throws:
IOException
-
composeManufacturedItemDefinitionProperties
protected void composeManufacturedItemDefinitionProperties(ManufacturedItemDefinition element) throws IOException
- Throws:
IOException
-
composeManufacturedItemDefinitionPropertyComponent
protected void composeManufacturedItemDefinitionPropertyComponent(String name, ManufacturedItemDefinition.ManufacturedItemDefinitionPropertyComponent element) throws IOException
- Throws:
IOException
-
composeManufacturedItemDefinitionPropertyComponentProperties
protected void composeManufacturedItemDefinitionPropertyComponentProperties(ManufacturedItemDefinition.ManufacturedItemDefinitionPropertyComponent element) throws IOException
- Throws:
IOException
-
composeMeasure
protected void composeMeasure(String name, Measure element) throws IOException
- Throws:
IOException
-
composeMeasureProperties
protected void composeMeasureProperties(Measure element) throws IOException
- Throws:
IOException
-
composeMeasureGroupComponent
protected void composeMeasureGroupComponent(String name, Measure.MeasureGroupComponent element) throws IOException
- Throws:
IOException
-
composeMeasureGroupComponentProperties
protected void composeMeasureGroupComponentProperties(Measure.MeasureGroupComponent element) throws IOException
- Throws:
IOException
-
composeMeasureGroupPopulationComponent
protected void composeMeasureGroupPopulationComponent(String name, Measure.MeasureGroupPopulationComponent element) throws IOException
- Throws:
IOException
-
composeMeasureGroupPopulationComponentProperties
protected void composeMeasureGroupPopulationComponentProperties(Measure.MeasureGroupPopulationComponent element) throws IOException
- Throws:
IOException
-
composeMeasureGroupStratifierComponent
protected void composeMeasureGroupStratifierComponent(String name, Measure.MeasureGroupStratifierComponent element) throws IOException
- Throws:
IOException
-
composeMeasureGroupStratifierComponentProperties
protected void composeMeasureGroupStratifierComponentProperties(Measure.MeasureGroupStratifierComponent element) throws IOException
- Throws:
IOException
-
composeMeasureGroupStratifierComponentComponent
protected void composeMeasureGroupStratifierComponentComponent(String name, Measure.MeasureGroupStratifierComponentComponent element) throws IOException
- Throws:
IOException
-
composeMeasureGroupStratifierComponentComponentProperties
protected void composeMeasureGroupStratifierComponentComponentProperties(Measure.MeasureGroupStratifierComponentComponent element) throws IOException
- Throws:
IOException
-
composeMeasureSupplementalDataComponent
protected void composeMeasureSupplementalDataComponent(String name, Measure.MeasureSupplementalDataComponent element) throws IOException
- Throws:
IOException
-
composeMeasureSupplementalDataComponentProperties
protected void composeMeasureSupplementalDataComponentProperties(Measure.MeasureSupplementalDataComponent element) throws IOException
- Throws:
IOException
-
composeMeasureReport
protected void composeMeasureReport(String name, MeasureReport element) throws IOException
- Throws:
IOException
-
composeMeasureReportProperties
protected void composeMeasureReportProperties(MeasureReport element) throws IOException
- Throws:
IOException
-
composeMeasureReportGroupComponent
protected void composeMeasureReportGroupComponent(String name, MeasureReport.MeasureReportGroupComponent element) throws IOException
- Throws:
IOException
-
composeMeasureReportGroupComponentProperties
protected void composeMeasureReportGroupComponentProperties(MeasureReport.MeasureReportGroupComponent element) throws IOException
- Throws:
IOException
-
composeMeasureReportGroupPopulationComponent
protected void composeMeasureReportGroupPopulationComponent(String name, MeasureReport.MeasureReportGroupPopulationComponent element) throws IOException
- Throws:
IOException
-
composeMeasureReportGroupPopulationComponentProperties
protected void composeMeasureReportGroupPopulationComponentProperties(MeasureReport.MeasureReportGroupPopulationComponent element) throws IOException
- Throws:
IOException
-
composeMeasureReportGroupStratifierComponent
protected void composeMeasureReportGroupStratifierComponent(String name, MeasureReport.MeasureReportGroupStratifierComponent element) throws IOException
- Throws:
IOException
-
composeMeasureReportGroupStratifierComponentProperties
protected void composeMeasureReportGroupStratifierComponentProperties(MeasureReport.MeasureReportGroupStratifierComponent element) throws IOException
- Throws:
IOException
-
composeStratifierGroupComponent
protected void composeStratifierGroupComponent(String name, MeasureReport.StratifierGroupComponent element) throws IOException
- Throws:
IOException
-
composeStratifierGroupComponentProperties
protected void composeStratifierGroupComponentProperties(MeasureReport.StratifierGroupComponent element) throws IOException
- Throws:
IOException
-
composeStratifierGroupComponentComponent
protected void composeStratifierGroupComponentComponent(String name, MeasureReport.StratifierGroupComponentComponent element) throws IOException
- Throws:
IOException
-
composeStratifierGroupComponentComponentProperties
protected void composeStratifierGroupComponentComponentProperties(MeasureReport.StratifierGroupComponentComponent element) throws IOException
- Throws:
IOException
-
composeStratifierGroupPopulationComponent
protected void composeStratifierGroupPopulationComponent(String name, MeasureReport.StratifierGroupPopulationComponent element) throws IOException
- Throws:
IOException
-
composeStratifierGroupPopulationComponentProperties
protected void composeStratifierGroupPopulationComponentProperties(MeasureReport.StratifierGroupPopulationComponent element) throws IOException
- Throws:
IOException
-
composeMedia
protected void composeMedia(String name, Media element) throws IOException
- Throws:
IOException
-
composeMediaProperties
protected void composeMediaProperties(Media element) throws IOException
- Throws:
IOException
-
composeMedication
protected void composeMedication(String name, Medication element) throws IOException
- Throws:
IOException
-
composeMedicationProperties
protected void composeMedicationProperties(Medication element) throws IOException
- Throws:
IOException
-
composeMedicationIngredientComponent
protected void composeMedicationIngredientComponent(String name, Medication.MedicationIngredientComponent element) throws IOException
- Throws:
IOException
-
composeMedicationIngredientComponentProperties
protected void composeMedicationIngredientComponentProperties(Medication.MedicationIngredientComponent element) throws IOException
- Throws:
IOException
-
composeMedicationBatchComponent
protected void composeMedicationBatchComponent(String name, Medication.MedicationBatchComponent element) throws IOException
- Throws:
IOException
-
composeMedicationBatchComponentProperties
protected void composeMedicationBatchComponentProperties(Medication.MedicationBatchComponent element) throws IOException
- Throws:
IOException
-
composeMedicationAdministration
protected void composeMedicationAdministration(String name, MedicationAdministration element) throws IOException
- Throws:
IOException
-
composeMedicationAdministrationProperties
protected void composeMedicationAdministrationProperties(MedicationAdministration element) throws IOException
- Throws:
IOException
-
composeMedicationAdministrationPerformerComponent
protected void composeMedicationAdministrationPerformerComponent(String name, MedicationAdministration.MedicationAdministrationPerformerComponent element) throws IOException
- Throws:
IOException
-
composeMedicationAdministrationPerformerComponentProperties
protected void composeMedicationAdministrationPerformerComponentProperties(MedicationAdministration.MedicationAdministrationPerformerComponent element) throws IOException
- Throws:
IOException
-
composeMedicationAdministrationDosageComponent
protected void composeMedicationAdministrationDosageComponent(String name, MedicationAdministration.MedicationAdministrationDosageComponent element) throws IOException
- Throws:
IOException
-
composeMedicationAdministrationDosageComponentProperties
protected void composeMedicationAdministrationDosageComponentProperties(MedicationAdministration.MedicationAdministrationDosageComponent element) throws IOException
- Throws:
IOException
-
composeMedicationDispense
protected void composeMedicationDispense(String name, MedicationDispense element) throws IOException
- Throws:
IOException
-
composeMedicationDispenseProperties
protected void composeMedicationDispenseProperties(MedicationDispense element) throws IOException
- Throws:
IOException
-
composeMedicationDispensePerformerComponent
protected void composeMedicationDispensePerformerComponent(String name, MedicationDispense.MedicationDispensePerformerComponent element) throws IOException
- Throws:
IOException
-
composeMedicationDispensePerformerComponentProperties
protected void composeMedicationDispensePerformerComponentProperties(MedicationDispense.MedicationDispensePerformerComponent element) throws IOException
- Throws:
IOException
-
composeMedicationDispenseSubstitutionComponent
protected void composeMedicationDispenseSubstitutionComponent(String name, MedicationDispense.MedicationDispenseSubstitutionComponent element) throws IOException
- Throws:
IOException
-
composeMedicationDispenseSubstitutionComponentProperties
protected void composeMedicationDispenseSubstitutionComponentProperties(MedicationDispense.MedicationDispenseSubstitutionComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledge
protected void composeMedicationKnowledge(String name, MedicationKnowledge element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeProperties
protected void composeMedicationKnowledgeProperties(MedicationKnowledge element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeRelatedMedicationKnowledgeComponent
protected void composeMedicationKnowledgeRelatedMedicationKnowledgeComponent(String name, MedicationKnowledge.MedicationKnowledgeRelatedMedicationKnowledgeComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeRelatedMedicationKnowledgeComponentProperties
protected void composeMedicationKnowledgeRelatedMedicationKnowledgeComponentProperties(MedicationKnowledge.MedicationKnowledgeRelatedMedicationKnowledgeComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMonographComponent
protected void composeMedicationKnowledgeMonographComponent(String name, MedicationKnowledge.MedicationKnowledgeMonographComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMonographComponentProperties
protected void composeMedicationKnowledgeMonographComponentProperties(MedicationKnowledge.MedicationKnowledgeMonographComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeIngredientComponent
protected void composeMedicationKnowledgeIngredientComponent(String name, MedicationKnowledge.MedicationKnowledgeIngredientComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeIngredientComponentProperties
protected void composeMedicationKnowledgeIngredientComponentProperties(MedicationKnowledge.MedicationKnowledgeIngredientComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeCostComponent
protected void composeMedicationKnowledgeCostComponent(String name, MedicationKnowledge.MedicationKnowledgeCostComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeCostComponentProperties
protected void composeMedicationKnowledgeCostComponentProperties(MedicationKnowledge.MedicationKnowledgeCostComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMonitoringProgramComponent
protected void composeMedicationKnowledgeMonitoringProgramComponent(String name, MedicationKnowledge.MedicationKnowledgeMonitoringProgramComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMonitoringProgramComponentProperties
protected void composeMedicationKnowledgeMonitoringProgramComponentProperties(MedicationKnowledge.MedicationKnowledgeMonitoringProgramComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeAdministrationGuidelinesComponent
protected void composeMedicationKnowledgeAdministrationGuidelinesComponent(String name, MedicationKnowledge.MedicationKnowledgeAdministrationGuidelinesComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeAdministrationGuidelinesComponentProperties
protected void composeMedicationKnowledgeAdministrationGuidelinesComponentProperties(MedicationKnowledge.MedicationKnowledgeAdministrationGuidelinesComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeAdministrationGuidelinesDosageComponent
protected void composeMedicationKnowledgeAdministrationGuidelinesDosageComponent(String name, MedicationKnowledge.MedicationKnowledgeAdministrationGuidelinesDosageComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeAdministrationGuidelinesDosageComponentProperties
protected void composeMedicationKnowledgeAdministrationGuidelinesDosageComponentProperties(MedicationKnowledge.MedicationKnowledgeAdministrationGuidelinesDosageComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeAdministrationGuidelinesPatientCharacteristicsComponent
protected void composeMedicationKnowledgeAdministrationGuidelinesPatientCharacteristicsComponent(String name, MedicationKnowledge.MedicationKnowledgeAdministrationGuidelinesPatientCharacteristicsComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeAdministrationGuidelinesPatientCharacteristicsComponentProperties
protected void composeMedicationKnowledgeAdministrationGuidelinesPatientCharacteristicsComponentProperties(MedicationKnowledge.MedicationKnowledgeAdministrationGuidelinesPatientCharacteristicsComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMedicineClassificationComponent
protected void composeMedicationKnowledgeMedicineClassificationComponent(String name, MedicationKnowledge.MedicationKnowledgeMedicineClassificationComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeMedicineClassificationComponentProperties
protected void composeMedicationKnowledgeMedicineClassificationComponentProperties(MedicationKnowledge.MedicationKnowledgeMedicineClassificationComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgePackagingComponent
protected void composeMedicationKnowledgePackagingComponent(String name, MedicationKnowledge.MedicationKnowledgePackagingComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgePackagingComponentProperties
protected void composeMedicationKnowledgePackagingComponentProperties(MedicationKnowledge.MedicationKnowledgePackagingComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeDrugCharacteristicComponent
protected void composeMedicationKnowledgeDrugCharacteristicComponent(String name, MedicationKnowledge.MedicationKnowledgeDrugCharacteristicComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeDrugCharacteristicComponentProperties
protected void composeMedicationKnowledgeDrugCharacteristicComponentProperties(MedicationKnowledge.MedicationKnowledgeDrugCharacteristicComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeRegulatoryComponent
protected void composeMedicationKnowledgeRegulatoryComponent(String name, MedicationKnowledge.MedicationKnowledgeRegulatoryComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeRegulatoryComponentProperties
protected void composeMedicationKnowledgeRegulatoryComponentProperties(MedicationKnowledge.MedicationKnowledgeRegulatoryComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeRegulatorySubstitutionComponent
protected void composeMedicationKnowledgeRegulatorySubstitutionComponent(String name, MedicationKnowledge.MedicationKnowledgeRegulatorySubstitutionComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeRegulatorySubstitutionComponentProperties
protected void composeMedicationKnowledgeRegulatorySubstitutionComponentProperties(MedicationKnowledge.MedicationKnowledgeRegulatorySubstitutionComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeRegulatoryScheduleComponent
protected void composeMedicationKnowledgeRegulatoryScheduleComponent(String name, MedicationKnowledge.MedicationKnowledgeRegulatoryScheduleComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeRegulatoryScheduleComponentProperties
protected void composeMedicationKnowledgeRegulatoryScheduleComponentProperties(MedicationKnowledge.MedicationKnowledgeRegulatoryScheduleComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeRegulatoryMaxDispenseComponent
protected void composeMedicationKnowledgeRegulatoryMaxDispenseComponent(String name, MedicationKnowledge.MedicationKnowledgeRegulatoryMaxDispenseComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeRegulatoryMaxDispenseComponentProperties
protected void composeMedicationKnowledgeRegulatoryMaxDispenseComponentProperties(MedicationKnowledge.MedicationKnowledgeRegulatoryMaxDispenseComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeKineticsComponent
protected void composeMedicationKnowledgeKineticsComponent(String name, MedicationKnowledge.MedicationKnowledgeKineticsComponent element) throws IOException
- Throws:
IOException
-
composeMedicationKnowledgeKineticsComponentProperties
protected void composeMedicationKnowledgeKineticsComponentProperties(MedicationKnowledge.MedicationKnowledgeKineticsComponent element) throws IOException
- Throws:
IOException
-
composeMedicationRequest
protected void composeMedicationRequest(String name, MedicationRequest element) throws IOException
- Throws:
IOException
-
composeMedicationRequestProperties
protected void composeMedicationRequestProperties(MedicationRequest element) throws IOException
- Throws:
IOException
-
composeMedicationRequestDispenseRequestComponent
protected void composeMedicationRequestDispenseRequestComponent(String name, MedicationRequest.MedicationRequestDispenseRequestComponent element) throws IOException
- Throws:
IOException
-
composeMedicationRequestDispenseRequestComponentProperties
protected void composeMedicationRequestDispenseRequestComponentProperties(MedicationRequest.MedicationRequestDispenseRequestComponent element) throws IOException
- Throws:
IOException
-
composeMedicationRequestDispenseRequestInitialFillComponent
protected void composeMedicationRequestDispenseRequestInitialFillComponent(String name, MedicationRequest.MedicationRequestDispenseRequestInitialFillComponent element) throws IOException
- Throws:
IOException
-
composeMedicationRequestDispenseRequestInitialFillComponentProperties
protected void composeMedicationRequestDispenseRequestInitialFillComponentProperties(MedicationRequest.MedicationRequestDispenseRequestInitialFillComponent element) throws IOException
- Throws:
IOException
-
composeMedicationRequestSubstitutionComponent
protected void composeMedicationRequestSubstitutionComponent(String name, MedicationRequest.MedicationRequestSubstitutionComponent element) throws IOException
- Throws:
IOException
-
composeMedicationRequestSubstitutionComponentProperties
protected void composeMedicationRequestSubstitutionComponentProperties(MedicationRequest.MedicationRequestSubstitutionComponent element) throws IOException
- Throws:
IOException
-
composeMedicationStatement
protected void composeMedicationStatement(String name, MedicationStatement element) throws IOException
- Throws:
IOException
-
composeMedicationStatementProperties
protected void composeMedicationStatementProperties(MedicationStatement element) throws IOException
- Throws:
IOException
-
composeMedicinalProductDefinition
protected void composeMedicinalProductDefinition(String name, MedicinalProductDefinition element) throws IOException
- Throws:
IOException
-
composeMedicinalProductDefinitionProperties
protected void composeMedicinalProductDefinitionProperties(MedicinalProductDefinition element) throws IOException
- Throws:
IOException
-
composeMedicinalProductDefinitionContactComponent
protected void composeMedicinalProductDefinitionContactComponent(String name, MedicinalProductDefinition.MedicinalProductDefinitionContactComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductDefinitionContactComponentProperties
protected void composeMedicinalProductDefinitionContactComponentProperties(MedicinalProductDefinition.MedicinalProductDefinitionContactComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductDefinitionNameComponent
protected void composeMedicinalProductDefinitionNameComponent(String name, MedicinalProductDefinition.MedicinalProductDefinitionNameComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductDefinitionNameComponentProperties
protected void composeMedicinalProductDefinitionNameComponentProperties(MedicinalProductDefinition.MedicinalProductDefinitionNameComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductDefinitionNameNamePartComponent
protected void composeMedicinalProductDefinitionNameNamePartComponent(String name, MedicinalProductDefinition.MedicinalProductDefinitionNameNamePartComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductDefinitionNameNamePartComponentProperties
protected void composeMedicinalProductDefinitionNameNamePartComponentProperties(MedicinalProductDefinition.MedicinalProductDefinitionNameNamePartComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductDefinitionNameCountryLanguageComponent
protected void composeMedicinalProductDefinitionNameCountryLanguageComponent(String name, MedicinalProductDefinition.MedicinalProductDefinitionNameCountryLanguageComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductDefinitionNameCountryLanguageComponentProperties
protected void composeMedicinalProductDefinitionNameCountryLanguageComponentProperties(MedicinalProductDefinition.MedicinalProductDefinitionNameCountryLanguageComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductDefinitionCrossReferenceComponent
protected void composeMedicinalProductDefinitionCrossReferenceComponent(String name, MedicinalProductDefinition.MedicinalProductDefinitionCrossReferenceComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductDefinitionCrossReferenceComponentProperties
protected void composeMedicinalProductDefinitionCrossReferenceComponentProperties(MedicinalProductDefinition.MedicinalProductDefinitionCrossReferenceComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductDefinitionOperationComponent
protected void composeMedicinalProductDefinitionOperationComponent(String name, MedicinalProductDefinition.MedicinalProductDefinitionOperationComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductDefinitionOperationComponentProperties
protected void composeMedicinalProductDefinitionOperationComponentProperties(MedicinalProductDefinition.MedicinalProductDefinitionOperationComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductDefinitionCharacteristicComponent
protected void composeMedicinalProductDefinitionCharacteristicComponent(String name, MedicinalProductDefinition.MedicinalProductDefinitionCharacteristicComponent element) throws IOException
- Throws:
IOException
-
composeMedicinalProductDefinitionCharacteristicComponentProperties
protected void composeMedicinalProductDefinitionCharacteristicComponentProperties(MedicinalProductDefinition.MedicinalProductDefinitionCharacteristicComponent element) throws IOException
- Throws:
IOException
-
composeMessageDefinition
protected void composeMessageDefinition(String name, MessageDefinition element) throws IOException
- Throws:
IOException
-
composeMessageDefinitionProperties
protected void composeMessageDefinitionProperties(MessageDefinition element) throws IOException
- Throws:
IOException
-
composeMessageDefinitionFocusComponent
protected void composeMessageDefinitionFocusComponent(String name, MessageDefinition.MessageDefinitionFocusComponent element) throws IOException
- Throws:
IOException
-
composeMessageDefinitionFocusComponentProperties
protected void composeMessageDefinitionFocusComponentProperties(MessageDefinition.MessageDefinitionFocusComponent element) throws IOException
- Throws:
IOException
-
composeMessageDefinitionAllowedResponseComponent
protected void composeMessageDefinitionAllowedResponseComponent(String name, MessageDefinition.MessageDefinitionAllowedResponseComponent element) throws IOException
- Throws:
IOException
-
composeMessageDefinitionAllowedResponseComponentProperties
protected void composeMessageDefinitionAllowedResponseComponentProperties(MessageDefinition.MessageDefinitionAllowedResponseComponent element) throws IOException
- Throws:
IOException
-
composeMessageHeader
protected void composeMessageHeader(String name, MessageHeader element) throws IOException
- Throws:
IOException
-
composeMessageHeaderProperties
protected void composeMessageHeaderProperties(MessageHeader element) throws IOException
- Throws:
IOException
-
composeMessageDestinationComponent
protected void composeMessageDestinationComponent(String name, MessageHeader.MessageDestinationComponent element) throws IOException
- Throws:
IOException
-
composeMessageDestinationComponentProperties
protected void composeMessageDestinationComponentProperties(MessageHeader.MessageDestinationComponent element) throws IOException
- Throws:
IOException
-
composeMessageSourceComponent
protected void composeMessageSourceComponent(String name, MessageHeader.MessageSourceComponent element) throws IOException
- Throws:
IOException
-
composeMessageSourceComponentProperties
protected void composeMessageSourceComponentProperties(MessageHeader.MessageSourceComponent element) throws IOException
- Throws:
IOException
-
composeMessageHeaderResponseComponent
protected void composeMessageHeaderResponseComponent(String name, MessageHeader.MessageHeaderResponseComponent element) throws IOException
- Throws:
IOException
-
composeMessageHeaderResponseComponentProperties
protected void composeMessageHeaderResponseComponentProperties(MessageHeader.MessageHeaderResponseComponent element) throws IOException
- Throws:
IOException
-
composeMolecularSequence
protected void composeMolecularSequence(String name, MolecularSequence element) throws IOException
- Throws:
IOException
-
composeMolecularSequenceProperties
protected void composeMolecularSequenceProperties(MolecularSequence element) throws IOException
- Throws:
IOException
-
composeMolecularSequenceReferenceSeqComponent
protected void composeMolecularSequenceReferenceSeqComponent(String name, MolecularSequence.MolecularSequenceReferenceSeqComponent element) throws IOException
- Throws:
IOException
-
composeMolecularSequenceReferenceSeqComponentProperties
protected void composeMolecularSequenceReferenceSeqComponentProperties(MolecularSequence.MolecularSequenceReferenceSeqComponent element) throws IOException
- Throws:
IOException
-
composeMolecularSequenceVariantComponent
protected void composeMolecularSequenceVariantComponent(String name, MolecularSequence.MolecularSequenceVariantComponent element) throws IOException
- Throws:
IOException
-
composeMolecularSequenceVariantComponentProperties
protected void composeMolecularSequenceVariantComponentProperties(MolecularSequence.MolecularSequenceVariantComponent element) throws IOException
- Throws:
IOException
-
composeMolecularSequenceQualityComponent
protected void composeMolecularSequenceQualityComponent(String name, MolecularSequence.MolecularSequenceQualityComponent element) throws IOException
- Throws:
IOException
-
composeMolecularSequenceQualityComponentProperties
protected void composeMolecularSequenceQualityComponentProperties(MolecularSequence.MolecularSequenceQualityComponent element) throws IOException
- Throws:
IOException
-
composeMolecularSequenceQualityRocComponent
protected void composeMolecularSequenceQualityRocComponent(String name, MolecularSequence.MolecularSequenceQualityRocComponent element) throws IOException
- Throws:
IOException
-
composeMolecularSequenceQualityRocComponentProperties
protected void composeMolecularSequenceQualityRocComponentProperties(MolecularSequence.MolecularSequenceQualityRocComponent element) throws IOException
- Throws:
IOException
-
composeMolecularSequenceRepositoryComponent
protected void composeMolecularSequenceRepositoryComponent(String name, MolecularSequence.MolecularSequenceRepositoryComponent element) throws IOException
- Throws:
IOException
-
composeMolecularSequenceRepositoryComponentProperties
protected void composeMolecularSequenceRepositoryComponentProperties(MolecularSequence.MolecularSequenceRepositoryComponent element) throws IOException
- Throws:
IOException
-
composeMolecularSequenceStructureVariantComponent
protected void composeMolecularSequenceStructureVariantComponent(String name, MolecularSequence.MolecularSequenceStructureVariantComponent element) throws IOException
- Throws:
IOException
-
composeMolecularSequenceStructureVariantComponentProperties
protected void composeMolecularSequenceStructureVariantComponentProperties(MolecularSequence.MolecularSequenceStructureVariantComponent element) throws IOException
- Throws:
IOException
-
composeMolecularSequenceStructureVariantOuterComponent
protected void composeMolecularSequenceStructureVariantOuterComponent(String name, MolecularSequence.MolecularSequenceStructureVariantOuterComponent element) throws IOException
- Throws:
IOException
-
composeMolecularSequenceStructureVariantOuterComponentProperties
protected void composeMolecularSequenceStructureVariantOuterComponentProperties(MolecularSequence.MolecularSequenceStructureVariantOuterComponent element) throws IOException
- Throws:
IOException
-
composeMolecularSequenceStructureVariantInnerComponent
protected void composeMolecularSequenceStructureVariantInnerComponent(String name, MolecularSequence.MolecularSequenceStructureVariantInnerComponent element) throws IOException
- Throws:
IOException
-
composeMolecularSequenceStructureVariantInnerComponentProperties
protected void composeMolecularSequenceStructureVariantInnerComponentProperties(MolecularSequence.MolecularSequenceStructureVariantInnerComponent element) throws IOException
- Throws:
IOException
-
composeNamingSystem
protected void composeNamingSystem(String name, NamingSystem element) throws IOException
- Throws:
IOException
-
composeNamingSystemProperties
protected void composeNamingSystemProperties(NamingSystem element) throws IOException
- Throws:
IOException
-
composeNamingSystemUniqueIdComponent
protected void composeNamingSystemUniqueIdComponent(String name, NamingSystem.NamingSystemUniqueIdComponent element) throws IOException
- Throws:
IOException
-
composeNamingSystemUniqueIdComponentProperties
protected void composeNamingSystemUniqueIdComponentProperties(NamingSystem.NamingSystemUniqueIdComponent element) throws IOException
- Throws:
IOException
-
composeNutritionOrder
protected void composeNutritionOrder(String name, NutritionOrder element) throws IOException
- Throws:
IOException
-
composeNutritionOrderProperties
protected void composeNutritionOrderProperties(NutritionOrder element) throws IOException
- Throws:
IOException
-
composeNutritionOrderOralDietComponent
protected void composeNutritionOrderOralDietComponent(String name, NutritionOrder.NutritionOrderOralDietComponent element) throws IOException
- Throws:
IOException
-
composeNutritionOrderOralDietComponentProperties
protected void composeNutritionOrderOralDietComponentProperties(NutritionOrder.NutritionOrderOralDietComponent element) throws IOException
- Throws:
IOException
-
composeNutritionOrderOralDietNutrientComponent
protected void composeNutritionOrderOralDietNutrientComponent(String name, NutritionOrder.NutritionOrderOralDietNutrientComponent element) throws IOException
- Throws:
IOException
-
composeNutritionOrderOralDietNutrientComponentProperties
protected void composeNutritionOrderOralDietNutrientComponentProperties(NutritionOrder.NutritionOrderOralDietNutrientComponent element) throws IOException
- Throws:
IOException
-
composeNutritionOrderOralDietTextureComponent
protected void composeNutritionOrderOralDietTextureComponent(String name, NutritionOrder.NutritionOrderOralDietTextureComponent element) throws IOException
- Throws:
IOException
-
composeNutritionOrderOralDietTextureComponentProperties
protected void composeNutritionOrderOralDietTextureComponentProperties(NutritionOrder.NutritionOrderOralDietTextureComponent element) throws IOException
- Throws:
IOException
-
composeNutritionOrderSupplementComponent
protected void composeNutritionOrderSupplementComponent(String name, NutritionOrder.NutritionOrderSupplementComponent element) throws IOException
- Throws:
IOException
-
composeNutritionOrderSupplementComponentProperties
protected void composeNutritionOrderSupplementComponentProperties(NutritionOrder.NutritionOrderSupplementComponent element) throws IOException
- Throws:
IOException
-
composeNutritionOrderEnteralFormulaComponent
protected void composeNutritionOrderEnteralFormulaComponent(String name, NutritionOrder.NutritionOrderEnteralFormulaComponent element) throws IOException
- Throws:
IOException
-
composeNutritionOrderEnteralFormulaComponentProperties
protected void composeNutritionOrderEnteralFormulaComponentProperties(NutritionOrder.NutritionOrderEnteralFormulaComponent element) throws IOException
- Throws:
IOException
-
composeNutritionOrderEnteralFormulaAdministrationComponent
protected void composeNutritionOrderEnteralFormulaAdministrationComponent(String name, NutritionOrder.NutritionOrderEnteralFormulaAdministrationComponent element) throws IOException
- Throws:
IOException
-
composeNutritionOrderEnteralFormulaAdministrationComponentProperties
protected void composeNutritionOrderEnteralFormulaAdministrationComponentProperties(NutritionOrder.NutritionOrderEnteralFormulaAdministrationComponent element) throws IOException
- Throws:
IOException
-
composeNutritionProduct
protected void composeNutritionProduct(String name, NutritionProduct element) throws IOException
- Throws:
IOException
-
composeNutritionProductProperties
protected void composeNutritionProductProperties(NutritionProduct element) throws IOException
- Throws:
IOException
-
composeNutritionProductNutrientComponent
protected void composeNutritionProductNutrientComponent(String name, NutritionProduct.NutritionProductNutrientComponent element) throws IOException
- Throws:
IOException
-
composeNutritionProductNutrientComponentProperties
protected void composeNutritionProductNutrientComponentProperties(NutritionProduct.NutritionProductNutrientComponent element) throws IOException
- Throws:
IOException
-
composeNutritionProductIngredientComponent
protected void composeNutritionProductIngredientComponent(String name, NutritionProduct.NutritionProductIngredientComponent element) throws IOException
- Throws:
IOException
-
composeNutritionProductIngredientComponentProperties
protected void composeNutritionProductIngredientComponentProperties(NutritionProduct.NutritionProductIngredientComponent element) throws IOException
- Throws:
IOException
-
composeNutritionProductProductCharacteristicComponent
protected void composeNutritionProductProductCharacteristicComponent(String name, NutritionProduct.NutritionProductProductCharacteristicComponent element) throws IOException
- Throws:
IOException
-
composeNutritionProductProductCharacteristicComponentProperties
protected void composeNutritionProductProductCharacteristicComponentProperties(NutritionProduct.NutritionProductProductCharacteristicComponent element) throws IOException
- Throws:
IOException
-
composeNutritionProductInstanceComponent
protected void composeNutritionProductInstanceComponent(String name, NutritionProduct.NutritionProductInstanceComponent element) throws IOException
- Throws:
IOException
-
composeNutritionProductInstanceComponentProperties
protected void composeNutritionProductInstanceComponentProperties(NutritionProduct.NutritionProductInstanceComponent element) throws IOException
- Throws:
IOException
-
composeObservation
protected void composeObservation(String name, Observation element) throws IOException
- Throws:
IOException
-
composeObservationProperties
protected void composeObservationProperties(Observation element) throws IOException
- Throws:
IOException
-
composeObservationReferenceRangeComponent
protected void composeObservationReferenceRangeComponent(String name, Observation.ObservationReferenceRangeComponent element) throws IOException
- Throws:
IOException
-
composeObservationReferenceRangeComponentProperties
protected void composeObservationReferenceRangeComponentProperties(Observation.ObservationReferenceRangeComponent element) throws IOException
- Throws:
IOException
-
composeObservationComponentComponent
protected void composeObservationComponentComponent(String name, Observation.ObservationComponentComponent element) throws IOException
- Throws:
IOException
-
composeObservationComponentComponentProperties
protected void composeObservationComponentComponentProperties(Observation.ObservationComponentComponent element) throws IOException
- Throws:
IOException
-
composeObservationDefinition
protected void composeObservationDefinition(String name, ObservationDefinition element) throws IOException
- Throws:
IOException
-
composeObservationDefinitionProperties
protected void composeObservationDefinitionProperties(ObservationDefinition element) throws IOException
- Throws:
IOException
-
composeObservationDefinitionQuantitativeDetailsComponent
protected void composeObservationDefinitionQuantitativeDetailsComponent(String name, ObservationDefinition.ObservationDefinitionQuantitativeDetailsComponent element) throws IOException
- Throws:
IOException
-
composeObservationDefinitionQuantitativeDetailsComponentProperties
protected void composeObservationDefinitionQuantitativeDetailsComponentProperties(ObservationDefinition.ObservationDefinitionQuantitativeDetailsComponent element) throws IOException
- Throws:
IOException
-
composeObservationDefinitionQualifiedIntervalComponent
protected void composeObservationDefinitionQualifiedIntervalComponent(String name, ObservationDefinition.ObservationDefinitionQualifiedIntervalComponent element) throws IOException
- Throws:
IOException
-
composeObservationDefinitionQualifiedIntervalComponentProperties
protected void composeObservationDefinitionQualifiedIntervalComponentProperties(ObservationDefinition.ObservationDefinitionQualifiedIntervalComponent element) throws IOException
- Throws:
IOException
-
composeOperationDefinition
protected void composeOperationDefinition(String name, OperationDefinition element) throws IOException
- Throws:
IOException
-
composeOperationDefinitionProperties
protected void composeOperationDefinitionProperties(OperationDefinition element) throws IOException
- Throws:
IOException
-
composeOperationDefinitionParameterComponent
protected void composeOperationDefinitionParameterComponent(String name, OperationDefinition.OperationDefinitionParameterComponent element) throws IOException
- Throws:
IOException
-
composeOperationDefinitionParameterComponentProperties
protected void composeOperationDefinitionParameterComponentProperties(OperationDefinition.OperationDefinitionParameterComponent element) throws IOException
- Throws:
IOException
-
composeOperationDefinitionParameterBindingComponent
protected void composeOperationDefinitionParameterBindingComponent(String name, OperationDefinition.OperationDefinitionParameterBindingComponent element) throws IOException
- Throws:
IOException
-
composeOperationDefinitionParameterBindingComponentProperties
protected void composeOperationDefinitionParameterBindingComponentProperties(OperationDefinition.OperationDefinitionParameterBindingComponent element) throws IOException
- Throws:
IOException
-
composeOperationDefinitionParameterReferencedFromComponent
protected void composeOperationDefinitionParameterReferencedFromComponent(String name, OperationDefinition.OperationDefinitionParameterReferencedFromComponent element) throws IOException
- Throws:
IOException
-
composeOperationDefinitionParameterReferencedFromComponentProperties
protected void composeOperationDefinitionParameterReferencedFromComponentProperties(OperationDefinition.OperationDefinitionParameterReferencedFromComponent element) throws IOException
- Throws:
IOException
-
composeOperationDefinitionOverloadComponent
protected void composeOperationDefinitionOverloadComponent(String name, OperationDefinition.OperationDefinitionOverloadComponent element) throws IOException
- Throws:
IOException
-
composeOperationDefinitionOverloadComponentProperties
protected void composeOperationDefinitionOverloadComponentProperties(OperationDefinition.OperationDefinitionOverloadComponent element) throws IOException
- Throws:
IOException
-
composeOperationOutcome
protected void composeOperationOutcome(String name, OperationOutcome element) throws IOException
- Throws:
IOException
-
composeOperationOutcomeProperties
protected void composeOperationOutcomeProperties(OperationOutcome element) throws IOException
- Throws:
IOException
-
composeOperationOutcomeIssueComponent
protected void composeOperationOutcomeIssueComponent(String name, OperationOutcome.OperationOutcomeIssueComponent element) throws IOException
- Throws:
IOException
-
composeOperationOutcomeIssueComponentProperties
protected void composeOperationOutcomeIssueComponentProperties(OperationOutcome.OperationOutcomeIssueComponent element) throws IOException
- Throws:
IOException
-
composeOrganization
protected void composeOrganization(String name, Organization element) throws IOException
- Throws:
IOException
-
composeOrganizationProperties
protected void composeOrganizationProperties(Organization element) throws IOException
- Throws:
IOException
-
composeOrganizationContactComponent
protected void composeOrganizationContactComponent(String name, Organization.OrganizationContactComponent element) throws IOException
- Throws:
IOException
-
composeOrganizationContactComponentProperties
protected void composeOrganizationContactComponentProperties(Organization.OrganizationContactComponent element) throws IOException
- Throws:
IOException
-
composeOrganizationAffiliation
protected void composeOrganizationAffiliation(String name, OrganizationAffiliation element) throws IOException
- Throws:
IOException
-
composeOrganizationAffiliationProperties
protected void composeOrganizationAffiliationProperties(OrganizationAffiliation element) throws IOException
- Throws:
IOException
-
composePackagedProductDefinition
protected void composePackagedProductDefinition(String name, PackagedProductDefinition element) throws IOException
- Throws:
IOException
-
composePackagedProductDefinitionProperties
protected void composePackagedProductDefinitionProperties(PackagedProductDefinition element) throws IOException
- Throws:
IOException
-
composePackagedProductDefinitionLegalStatusOfSupplyComponent
protected void composePackagedProductDefinitionLegalStatusOfSupplyComponent(String name, PackagedProductDefinition.PackagedProductDefinitionLegalStatusOfSupplyComponent element) throws IOException
- Throws:
IOException
-
composePackagedProductDefinitionLegalStatusOfSupplyComponentProperties
protected void composePackagedProductDefinitionLegalStatusOfSupplyComponentProperties(PackagedProductDefinition.PackagedProductDefinitionLegalStatusOfSupplyComponent element) throws IOException
- Throws:
IOException
-
composePackagedProductDefinitionPackageComponent
protected void composePackagedProductDefinitionPackageComponent(String name, PackagedProductDefinition.PackagedProductDefinitionPackageComponent element) throws IOException
- Throws:
IOException
-
composePackagedProductDefinitionPackageComponentProperties
protected void composePackagedProductDefinitionPackageComponentProperties(PackagedProductDefinition.PackagedProductDefinitionPackageComponent element) throws IOException
- Throws:
IOException
-
composePackagedProductDefinitionPackagePropertyComponent
protected void composePackagedProductDefinitionPackagePropertyComponent(String name, PackagedProductDefinition.PackagedProductDefinitionPackagePropertyComponent element) throws IOException
- Throws:
IOException
-
composePackagedProductDefinitionPackagePropertyComponentProperties
protected void composePackagedProductDefinitionPackagePropertyComponentProperties(PackagedProductDefinition.PackagedProductDefinitionPackagePropertyComponent element) throws IOException
- Throws:
IOException
-
composePackagedProductDefinitionPackageContainedItemComponent
protected void composePackagedProductDefinitionPackageContainedItemComponent(String name, PackagedProductDefinition.PackagedProductDefinitionPackageContainedItemComponent element) throws IOException
- Throws:
IOException
-
composePackagedProductDefinitionPackageContainedItemComponentProperties
protected void composePackagedProductDefinitionPackageContainedItemComponentProperties(PackagedProductDefinition.PackagedProductDefinitionPackageContainedItemComponent element) throws IOException
- Throws:
IOException
-
composeParameters
protected void composeParameters(String name, Parameters element) throws IOException
- Throws:
IOException
-
composeParametersProperties
protected void composeParametersProperties(Parameters element) throws IOException
- Throws:
IOException
-
composeParametersParameterComponent
protected void composeParametersParameterComponent(String name, Parameters.ParametersParameterComponent element) throws IOException
- Throws:
IOException
-
composeParametersParameterComponentProperties
protected void composeParametersParameterComponentProperties(Parameters.ParametersParameterComponent element) throws IOException
- Throws:
IOException
-
composePatient
protected void composePatient(String name, Patient element) throws IOException
- Throws:
IOException
-
composePatientProperties
protected void composePatientProperties(Patient element) throws IOException
- Throws:
IOException
-
composeContactComponent
protected void composeContactComponent(String name, Patient.ContactComponent element) throws IOException
- Throws:
IOException
-
composeContactComponentProperties
protected void composeContactComponentProperties(Patient.ContactComponent element) throws IOException
- Throws:
IOException
-
composePatientCommunicationComponent
protected void composePatientCommunicationComponent(String name, Patient.PatientCommunicationComponent element) throws IOException
- Throws:
IOException
-
composePatientCommunicationComponentProperties
protected void composePatientCommunicationComponentProperties(Patient.PatientCommunicationComponent element) throws IOException
- Throws:
IOException
-
composePatientLinkComponent
protected void composePatientLinkComponent(String name, Patient.PatientLinkComponent element) throws IOException
- Throws:
IOException
-
composePatientLinkComponentProperties
protected void composePatientLinkComponentProperties(Patient.PatientLinkComponent element) throws IOException
- Throws:
IOException
-
composePaymentNotice
protected void composePaymentNotice(String name, PaymentNotice element) throws IOException
- Throws:
IOException
-
composePaymentNoticeProperties
protected void composePaymentNoticeProperties(PaymentNotice element) throws IOException
- Throws:
IOException
-
composePaymentReconciliation
protected void composePaymentReconciliation(String name, PaymentReconciliation element) throws IOException
- Throws:
IOException
-
composePaymentReconciliationProperties
protected void composePaymentReconciliationProperties(PaymentReconciliation element) throws IOException
- Throws:
IOException
-
composeDetailsComponent
protected void composeDetailsComponent(String name, PaymentReconciliation.DetailsComponent element) throws IOException
- Throws:
IOException
-
composeDetailsComponentProperties
protected void composeDetailsComponentProperties(PaymentReconciliation.DetailsComponent element) throws IOException
- Throws:
IOException
-
composeNotesComponent
protected void composeNotesComponent(String name, PaymentReconciliation.NotesComponent element) throws IOException
- Throws:
IOException
-
composeNotesComponentProperties
protected void composeNotesComponentProperties(PaymentReconciliation.NotesComponent element) throws IOException
- Throws:
IOException
-
composePerson
protected void composePerson(String name, Person element) throws IOException
- Throws:
IOException
-
composePersonProperties
protected void composePersonProperties(Person element) throws IOException
- Throws:
IOException
-
composePersonLinkComponent
protected void composePersonLinkComponent(String name, Person.PersonLinkComponent element) throws IOException
- Throws:
IOException
-
composePersonLinkComponentProperties
protected void composePersonLinkComponentProperties(Person.PersonLinkComponent element) throws IOException
- Throws:
IOException
-
composePlanDefinition
protected void composePlanDefinition(String name, PlanDefinition element) throws IOException
- Throws:
IOException
-
composePlanDefinitionProperties
protected void composePlanDefinitionProperties(PlanDefinition element) throws IOException
- Throws:
IOException
-
composePlanDefinitionGoalComponent
protected void composePlanDefinitionGoalComponent(String name, PlanDefinition.PlanDefinitionGoalComponent element) throws IOException
- Throws:
IOException
-
composePlanDefinitionGoalComponentProperties
protected void composePlanDefinitionGoalComponentProperties(PlanDefinition.PlanDefinitionGoalComponent element) throws IOException
- Throws:
IOException
-
composePlanDefinitionGoalTargetComponent
protected void composePlanDefinitionGoalTargetComponent(String name, PlanDefinition.PlanDefinitionGoalTargetComponent element) throws IOException
- Throws:
IOException
-
composePlanDefinitionGoalTargetComponentProperties
protected void composePlanDefinitionGoalTargetComponentProperties(PlanDefinition.PlanDefinitionGoalTargetComponent element) throws IOException
- Throws:
IOException
-
composePlanDefinitionActionComponent
protected void composePlanDefinitionActionComponent(String name, PlanDefinition.PlanDefinitionActionComponent element) throws IOException
- Throws:
IOException
-
composePlanDefinitionActionComponentProperties
protected void composePlanDefinitionActionComponentProperties(PlanDefinition.PlanDefinitionActionComponent element) throws IOException
- Throws:
IOException
-
composePlanDefinitionActionConditionComponent
protected void composePlanDefinitionActionConditionComponent(String name, PlanDefinition.PlanDefinitionActionConditionComponent element) throws IOException
- Throws:
IOException
-
composePlanDefinitionActionConditionComponentProperties
protected void composePlanDefinitionActionConditionComponentProperties(PlanDefinition.PlanDefinitionActionConditionComponent element) throws IOException
- Throws:
IOException
-
composePlanDefinitionActionRelatedActionComponent
protected void composePlanDefinitionActionRelatedActionComponent(String name, PlanDefinition.PlanDefinitionActionRelatedActionComponent element) throws IOException
- Throws:
IOException
-
composePlanDefinitionActionRelatedActionComponentProperties
protected void composePlanDefinitionActionRelatedActionComponentProperties(PlanDefinition.PlanDefinitionActionRelatedActionComponent element) throws IOException
- Throws:
IOException
-
composePlanDefinitionActionParticipantComponent
protected void composePlanDefinitionActionParticipantComponent(String name, PlanDefinition.PlanDefinitionActionParticipantComponent element) throws IOException
- Throws:
IOException
-
composePlanDefinitionActionParticipantComponentProperties
protected void composePlanDefinitionActionParticipantComponentProperties(PlanDefinition.PlanDefinitionActionParticipantComponent element) throws IOException
- Throws:
IOException
-
composePlanDefinitionActionDynamicValueComponent
protected void composePlanDefinitionActionDynamicValueComponent(String name, PlanDefinition.PlanDefinitionActionDynamicValueComponent element) throws IOException
- Throws:
IOException
-
composePlanDefinitionActionDynamicValueComponentProperties
protected void composePlanDefinitionActionDynamicValueComponentProperties(PlanDefinition.PlanDefinitionActionDynamicValueComponent element) throws IOException
- Throws:
IOException
-
composePractitioner
protected void composePractitioner(String name, Practitioner element) throws IOException
- Throws:
IOException
-
composePractitionerProperties
protected void composePractitionerProperties(Practitioner element) throws IOException
- Throws:
IOException
-
composePractitionerQualificationComponent
protected void composePractitionerQualificationComponent(String name, Practitioner.PractitionerQualificationComponent element) throws IOException
- Throws:
IOException
-
composePractitionerQualificationComponentProperties
protected void composePractitionerQualificationComponentProperties(Practitioner.PractitionerQualificationComponent element) throws IOException
- Throws:
IOException
-
composePractitionerRole
protected void composePractitionerRole(String name, PractitionerRole element) throws IOException
- Throws:
IOException
-
composePractitionerRoleProperties
protected void composePractitionerRoleProperties(PractitionerRole element) throws IOException
- Throws:
IOException
-
composePractitionerRoleAvailableTimeComponent
protected void composePractitionerRoleAvailableTimeComponent(String name, PractitionerRole.PractitionerRoleAvailableTimeComponent element) throws IOException
- Throws:
IOException
-
composePractitionerRoleAvailableTimeComponentProperties
protected void composePractitionerRoleAvailableTimeComponentProperties(PractitionerRole.PractitionerRoleAvailableTimeComponent element) throws IOException
- Throws:
IOException
-
composePractitionerRoleNotAvailableComponent
protected void composePractitionerRoleNotAvailableComponent(String name, PractitionerRole.PractitionerRoleNotAvailableComponent element) throws IOException
- Throws:
IOException
-
composePractitionerRoleNotAvailableComponentProperties
protected void composePractitionerRoleNotAvailableComponentProperties(PractitionerRole.PractitionerRoleNotAvailableComponent element) throws IOException
- Throws:
IOException
-
composeProcedure
protected void composeProcedure(String name, Procedure element) throws IOException
- Throws:
IOException
-
composeProcedureProperties
protected void composeProcedureProperties(Procedure element) throws IOException
- Throws:
IOException
-
composeProcedurePerformerComponent
protected void composeProcedurePerformerComponent(String name, Procedure.ProcedurePerformerComponent element) throws IOException
- Throws:
IOException
-
composeProcedurePerformerComponentProperties
protected void composeProcedurePerformerComponentProperties(Procedure.ProcedurePerformerComponent element) throws IOException
- Throws:
IOException
-
composeProcedureFocalDeviceComponent
protected void composeProcedureFocalDeviceComponent(String name, Procedure.ProcedureFocalDeviceComponent element) throws IOException
- Throws:
IOException
-
composeProcedureFocalDeviceComponentProperties
protected void composeProcedureFocalDeviceComponentProperties(Procedure.ProcedureFocalDeviceComponent element) throws IOException
- Throws:
IOException
-
composeProvenance
protected void composeProvenance(String name, Provenance element) throws IOException
- Throws:
IOException
-
composeProvenanceProperties
protected void composeProvenanceProperties(Provenance element) throws IOException
- Throws:
IOException
-
composeProvenanceAgentComponent
protected void composeProvenanceAgentComponent(String name, Provenance.ProvenanceAgentComponent element) throws IOException
- Throws:
IOException
-
composeProvenanceAgentComponentProperties
protected void composeProvenanceAgentComponentProperties(Provenance.ProvenanceAgentComponent element) throws IOException
- Throws:
IOException
-
composeProvenanceEntityComponent
protected void composeProvenanceEntityComponent(String name, Provenance.ProvenanceEntityComponent element) throws IOException
- Throws:
IOException
-
composeProvenanceEntityComponentProperties
protected void composeProvenanceEntityComponentProperties(Provenance.ProvenanceEntityComponent element) throws IOException
- Throws:
IOException
-
composeQuestionnaire
protected void composeQuestionnaire(String name, Questionnaire element) throws IOException
- Throws:
IOException
-
composeQuestionnaireProperties
protected void composeQuestionnaireProperties(Questionnaire element) throws IOException
- Throws:
IOException
-
composeQuestionnaireItemComponent
protected void composeQuestionnaireItemComponent(String name, Questionnaire.QuestionnaireItemComponent element) throws IOException
- Throws:
IOException
-
composeQuestionnaireItemComponentProperties
protected void composeQuestionnaireItemComponentProperties(Questionnaire.QuestionnaireItemComponent element) throws IOException
- Throws:
IOException
-
composeQuestionnaireItemEnableWhenComponent
protected void composeQuestionnaireItemEnableWhenComponent(String name, Questionnaire.QuestionnaireItemEnableWhenComponent element) throws IOException
- Throws:
IOException
-
composeQuestionnaireItemEnableWhenComponentProperties
protected void composeQuestionnaireItemEnableWhenComponentProperties(Questionnaire.QuestionnaireItemEnableWhenComponent element) throws IOException
- Throws:
IOException
-
composeQuestionnaireItemAnswerOptionComponent
protected void composeQuestionnaireItemAnswerOptionComponent(String name, Questionnaire.QuestionnaireItemAnswerOptionComponent element) throws IOException
- Throws:
IOException
-
composeQuestionnaireItemAnswerOptionComponentProperties
protected void composeQuestionnaireItemAnswerOptionComponentProperties(Questionnaire.QuestionnaireItemAnswerOptionComponent element) throws IOException
- Throws:
IOException
-
composeQuestionnaireItemInitialComponent
protected void composeQuestionnaireItemInitialComponent(String name, Questionnaire.QuestionnaireItemInitialComponent element) throws IOException
- Throws:
IOException
-
composeQuestionnaireItemInitialComponentProperties
protected void composeQuestionnaireItemInitialComponentProperties(Questionnaire.QuestionnaireItemInitialComponent element) throws IOException
- Throws:
IOException
-
composeQuestionnaireResponse
protected void composeQuestionnaireResponse(String name, QuestionnaireResponse element) throws IOException
- Throws:
IOException
-
composeQuestionnaireResponseProperties
protected void composeQuestionnaireResponseProperties(QuestionnaireResponse element) throws IOException
- Throws:
IOException
-
composeQuestionnaireResponseItemComponent
protected void composeQuestionnaireResponseItemComponent(String name, QuestionnaireResponse.QuestionnaireResponseItemComponent element) throws IOException
- Throws:
IOException
-
composeQuestionnaireResponseItemComponentProperties
protected void composeQuestionnaireResponseItemComponentProperties(QuestionnaireResponse.QuestionnaireResponseItemComponent element) throws IOException
- Throws:
IOException
-
composeQuestionnaireResponseItemAnswerComponent
protected void composeQuestionnaireResponseItemAnswerComponent(String name, QuestionnaireResponse.QuestionnaireResponseItemAnswerComponent element) throws IOException
- Throws:
IOException
-
composeQuestionnaireResponseItemAnswerComponentProperties
protected void composeQuestionnaireResponseItemAnswerComponentProperties(QuestionnaireResponse.QuestionnaireResponseItemAnswerComponent element) throws IOException
- Throws:
IOException
-
composeRegulatedAuthorization
protected void composeRegulatedAuthorization(String name, RegulatedAuthorization element) throws IOException
- Throws:
IOException
-
composeRegulatedAuthorizationProperties
protected void composeRegulatedAuthorizationProperties(RegulatedAuthorization element) throws IOException
- Throws:
IOException
-
composeRegulatedAuthorizationCaseComponent
protected void composeRegulatedAuthorizationCaseComponent(String name, RegulatedAuthorization.RegulatedAuthorizationCaseComponent element) throws IOException
- Throws:
IOException
-
composeRegulatedAuthorizationCaseComponentProperties
protected void composeRegulatedAuthorizationCaseComponentProperties(RegulatedAuthorization.RegulatedAuthorizationCaseComponent element) throws IOException
- Throws:
IOException
-
composeRelatedPerson
protected void composeRelatedPerson(String name, RelatedPerson element) throws IOException
- Throws:
IOException
-
composeRelatedPersonProperties
protected void composeRelatedPersonProperties(RelatedPerson element) throws IOException
- Throws:
IOException
-
composeRelatedPersonCommunicationComponent
protected void composeRelatedPersonCommunicationComponent(String name, RelatedPerson.RelatedPersonCommunicationComponent element) throws IOException
- Throws:
IOException
-
composeRelatedPersonCommunicationComponentProperties
protected void composeRelatedPersonCommunicationComponentProperties(RelatedPerson.RelatedPersonCommunicationComponent element) throws IOException
- Throws:
IOException
-
composeRequestGroup
protected void composeRequestGroup(String name, RequestGroup element) throws IOException
- Throws:
IOException
-
composeRequestGroupProperties
protected void composeRequestGroupProperties(RequestGroup element) throws IOException
- Throws:
IOException
-
composeRequestGroupActionComponent
protected void composeRequestGroupActionComponent(String name, RequestGroup.RequestGroupActionComponent element) throws IOException
- Throws:
IOException
-
composeRequestGroupActionComponentProperties
protected void composeRequestGroupActionComponentProperties(RequestGroup.RequestGroupActionComponent element) throws IOException
- Throws:
IOException
-
composeRequestGroupActionConditionComponent
protected void composeRequestGroupActionConditionComponent(String name, RequestGroup.RequestGroupActionConditionComponent element) throws IOException
- Throws:
IOException
-
composeRequestGroupActionConditionComponentProperties
protected void composeRequestGroupActionConditionComponentProperties(RequestGroup.RequestGroupActionConditionComponent element) throws IOException
- Throws:
IOException
-
composeRequestGroupActionRelatedActionComponent
protected void composeRequestGroupActionRelatedActionComponent(String name, RequestGroup.RequestGroupActionRelatedActionComponent element) throws IOException
- Throws:
IOException
-
composeRequestGroupActionRelatedActionComponentProperties
protected void composeRequestGroupActionRelatedActionComponentProperties(RequestGroup.RequestGroupActionRelatedActionComponent element) throws IOException
- Throws:
IOException
-
composeResearchDefinition
protected void composeResearchDefinition(String name, ResearchDefinition element) throws IOException
- Throws:
IOException
-
composeResearchDefinitionProperties
protected void composeResearchDefinitionProperties(ResearchDefinition element) throws IOException
- Throws:
IOException
-
composeResearchElementDefinition
protected void composeResearchElementDefinition(String name, ResearchElementDefinition element) throws IOException
- Throws:
IOException
-
composeResearchElementDefinitionProperties
protected void composeResearchElementDefinitionProperties(ResearchElementDefinition element) throws IOException
- Throws:
IOException
-
composeResearchElementDefinitionCharacteristicComponent
protected void composeResearchElementDefinitionCharacteristicComponent(String name, ResearchElementDefinition.ResearchElementDefinitionCharacteristicComponent element) throws IOException
- Throws:
IOException
-
composeResearchElementDefinitionCharacteristicComponentProperties
protected void composeResearchElementDefinitionCharacteristicComponentProperties(ResearchElementDefinition.ResearchElementDefinitionCharacteristicComponent element) throws IOException
- Throws:
IOException
-
composeResearchStudy
protected void composeResearchStudy(String name, ResearchStudy element) throws IOException
- Throws:
IOException
-
composeResearchStudyProperties
protected void composeResearchStudyProperties(ResearchStudy element) throws IOException
- Throws:
IOException
-
composeResearchStudyArmComponent
protected void composeResearchStudyArmComponent(String name, ResearchStudy.ResearchStudyArmComponent element) throws IOException
- Throws:
IOException
-
composeResearchStudyArmComponentProperties
protected void composeResearchStudyArmComponentProperties(ResearchStudy.ResearchStudyArmComponent element) throws IOException
- Throws:
IOException
-
composeResearchStudyObjectiveComponent
protected void composeResearchStudyObjectiveComponent(String name, ResearchStudy.ResearchStudyObjectiveComponent element) throws IOException
- Throws:
IOException
-
composeResearchStudyObjectiveComponentProperties
protected void composeResearchStudyObjectiveComponentProperties(ResearchStudy.ResearchStudyObjectiveComponent element) throws IOException
- Throws:
IOException
-
composeResearchSubject
protected void composeResearchSubject(String name, ResearchSubject element) throws IOException
- Throws:
IOException
-
composeResearchSubjectProperties
protected void composeResearchSubjectProperties(ResearchSubject element) throws IOException
- Throws:
IOException
-
composeRiskAssessment
protected void composeRiskAssessment(String name, RiskAssessment element) throws IOException
- Throws:
IOException
-
composeRiskAssessmentProperties
protected void composeRiskAssessmentProperties(RiskAssessment element) throws IOException
- Throws:
IOException
-
composeRiskAssessmentPredictionComponent
protected void composeRiskAssessmentPredictionComponent(String name, RiskAssessment.RiskAssessmentPredictionComponent element) throws IOException
- Throws:
IOException
-
composeRiskAssessmentPredictionComponentProperties
protected void composeRiskAssessmentPredictionComponentProperties(RiskAssessment.RiskAssessmentPredictionComponent element) throws IOException
- Throws:
IOException
-
composeSchedule
protected void composeSchedule(String name, Schedule element) throws IOException
- Throws:
IOException
-
composeScheduleProperties
protected void composeScheduleProperties(Schedule element) throws IOException
- Throws:
IOException
-
composeSearchParameter
protected void composeSearchParameter(String name, SearchParameter element) throws IOException
- Throws:
IOException
-
composeSearchParameterProperties
protected void composeSearchParameterProperties(SearchParameter element) throws IOException
- Throws:
IOException
-
composeSearchParameterComponentComponent
protected void composeSearchParameterComponentComponent(String name, SearchParameter.SearchParameterComponentComponent element) throws IOException
- Throws:
IOException
-
composeSearchParameterComponentComponentProperties
protected void composeSearchParameterComponentComponentProperties(SearchParameter.SearchParameterComponentComponent element) throws IOException
- Throws:
IOException
-
composeServiceRequest
protected void composeServiceRequest(String name, ServiceRequest element) throws IOException
- Throws:
IOException
-
composeServiceRequestProperties
protected void composeServiceRequestProperties(ServiceRequest element) throws IOException
- Throws:
IOException
-
composeSlot
protected void composeSlot(String name, Slot element) throws IOException
- Throws:
IOException
-
composeSlotProperties
protected void composeSlotProperties(Slot element) throws IOException
- Throws:
IOException
-
composeSpecimen
protected void composeSpecimen(String name, Specimen element) throws IOException
- Throws:
IOException
-
composeSpecimenProperties
protected void composeSpecimenProperties(Specimen element) throws IOException
- Throws:
IOException
-
composeSpecimenCollectionComponent
protected void composeSpecimenCollectionComponent(String name, Specimen.SpecimenCollectionComponent element) throws IOException
- Throws:
IOException
-
composeSpecimenCollectionComponentProperties
protected void composeSpecimenCollectionComponentProperties(Specimen.SpecimenCollectionComponent element) throws IOException
- Throws:
IOException
-
composeSpecimenProcessingComponent
protected void composeSpecimenProcessingComponent(String name, Specimen.SpecimenProcessingComponent element) throws IOException
- Throws:
IOException
-
composeSpecimenProcessingComponentProperties
protected void composeSpecimenProcessingComponentProperties(Specimen.SpecimenProcessingComponent element) throws IOException
- Throws:
IOException
-
composeSpecimenContainerComponent
protected void composeSpecimenContainerComponent(String name, Specimen.SpecimenContainerComponent element) throws IOException
- Throws:
IOException
-
composeSpecimenContainerComponentProperties
protected void composeSpecimenContainerComponentProperties(Specimen.SpecimenContainerComponent element) throws IOException
- Throws:
IOException
-
composeSpecimenDefinition
protected void composeSpecimenDefinition(String name, SpecimenDefinition element) throws IOException
- Throws:
IOException
-
composeSpecimenDefinitionProperties
protected void composeSpecimenDefinitionProperties(SpecimenDefinition element) throws IOException
- Throws:
IOException
-
composeSpecimenDefinitionTypeTestedComponent
protected void composeSpecimenDefinitionTypeTestedComponent(String name, SpecimenDefinition.SpecimenDefinitionTypeTestedComponent element) throws IOException
- Throws:
IOException
-
composeSpecimenDefinitionTypeTestedComponentProperties
protected void composeSpecimenDefinitionTypeTestedComponentProperties(SpecimenDefinition.SpecimenDefinitionTypeTestedComponent element) throws IOException
- Throws:
IOException
-
composeSpecimenDefinitionTypeTestedContainerComponent
protected void composeSpecimenDefinitionTypeTestedContainerComponent(String name, SpecimenDefinition.SpecimenDefinitionTypeTestedContainerComponent element) throws IOException
- Throws:
IOException
-
composeSpecimenDefinitionTypeTestedContainerComponentProperties
protected void composeSpecimenDefinitionTypeTestedContainerComponentProperties(SpecimenDefinition.SpecimenDefinitionTypeTestedContainerComponent element) throws IOException
- Throws:
IOException
-
composeSpecimenDefinitionTypeTestedContainerAdditiveComponent
protected void composeSpecimenDefinitionTypeTestedContainerAdditiveComponent(String name, SpecimenDefinition.SpecimenDefinitionTypeTestedContainerAdditiveComponent element) throws IOException
- Throws:
IOException
-
composeSpecimenDefinitionTypeTestedContainerAdditiveComponentProperties
protected void composeSpecimenDefinitionTypeTestedContainerAdditiveComponentProperties(SpecimenDefinition.SpecimenDefinitionTypeTestedContainerAdditiveComponent element) throws IOException
- Throws:
IOException
-
composeSpecimenDefinitionTypeTestedHandlingComponent
protected void composeSpecimenDefinitionTypeTestedHandlingComponent(String name, SpecimenDefinition.SpecimenDefinitionTypeTestedHandlingComponent element) throws IOException
- Throws:
IOException
-
composeSpecimenDefinitionTypeTestedHandlingComponentProperties
protected void composeSpecimenDefinitionTypeTestedHandlingComponentProperties(SpecimenDefinition.SpecimenDefinitionTypeTestedHandlingComponent element) throws IOException
- Throws:
IOException
-
composeStructureDefinition
protected void composeStructureDefinition(String name, StructureDefinition element) throws IOException
- Throws:
IOException
-
composeStructureDefinitionProperties
protected void composeStructureDefinitionProperties(StructureDefinition element) throws IOException
- Throws:
IOException
-
composeStructureDefinitionMappingComponent
protected void composeStructureDefinitionMappingComponent(String name, StructureDefinition.StructureDefinitionMappingComponent element) throws IOException
- Throws:
IOException
-
composeStructureDefinitionMappingComponentProperties
protected void composeStructureDefinitionMappingComponentProperties(StructureDefinition.StructureDefinitionMappingComponent element) throws IOException
- Throws:
IOException
-
composeStructureDefinitionContextComponent
protected void composeStructureDefinitionContextComponent(String name, StructureDefinition.StructureDefinitionContextComponent element) throws IOException
- Throws:
IOException
-
composeStructureDefinitionContextComponentProperties
protected void composeStructureDefinitionContextComponentProperties(StructureDefinition.StructureDefinitionContextComponent element) throws IOException
- Throws:
IOException
-
composeStructureDefinitionSnapshotComponent
protected void composeStructureDefinitionSnapshotComponent(String name, StructureDefinition.StructureDefinitionSnapshotComponent element) throws IOException
- Throws:
IOException
-
composeStructureDefinitionSnapshotComponentProperties
protected void composeStructureDefinitionSnapshotComponentProperties(StructureDefinition.StructureDefinitionSnapshotComponent element) throws IOException
- Throws:
IOException
-
composeStructureDefinitionDifferentialComponent
protected void composeStructureDefinitionDifferentialComponent(String name, StructureDefinition.StructureDefinitionDifferentialComponent element) throws IOException
- Throws:
IOException
-
composeStructureDefinitionDifferentialComponentProperties
protected void composeStructureDefinitionDifferentialComponentProperties(StructureDefinition.StructureDefinitionDifferentialComponent element) throws IOException
- Throws:
IOException
-
composeStructureMap
protected void composeStructureMap(String name, StructureMap element) throws IOException
- Throws:
IOException
-
composeStructureMapProperties
protected void composeStructureMapProperties(StructureMap element) throws IOException
- Throws:
IOException
-
composeStructureMapStructureComponent
protected void composeStructureMapStructureComponent(String name, StructureMap.StructureMapStructureComponent element) throws IOException
- Throws:
IOException
-
composeStructureMapStructureComponentProperties
protected void composeStructureMapStructureComponentProperties(StructureMap.StructureMapStructureComponent element) throws IOException
- Throws:
IOException
-
composeStructureMapGroupComponent
protected void composeStructureMapGroupComponent(String name, StructureMap.StructureMapGroupComponent element) throws IOException
- Throws:
IOException
-
composeStructureMapGroupComponentProperties
protected void composeStructureMapGroupComponentProperties(StructureMap.StructureMapGroupComponent element) throws IOException
- Throws:
IOException
-
composeStructureMapGroupInputComponent
protected void composeStructureMapGroupInputComponent(String name, StructureMap.StructureMapGroupInputComponent element) throws IOException
- Throws:
IOException
-
composeStructureMapGroupInputComponentProperties
protected void composeStructureMapGroupInputComponentProperties(StructureMap.StructureMapGroupInputComponent element) throws IOException
- Throws:
IOException
-
composeStructureMapGroupRuleComponent
protected void composeStructureMapGroupRuleComponent(String name, StructureMap.StructureMapGroupRuleComponent element) throws IOException
- Throws:
IOException
-
composeStructureMapGroupRuleComponentProperties
protected void composeStructureMapGroupRuleComponentProperties(StructureMap.StructureMapGroupRuleComponent element) throws IOException
- Throws:
IOException
-
composeStructureMapGroupRuleSourceComponent
protected void composeStructureMapGroupRuleSourceComponent(String name, StructureMap.StructureMapGroupRuleSourceComponent element) throws IOException
- Throws:
IOException
-
composeStructureMapGroupRuleSourceComponentProperties
protected void composeStructureMapGroupRuleSourceComponentProperties(StructureMap.StructureMapGroupRuleSourceComponent element) throws IOException
- Throws:
IOException
-
composeStructureMapGroupRuleTargetComponent
protected void composeStructureMapGroupRuleTargetComponent(String name, StructureMap.StructureMapGroupRuleTargetComponent element) throws IOException
- Throws:
IOException
-
composeStructureMapGroupRuleTargetComponentProperties
protected void composeStructureMapGroupRuleTargetComponentProperties(StructureMap.StructureMapGroupRuleTargetComponent element) throws IOException
- Throws:
IOException
-
composeStructureMapGroupRuleTargetParameterComponent
protected void composeStructureMapGroupRuleTargetParameterComponent(String name, StructureMap.StructureMapGroupRuleTargetParameterComponent element) throws IOException
- Throws:
IOException
-
composeStructureMapGroupRuleTargetParameterComponentProperties
protected void composeStructureMapGroupRuleTargetParameterComponentProperties(StructureMap.StructureMapGroupRuleTargetParameterComponent element) throws IOException
- Throws:
IOException
-
composeStructureMapGroupRuleDependentComponent
protected void composeStructureMapGroupRuleDependentComponent(String name, StructureMap.StructureMapGroupRuleDependentComponent element) throws IOException
- Throws:
IOException
-
composeStructureMapGroupRuleDependentComponentProperties
protected void composeStructureMapGroupRuleDependentComponentProperties(StructureMap.StructureMapGroupRuleDependentComponent element) throws IOException
- Throws:
IOException
-
composeSubscription
protected void composeSubscription(String name, Subscription element) throws IOException
- Throws:
IOException
-
composeSubscriptionProperties
protected void composeSubscriptionProperties(Subscription element) throws IOException
- Throws:
IOException
-
composeSubscriptionChannelComponent
protected void composeSubscriptionChannelComponent(String name, Subscription.SubscriptionChannelComponent element) throws IOException
- Throws:
IOException
-
composeSubscriptionChannelComponentProperties
protected void composeSubscriptionChannelComponentProperties(Subscription.SubscriptionChannelComponent element) throws IOException
- Throws:
IOException
-
composeSubscriptionStatus
protected void composeSubscriptionStatus(String name, SubscriptionStatus element) throws IOException
- Throws:
IOException
-
composeSubscriptionStatusProperties
protected void composeSubscriptionStatusProperties(SubscriptionStatus element) throws IOException
- Throws:
IOException
-
composeSubscriptionStatusNotificationEventComponent
protected void composeSubscriptionStatusNotificationEventComponent(String name, SubscriptionStatus.SubscriptionStatusNotificationEventComponent element) throws IOException
- Throws:
IOException
-
composeSubscriptionStatusNotificationEventComponentProperties
protected void composeSubscriptionStatusNotificationEventComponentProperties(SubscriptionStatus.SubscriptionStatusNotificationEventComponent element) throws IOException
- Throws:
IOException
-
composeSubscriptionTopic
protected void composeSubscriptionTopic(String name, SubscriptionTopic element) throws IOException
- Throws:
IOException
-
composeSubscriptionTopicProperties
protected void composeSubscriptionTopicProperties(SubscriptionTopic element) throws IOException
- Throws:
IOException
-
composeSubscriptionTopicResourceTriggerComponent
protected void composeSubscriptionTopicResourceTriggerComponent(String name, SubscriptionTopic.SubscriptionTopicResourceTriggerComponent element) throws IOException
- Throws:
IOException
-
composeSubscriptionTopicResourceTriggerComponentProperties
protected void composeSubscriptionTopicResourceTriggerComponentProperties(SubscriptionTopic.SubscriptionTopicResourceTriggerComponent element) throws IOException
- Throws:
IOException
-
composeSubscriptionTopicResourceTriggerQueryCriteriaComponent
protected void composeSubscriptionTopicResourceTriggerQueryCriteriaComponent(String name, SubscriptionTopic.SubscriptionTopicResourceTriggerQueryCriteriaComponent element) throws IOException
- Throws:
IOException
-
composeSubscriptionTopicResourceTriggerQueryCriteriaComponentProperties
protected void composeSubscriptionTopicResourceTriggerQueryCriteriaComponentProperties(SubscriptionTopic.SubscriptionTopicResourceTriggerQueryCriteriaComponent element) throws IOException
- Throws:
IOException
-
composeSubscriptionTopicEventTriggerComponent
protected void composeSubscriptionTopicEventTriggerComponent(String name, SubscriptionTopic.SubscriptionTopicEventTriggerComponent element) throws IOException
- Throws:
IOException
-
composeSubscriptionTopicEventTriggerComponentProperties
protected void composeSubscriptionTopicEventTriggerComponentProperties(SubscriptionTopic.SubscriptionTopicEventTriggerComponent element) throws IOException
- Throws:
IOException
-
composeSubscriptionTopicCanFilterByComponent
protected void composeSubscriptionTopicCanFilterByComponent(String name, SubscriptionTopic.SubscriptionTopicCanFilterByComponent element) throws IOException
- Throws:
IOException
-
composeSubscriptionTopicCanFilterByComponentProperties
protected void composeSubscriptionTopicCanFilterByComponentProperties(SubscriptionTopic.SubscriptionTopicCanFilterByComponent element) throws IOException
- Throws:
IOException
-
composeSubscriptionTopicNotificationShapeComponent
protected void composeSubscriptionTopicNotificationShapeComponent(String name, SubscriptionTopic.SubscriptionTopicNotificationShapeComponent element) throws IOException
- Throws:
IOException
-
composeSubscriptionTopicNotificationShapeComponentProperties
protected void composeSubscriptionTopicNotificationShapeComponentProperties(SubscriptionTopic.SubscriptionTopicNotificationShapeComponent element) throws IOException
- Throws:
IOException
-
composeSubstance
protected void composeSubstance(String name, Substance element) throws IOException
- Throws:
IOException
-
composeSubstanceProperties
protected void composeSubstanceProperties(Substance element) throws IOException
- Throws:
IOException
-
composeSubstanceInstanceComponent
protected void composeSubstanceInstanceComponent(String name, Substance.SubstanceInstanceComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceInstanceComponentProperties
protected void composeSubstanceInstanceComponentProperties(Substance.SubstanceInstanceComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceIngredientComponent
protected void composeSubstanceIngredientComponent(String name, Substance.SubstanceIngredientComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceIngredientComponentProperties
protected void composeSubstanceIngredientComponentProperties(Substance.SubstanceIngredientComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceDefinition
protected void composeSubstanceDefinition(String name, SubstanceDefinition element) throws IOException
- Throws:
IOException
-
composeSubstanceDefinitionProperties
protected void composeSubstanceDefinitionProperties(SubstanceDefinition element) throws IOException
- Throws:
IOException
-
composeSubstanceDefinitionMoietyComponent
protected void composeSubstanceDefinitionMoietyComponent(String name, SubstanceDefinition.SubstanceDefinitionMoietyComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceDefinitionMoietyComponentProperties
protected void composeSubstanceDefinitionMoietyComponentProperties(SubstanceDefinition.SubstanceDefinitionMoietyComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceDefinitionPropertyComponent
protected void composeSubstanceDefinitionPropertyComponent(String name, SubstanceDefinition.SubstanceDefinitionPropertyComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceDefinitionPropertyComponentProperties
protected void composeSubstanceDefinitionPropertyComponentProperties(SubstanceDefinition.SubstanceDefinitionPropertyComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceDefinitionMolecularWeightComponent
protected void composeSubstanceDefinitionMolecularWeightComponent(String name, SubstanceDefinition.SubstanceDefinitionMolecularWeightComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceDefinitionMolecularWeightComponentProperties
protected void composeSubstanceDefinitionMolecularWeightComponentProperties(SubstanceDefinition.SubstanceDefinitionMolecularWeightComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceDefinitionStructureComponent
protected void composeSubstanceDefinitionStructureComponent(String name, SubstanceDefinition.SubstanceDefinitionStructureComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceDefinitionStructureComponentProperties
protected void composeSubstanceDefinitionStructureComponentProperties(SubstanceDefinition.SubstanceDefinitionStructureComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceDefinitionStructureRepresentationComponent
protected void composeSubstanceDefinitionStructureRepresentationComponent(String name, SubstanceDefinition.SubstanceDefinitionStructureRepresentationComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceDefinitionStructureRepresentationComponentProperties
protected void composeSubstanceDefinitionStructureRepresentationComponentProperties(SubstanceDefinition.SubstanceDefinitionStructureRepresentationComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceDefinitionCodeComponent
protected void composeSubstanceDefinitionCodeComponent(String name, SubstanceDefinition.SubstanceDefinitionCodeComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceDefinitionCodeComponentProperties
protected void composeSubstanceDefinitionCodeComponentProperties(SubstanceDefinition.SubstanceDefinitionCodeComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceDefinitionNameComponent
protected void composeSubstanceDefinitionNameComponent(String name, SubstanceDefinition.SubstanceDefinitionNameComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceDefinitionNameComponentProperties
protected void composeSubstanceDefinitionNameComponentProperties(SubstanceDefinition.SubstanceDefinitionNameComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceDefinitionNameOfficialComponent
protected void composeSubstanceDefinitionNameOfficialComponent(String name, SubstanceDefinition.SubstanceDefinitionNameOfficialComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceDefinitionNameOfficialComponentProperties
protected void composeSubstanceDefinitionNameOfficialComponentProperties(SubstanceDefinition.SubstanceDefinitionNameOfficialComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceDefinitionRelationshipComponent
protected void composeSubstanceDefinitionRelationshipComponent(String name, SubstanceDefinition.SubstanceDefinitionRelationshipComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceDefinitionRelationshipComponentProperties
protected void composeSubstanceDefinitionRelationshipComponentProperties(SubstanceDefinition.SubstanceDefinitionRelationshipComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceDefinitionSourceMaterialComponent
protected void composeSubstanceDefinitionSourceMaterialComponent(String name, SubstanceDefinition.SubstanceDefinitionSourceMaterialComponent element) throws IOException
- Throws:
IOException
-
composeSubstanceDefinitionSourceMaterialComponentProperties
protected void composeSubstanceDefinitionSourceMaterialComponentProperties(SubstanceDefinition.SubstanceDefinitionSourceMaterialComponent element) throws IOException
- Throws:
IOException
-
composeSupplyDelivery
protected void composeSupplyDelivery(String name, SupplyDelivery element) throws IOException
- Throws:
IOException
-
composeSupplyDeliveryProperties
protected void composeSupplyDeliveryProperties(SupplyDelivery element) throws IOException
- Throws:
IOException
-
composeSupplyDeliverySuppliedItemComponent
protected void composeSupplyDeliverySuppliedItemComponent(String name, SupplyDelivery.SupplyDeliverySuppliedItemComponent element) throws IOException
- Throws:
IOException
-
composeSupplyDeliverySuppliedItemComponentProperties
protected void composeSupplyDeliverySuppliedItemComponentProperties(SupplyDelivery.SupplyDeliverySuppliedItemComponent element) throws IOException
- Throws:
IOException
-
composeSupplyRequest
protected void composeSupplyRequest(String name, SupplyRequest element) throws IOException
- Throws:
IOException
-
composeSupplyRequestProperties
protected void composeSupplyRequestProperties(SupplyRequest element) throws IOException
- Throws:
IOException
-
composeSupplyRequestParameterComponent
protected void composeSupplyRequestParameterComponent(String name, SupplyRequest.SupplyRequestParameterComponent element) throws IOException
- Throws:
IOException
-
composeSupplyRequestParameterComponentProperties
protected void composeSupplyRequestParameterComponentProperties(SupplyRequest.SupplyRequestParameterComponent element) throws IOException
- Throws:
IOException
-
composeTask
protected void composeTask(String name, Task element) throws IOException
- Throws:
IOException
-
composeTaskProperties
protected void composeTaskProperties(Task element) throws IOException
- Throws:
IOException
-
composeTaskRestrictionComponent
protected void composeTaskRestrictionComponent(String name, Task.TaskRestrictionComponent element) throws IOException
- Throws:
IOException
-
composeTaskRestrictionComponentProperties
protected void composeTaskRestrictionComponentProperties(Task.TaskRestrictionComponent element) throws IOException
- Throws:
IOException
-
composeParameterComponent
protected void composeParameterComponent(String name, Task.ParameterComponent element) throws IOException
- Throws:
IOException
-
composeParameterComponentProperties
protected void composeParameterComponentProperties(Task.ParameterComponent element) throws IOException
- Throws:
IOException
-
composeTaskOutputComponent
protected void composeTaskOutputComponent(String name, Task.TaskOutputComponent element) throws IOException
- Throws:
IOException
-
composeTaskOutputComponentProperties
protected void composeTaskOutputComponentProperties(Task.TaskOutputComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilities
protected void composeTerminologyCapabilities(String name, TerminologyCapabilities element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesProperties
protected void composeTerminologyCapabilitiesProperties(TerminologyCapabilities element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesSoftwareComponent
protected void composeTerminologyCapabilitiesSoftwareComponent(String name, TerminologyCapabilities.TerminologyCapabilitiesSoftwareComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesSoftwareComponentProperties
protected void composeTerminologyCapabilitiesSoftwareComponentProperties(TerminologyCapabilities.TerminologyCapabilitiesSoftwareComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesImplementationComponent
protected void composeTerminologyCapabilitiesImplementationComponent(String name, TerminologyCapabilities.TerminologyCapabilitiesImplementationComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesImplementationComponentProperties
protected void composeTerminologyCapabilitiesImplementationComponentProperties(TerminologyCapabilities.TerminologyCapabilitiesImplementationComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesCodeSystemComponent
protected void composeTerminologyCapabilitiesCodeSystemComponent(String name, TerminologyCapabilities.TerminologyCapabilitiesCodeSystemComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesCodeSystemComponentProperties
protected void composeTerminologyCapabilitiesCodeSystemComponentProperties(TerminologyCapabilities.TerminologyCapabilitiesCodeSystemComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesCodeSystemVersionComponent
protected void composeTerminologyCapabilitiesCodeSystemVersionComponent(String name, TerminologyCapabilities.TerminologyCapabilitiesCodeSystemVersionComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesCodeSystemVersionComponentProperties
protected void composeTerminologyCapabilitiesCodeSystemVersionComponentProperties(TerminologyCapabilities.TerminologyCapabilitiesCodeSystemVersionComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesCodeSystemVersionFilterComponent
protected void composeTerminologyCapabilitiesCodeSystemVersionFilterComponent(String name, TerminologyCapabilities.TerminologyCapabilitiesCodeSystemVersionFilterComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesCodeSystemVersionFilterComponentProperties
protected void composeTerminologyCapabilitiesCodeSystemVersionFilterComponentProperties(TerminologyCapabilities.TerminologyCapabilitiesCodeSystemVersionFilterComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesExpansionComponent
protected void composeTerminologyCapabilitiesExpansionComponent(String name, TerminologyCapabilities.TerminologyCapabilitiesExpansionComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesExpansionComponentProperties
protected void composeTerminologyCapabilitiesExpansionComponentProperties(TerminologyCapabilities.TerminologyCapabilitiesExpansionComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesExpansionParameterComponent
protected void composeTerminologyCapabilitiesExpansionParameterComponent(String name, TerminologyCapabilities.TerminologyCapabilitiesExpansionParameterComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesExpansionParameterComponentProperties
protected void composeTerminologyCapabilitiesExpansionParameterComponentProperties(TerminologyCapabilities.TerminologyCapabilitiesExpansionParameterComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesValidateCodeComponent
protected void composeTerminologyCapabilitiesValidateCodeComponent(String name, TerminologyCapabilities.TerminologyCapabilitiesValidateCodeComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesValidateCodeComponentProperties
protected void composeTerminologyCapabilitiesValidateCodeComponentProperties(TerminologyCapabilities.TerminologyCapabilitiesValidateCodeComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesTranslationComponent
protected void composeTerminologyCapabilitiesTranslationComponent(String name, TerminologyCapabilities.TerminologyCapabilitiesTranslationComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesTranslationComponentProperties
protected void composeTerminologyCapabilitiesTranslationComponentProperties(TerminologyCapabilities.TerminologyCapabilitiesTranslationComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesClosureComponent
protected void composeTerminologyCapabilitiesClosureComponent(String name, TerminologyCapabilities.TerminologyCapabilitiesClosureComponent element) throws IOException
- Throws:
IOException
-
composeTerminologyCapabilitiesClosureComponentProperties
protected void composeTerminologyCapabilitiesClosureComponentProperties(TerminologyCapabilities.TerminologyCapabilitiesClosureComponent element) throws IOException
- Throws:
IOException
-
composeTestReport
protected void composeTestReport(String name, TestReport element) throws IOException
- Throws:
IOException
-
composeTestReportProperties
protected void composeTestReportProperties(TestReport element) throws IOException
- Throws:
IOException
-
composeTestReportParticipantComponent
protected void composeTestReportParticipantComponent(String name, TestReport.TestReportParticipantComponent element) throws IOException
- Throws:
IOException
-
composeTestReportParticipantComponentProperties
protected void composeTestReportParticipantComponentProperties(TestReport.TestReportParticipantComponent element) throws IOException
- Throws:
IOException
-
composeTestReportSetupComponent
protected void composeTestReportSetupComponent(String name, TestReport.TestReportSetupComponent element) throws IOException
- Throws:
IOException
-
composeTestReportSetupComponentProperties
protected void composeTestReportSetupComponentProperties(TestReport.TestReportSetupComponent element) throws IOException
- Throws:
IOException
-
composeSetupActionComponent
protected void composeSetupActionComponent(String name, TestReport.SetupActionComponent element) throws IOException
- Throws:
IOException
-
composeSetupActionComponentProperties
protected void composeSetupActionComponentProperties(TestReport.SetupActionComponent element) throws IOException
- Throws:
IOException
-
composeSetupActionOperationComponent
protected void composeSetupActionOperationComponent(String name, TestReport.SetupActionOperationComponent element) throws IOException
- Throws:
IOException
-
composeSetupActionOperationComponentProperties
protected void composeSetupActionOperationComponentProperties(TestReport.SetupActionOperationComponent element) throws IOException
- Throws:
IOException
-
composeSetupActionAssertComponent
protected void composeSetupActionAssertComponent(String name, TestReport.SetupActionAssertComponent element) throws IOException
- Throws:
IOException
-
composeSetupActionAssertComponentProperties
protected void composeSetupActionAssertComponentProperties(TestReport.SetupActionAssertComponent element) throws IOException
- Throws:
IOException
-
composeTestReportTestComponent
protected void composeTestReportTestComponent(String name, TestReport.TestReportTestComponent element) throws IOException
- Throws:
IOException
-
composeTestReportTestComponentProperties
protected void composeTestReportTestComponentProperties(TestReport.TestReportTestComponent element) throws IOException
- Throws:
IOException
-
composeTestActionComponent
protected void composeTestActionComponent(String name, TestReport.TestActionComponent element) throws IOException
- Throws:
IOException
-
composeTestActionComponentProperties
protected void composeTestActionComponentProperties(TestReport.TestActionComponent element) throws IOException
- Throws:
IOException
-
composeTestReportTeardownComponent
protected void composeTestReportTeardownComponent(String name, TestReport.TestReportTeardownComponent element) throws IOException
- Throws:
IOException
-
composeTestReportTeardownComponentProperties
protected void composeTestReportTeardownComponentProperties(TestReport.TestReportTeardownComponent element) throws IOException
- Throws:
IOException
-
composeTeardownActionComponent
protected void composeTeardownActionComponent(String name, TestReport.TeardownActionComponent element) throws IOException
- Throws:
IOException
-
composeTeardownActionComponentProperties
protected void composeTeardownActionComponentProperties(TestReport.TeardownActionComponent element) throws IOException
- Throws:
IOException
-
composeTestScript
protected void composeTestScript(String name, TestScript element) throws IOException
- Throws:
IOException
-
composeTestScriptProperties
protected void composeTestScriptProperties(TestScript element) throws IOException
- Throws:
IOException
-
composeTestScriptOriginComponent
protected void composeTestScriptOriginComponent(String name, TestScript.TestScriptOriginComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptOriginComponentProperties
protected void composeTestScriptOriginComponentProperties(TestScript.TestScriptOriginComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptDestinationComponent
protected void composeTestScriptDestinationComponent(String name, TestScript.TestScriptDestinationComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptDestinationComponentProperties
protected void composeTestScriptDestinationComponentProperties(TestScript.TestScriptDestinationComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptMetadataComponent
protected void composeTestScriptMetadataComponent(String name, TestScript.TestScriptMetadataComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptMetadataComponentProperties
protected void composeTestScriptMetadataComponentProperties(TestScript.TestScriptMetadataComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptMetadataLinkComponent
protected void composeTestScriptMetadataLinkComponent(String name, TestScript.TestScriptMetadataLinkComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptMetadataLinkComponentProperties
protected void composeTestScriptMetadataLinkComponentProperties(TestScript.TestScriptMetadataLinkComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptMetadataCapabilityComponent
protected void composeTestScriptMetadataCapabilityComponent(String name, TestScript.TestScriptMetadataCapabilityComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptMetadataCapabilityComponentProperties
protected void composeTestScriptMetadataCapabilityComponentProperties(TestScript.TestScriptMetadataCapabilityComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptFixtureComponent
protected void composeTestScriptFixtureComponent(String name, TestScript.TestScriptFixtureComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptFixtureComponentProperties
protected void composeTestScriptFixtureComponentProperties(TestScript.TestScriptFixtureComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptVariableComponent
protected void composeTestScriptVariableComponent(String name, TestScript.TestScriptVariableComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptVariableComponentProperties
protected void composeTestScriptVariableComponentProperties(TestScript.TestScriptVariableComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptSetupComponent
protected void composeTestScriptSetupComponent(String name, TestScript.TestScriptSetupComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptSetupComponentProperties
protected void composeTestScriptSetupComponentProperties(TestScript.TestScriptSetupComponent element) throws IOException
- Throws:
IOException
-
composeSetupActionComponent
protected void composeSetupActionComponent(String name, TestScript.SetupActionComponent element) throws IOException
- Throws:
IOException
-
composeSetupActionComponentProperties
protected void composeSetupActionComponentProperties(TestScript.SetupActionComponent element) throws IOException
- Throws:
IOException
-
composeSetupActionOperationComponent
protected void composeSetupActionOperationComponent(String name, TestScript.SetupActionOperationComponent element) throws IOException
- Throws:
IOException
-
composeSetupActionOperationComponentProperties
protected void composeSetupActionOperationComponentProperties(TestScript.SetupActionOperationComponent element) throws IOException
- Throws:
IOException
-
composeSetupActionOperationRequestHeaderComponent
protected void composeSetupActionOperationRequestHeaderComponent(String name, TestScript.SetupActionOperationRequestHeaderComponent element) throws IOException
- Throws:
IOException
-
composeSetupActionOperationRequestHeaderComponentProperties
protected void composeSetupActionOperationRequestHeaderComponentProperties(TestScript.SetupActionOperationRequestHeaderComponent element) throws IOException
- Throws:
IOException
-
composeSetupActionAssertComponent
protected void composeSetupActionAssertComponent(String name, TestScript.SetupActionAssertComponent element) throws IOException
- Throws:
IOException
-
composeSetupActionAssertComponentProperties
protected void composeSetupActionAssertComponentProperties(TestScript.SetupActionAssertComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptTestComponent
protected void composeTestScriptTestComponent(String name, TestScript.TestScriptTestComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptTestComponentProperties
protected void composeTestScriptTestComponentProperties(TestScript.TestScriptTestComponent element) throws IOException
- Throws:
IOException
-
composeTestActionComponent
protected void composeTestActionComponent(String name, TestScript.TestActionComponent element) throws IOException
- Throws:
IOException
-
composeTestActionComponentProperties
protected void composeTestActionComponentProperties(TestScript.TestActionComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptTeardownComponent
protected void composeTestScriptTeardownComponent(String name, TestScript.TestScriptTeardownComponent element) throws IOException
- Throws:
IOException
-
composeTestScriptTeardownComponentProperties
protected void composeTestScriptTeardownComponentProperties(TestScript.TestScriptTeardownComponent element) throws IOException
- Throws:
IOException
-
composeTeardownActionComponent
protected void composeTeardownActionComponent(String name, TestScript.TeardownActionComponent element) throws IOException
- Throws:
IOException
-
composeTeardownActionComponentProperties
protected void composeTeardownActionComponentProperties(TestScript.TeardownActionComponent element) throws IOException
- Throws:
IOException
-
composeValueSet
protected void composeValueSet(String name, ValueSet element) throws IOException
- Throws:
IOException
-
composeValueSetProperties
protected void composeValueSetProperties(ValueSet element) throws IOException
- Throws:
IOException
-
composeValueSetComposeComponent
protected void composeValueSetComposeComponent(String name, ValueSet.ValueSetComposeComponent element) throws IOException
- Throws:
IOException
-
composeValueSetComposeComponentProperties
protected void composeValueSetComposeComponentProperties(ValueSet.ValueSetComposeComponent element) throws IOException
- Throws:
IOException
-
composeConceptSetComponent
protected void composeConceptSetComponent(String name, ValueSet.ConceptSetComponent element) throws IOException
- Throws:
IOException
-
composeConceptSetComponentProperties
protected void composeConceptSetComponentProperties(ValueSet.ConceptSetComponent element) throws IOException
- Throws:
IOException
-
composeConceptReferenceComponent
protected void composeConceptReferenceComponent(String name, ValueSet.ConceptReferenceComponent element) throws IOException
- Throws:
IOException
-
composeConceptReferenceComponentProperties
protected void composeConceptReferenceComponentProperties(ValueSet.ConceptReferenceComponent element) throws IOException
- Throws:
IOException
-
composeConceptReferenceDesignationComponent
protected void composeConceptReferenceDesignationComponent(String name, ValueSet.ConceptReferenceDesignationComponent element) throws IOException
- Throws:
IOException
-
composeConceptReferenceDesignationComponentProperties
protected void composeConceptReferenceDesignationComponentProperties(ValueSet.ConceptReferenceDesignationComponent element) throws IOException
- Throws:
IOException
-
composeConceptSetFilterComponent
protected void composeConceptSetFilterComponent(String name, ValueSet.ConceptSetFilterComponent element) throws IOException
- Throws:
IOException
-
composeConceptSetFilterComponentProperties
protected void composeConceptSetFilterComponentProperties(ValueSet.ConceptSetFilterComponent element) throws IOException
- Throws:
IOException
-
composeValueSetExpansionComponent
protected void composeValueSetExpansionComponent(String name, ValueSet.ValueSetExpansionComponent element) throws IOException
- Throws:
IOException
-
composeValueSetExpansionComponentProperties
protected void composeValueSetExpansionComponentProperties(ValueSet.ValueSetExpansionComponent element) throws IOException
- Throws:
IOException
-
composeValueSetExpansionParameterComponent
protected void composeValueSetExpansionParameterComponent(String name, ValueSet.ValueSetExpansionParameterComponent element) throws IOException
- Throws:
IOException
-
composeValueSetExpansionParameterComponentProperties
protected void composeValueSetExpansionParameterComponentProperties(ValueSet.ValueSetExpansionParameterComponent element) throws IOException
- Throws:
IOException
-
composeValueSetExpansionContainsComponent
protected void composeValueSetExpansionContainsComponent(String name, ValueSet.ValueSetExpansionContainsComponent element) throws IOException
- Throws:
IOException
-
composeValueSetExpansionContainsComponentProperties
protected void composeValueSetExpansionContainsComponentProperties(ValueSet.ValueSetExpansionContainsComponent element) throws IOException
- Throws:
IOException
-
composeVerificationResult
protected void composeVerificationResult(String name, VerificationResult element) throws IOException
- Throws:
IOException
-
composeVerificationResultProperties
protected void composeVerificationResultProperties(VerificationResult element) throws IOException
- Throws:
IOException
-
composeVerificationResultPrimarySourceComponent
protected void composeVerificationResultPrimarySourceComponent(String name, VerificationResult.VerificationResultPrimarySourceComponent element) throws IOException
- Throws:
IOException
-
composeVerificationResultPrimarySourceComponentProperties
protected void composeVerificationResultPrimarySourceComponentProperties(VerificationResult.VerificationResultPrimarySourceComponent element) throws IOException
- Throws:
IOException
-
composeVerificationResultAttestationComponent
protected void composeVerificationResultAttestationComponent(String name, VerificationResult.VerificationResultAttestationComponent element) throws IOException
- Throws:
IOException
-
composeVerificationResultAttestationComponentProperties
protected void composeVerificationResultAttestationComponentProperties(VerificationResult.VerificationResultAttestationComponent element) throws IOException
- Throws:
IOException
-
composeVerificationResultValidatorComponent
protected void composeVerificationResultValidatorComponent(String name, VerificationResult.VerificationResultValidatorComponent element) throws IOException
- Throws:
IOException
-
composeVerificationResultValidatorComponentProperties
protected void composeVerificationResultValidatorComponentProperties(VerificationResult.VerificationResultValidatorComponent element) throws IOException
- Throws:
IOException
-
composeVisionPrescription
protected void composeVisionPrescription(String name, VisionPrescription element) throws IOException
- Throws:
IOException
-
composeVisionPrescriptionProperties
protected void composeVisionPrescriptionProperties(VisionPrescription element) throws IOException
- Throws:
IOException
-
composeVisionPrescriptionLensSpecificationComponent
protected void composeVisionPrescriptionLensSpecificationComponent(String name, VisionPrescription.VisionPrescriptionLensSpecificationComponent element) throws IOException
- Throws:
IOException
-
composeVisionPrescriptionLensSpecificationComponentProperties
protected void composeVisionPrescriptionLensSpecificationComponentProperties(VisionPrescription.VisionPrescriptionLensSpecificationComponent element) throws IOException
- Throws:
IOException
-
composePrismComponent
protected void composePrismComponent(String name, VisionPrescription.PrismComponent element) throws IOException
- Throws:
IOException
-
composePrismComponentProperties
protected void composePrismComponentProperties(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, DataType type) throws IOException
- Specified by:
composeTypein classJsonParserBase- Throws:
IOException
-
composeTypeInner
protected void composeTypeInner(DataType type) throws IOException
- Specified by:
composeTypeInnerin classJsonParserBase- Throws:
IOException
-
-