Class TemperatureType
- java.lang.Object
-
- network.oxalis.peppol.ubl2.jaxb.cac.TemperatureType
-
public class TemperatureType extends Object
Java class for TemperatureType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="TemperatureType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}AttributeID"/> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}Measure"/> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}Description" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected AttributeIDTypeattributeIDprotected List<DescriptionType>descriptionprotected MeasureTypemeasure
-
Constructor Summary
Constructors Constructor Description TemperatureType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AttributeIDTypegetAttributeID()Gets the value of the attributeID property.List<DescriptionType>getDescription()Gets the value of the description property.MeasureTypegetMeasure()Gets the value of the measure property.voidsetAttributeID(AttributeIDType value)Sets the value of the attributeID property.voidsetMeasure(MeasureType value)Sets the value of the measure property.
-
-
-
Field Detail
-
attributeID
protected AttributeIDType attributeID
-
measure
protected MeasureType measure
-
description
protected List<DescriptionType> description
-
-
Method Detail
-
getAttributeID
public AttributeIDType getAttributeID()
Gets the value of the attributeID property.- Returns:
- possible object is
AttributeIDType
-
setAttributeID
public void setAttributeID(AttributeIDType value)
Sets the value of the attributeID property.- Parameters:
value- allowed object isAttributeIDType
-
getMeasure
public MeasureType getMeasure()
Gets the value of the measure property.- Returns:
- possible object is
MeasureType
-
setMeasure
public void setMeasure(MeasureType value)
Sets the value of the measure property.- Parameters:
value- allowed object isMeasureType
-
getDescription
public List<DescriptionType> getDescription()
Gets the value of the description 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
setmethod for the description property.For example, to add a new item, do as follows:
getDescription().add(newItem);Objects of the following type(s) are allowed in the list
DescriptionType
-
-