org.projecthusky.common.hl7cdar2.ADXP Maven / Gradle / Ivy
/*
* This code is made available under the terms of the Eclipse Public License v1.0
* in the github project https://github.com/project-husky/husky there you also
* find a list of the contributors and the license information.
*
* This project has been developed further and modified by the joined working group Husky
* on the basis of the eHealth Connector opensource project from June 28, 2021,
* whereas medshare GmbH is the initial and main contributor/author of the eHealth Connector.
*
*/
// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert
// Siehe http://java.sun.com/xml/jaxb
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
// Generiert: 2020.07.09 um 01:07:39 PM CEST
//
package org.projecthusky.common.hl7cdar2;
import org.checkerframework.checker.nullness.qual.NonNull;
import javax.xml.bind.annotation.*;
import java.util.ArrayList;
import java.util.List;
/**
* A character string that may have a type-tag signifying its role in the address. Typical parts that exist in about
* every address are street, house number, or post box, postal code, city, country but other roles may be defined
* regionally, nationally, or on an enterprise level (e.g. in military addresses). Addresses are usually broken up into
* lines, which are indicated by special line-breaking delimiter elements (e.g., DEL).
*
*
*
* Java-Klasse für ADXP complex type.
*
*
* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType name="ADXP">
* <complexContent>
* <extension base="{urn:hl7-org:v3}ST">
* <attribute name="partType" type="{urn:hl7-org:v3}AddressPartType" />
* </extension>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ADXP")
@XmlSeeAlso({AdxpPostalCode.class, AdxpStreetName.class, AdxpCountry.class,
AdxpDeliveryInstallationArea.class, AdxpDirection.class, AdxpDeliveryMode.class,
AdxpUnitID.class, AdxpBuildingNumberSuffix.class, AdxpStreetAddressLine.class,
AdxpDeliveryInstallationType.class, AdxpUnitType.class, AdxpCareOf.class,
AdxpHouseNumber.class, AdxpCounty.class, AdxpCity.class, AdxpCensusTract.class,
AdxpState.class, AdxpDeliveryAddressLine.class, AdxpPrecinct.class,
AdxpHouseNumberNumeric.class, AdxpStreetNameType.class, AdxpStreetNameBase.class,
AdxpPostBox.class, AdxpDeliveryModeIdentifier.class, AdxpAdditionalLocator.class,
AdxpDeliveryInstallationQualifier.class, AdxpDelimiter.class})
public class ADXP extends ST {
@XmlAttribute(name = "partType")
protected List partType;
/**
* Default constructor
*/
public ADXP() {
}
/**
* Constructor wit param.
* @param ed the ed
*/
public ADXP(final String ed) {
super(ed);
}
/**
* Gets the value of the partType property.
*
*
* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to
* the returned list will be present inside the JAXB object. This is why there is not a
* set
method for the partType property.
*
*
* For example, to add a new item, do as follows:
* getPartType().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list {@link String }
*/
@NonNull
public List getPartType() {
if (partType == null) {
partType = new ArrayList<>();
}
return this.partType;
}
}