public class OrderDetail extends Object
Java class for OrderDetail complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="OrderDetail">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element ref="{http://extension-point-uri/15/03}Extension" minOccurs="0"/>
<element name="Start" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
<element name="End" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
<element name="Performer" type="{http://domain-model-uri/15/04}PersonParticipation" maxOccurs="unbounded" minOccurs="0"/>
<element name="Service" type="{http://domain-model-uri/15/04}CodedValue" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected XMLGregorianCalendar |
end |
protected Extension |
extension |
protected List<PersonParticipation> |
performer |
protected List<CodedValue> |
service |
protected XMLGregorianCalendar |
start |
| Constructor and Description |
|---|
OrderDetail() |
| Modifier and Type | Method and Description |
|---|---|
XMLGregorianCalendar |
getEnd()
Gets the value of the end property.
|
Extension |
getExtension()
Gets the value of the extension property.
|
List<PersonParticipation> |
getPerformer()
Gets the value of the performer property.
|
List<CodedValue> |
getService()
Gets the value of the service property.
|
XMLGregorianCalendar |
getStart()
Gets the value of the start property.
|
void |
setEnd(XMLGregorianCalendar value)
Sets the value of the end property.
|
void |
setExtension(Extension value)
Sets the value of the extension property.
|
void |
setPerformer(List<PersonParticipation> value) |
void |
setService(List<CodedValue> value) |
void |
setStart(XMLGregorianCalendar value)
Sets the value of the start property.
|
protected Extension extension
protected XMLGregorianCalendar start
protected XMLGregorianCalendar end
protected List<PersonParticipation> performer
protected List<CodedValue> service
public Extension getExtension()
Extensionpublic void setExtension(Extension value)
value - allowed object is
Extensionpublic XMLGregorianCalendar getStart()
XMLGregorianCalendarpublic void setStart(XMLGregorianCalendar value)
value - allowed object is
XMLGregorianCalendarpublic XMLGregorianCalendar getEnd()
XMLGregorianCalendarpublic void setEnd(XMLGregorianCalendar value)
value - allowed object is
XMLGregorianCalendarpublic List<PersonParticipation> getPerformer()
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 performer property.
For example, to add a new item, do as follows:
getPerformer().add(newItem);
Objects of the following type(s) are allowed in the list
PersonParticipation
public List<CodedValue> getService()
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 service property.
For example, to add a new item, do as follows:
getService().add(newItem);
Objects of the following type(s) are allowed in the list
CodedValue
public void setPerformer(List<PersonParticipation> value)
public void setService(List<CodedValue> value)
Copyright © 2016. All rights reserved.