Class DimensionType
- java.lang.Object
-
- network.oxalis.peppol.ubl2.jaxb.cac.DimensionType
-
public class DimensionType extends Object
Java class for DimensionType complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="DimensionType"> <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" minOccurs="0"/> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}Description" maxOccurs="unbounded" minOccurs="0"/> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}MinimumMeasure" minOccurs="0"/> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}MaximumMeasure" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected AttributeIDTypeattributeIDprotected List<DescriptionType>descriptionprotected MaximumMeasureTypemaximumMeasureprotected MeasureTypemeasureprotected MinimumMeasureTypeminimumMeasure
-
Constructor Summary
Constructors Constructor Description DimensionType()
-
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.MaximumMeasureTypegetMaximumMeasure()Gets the value of the maximumMeasure property.MeasureTypegetMeasure()Gets the value of the measure property.MinimumMeasureTypegetMinimumMeasure()Gets the value of the minimumMeasure property.voidsetAttributeID(AttributeIDType value)Sets the value of the attributeID property.voidsetMaximumMeasure(MaximumMeasureType value)Sets the value of the maximumMeasure property.voidsetMeasure(MeasureType value)Sets the value of the measure property.voidsetMinimumMeasure(MinimumMeasureType value)Sets the value of the minimumMeasure property.
-
-
-
Field Detail
-
attributeID
protected AttributeIDType attributeID
-
measure
protected MeasureType measure
-
description
protected List<DescriptionType> description
-
minimumMeasure
protected MinimumMeasureType minimumMeasure
-
maximumMeasure
protected MaximumMeasureType maximumMeasure
-
-
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- Returns:
- The value of the description property.
-
getMinimumMeasure
public MinimumMeasureType getMinimumMeasure()
Gets the value of the minimumMeasure property.- Returns:
- possible object is
MinimumMeasureType
-
setMinimumMeasure
public void setMinimumMeasure(MinimumMeasureType value)
Sets the value of the minimumMeasure property.- Parameters:
value- allowed object isMinimumMeasureType
-
getMaximumMeasure
public MaximumMeasureType getMaximumMeasure()
Gets the value of the maximumMeasure property.- Returns:
- possible object is
MaximumMeasureType
-
setMaximumMeasure
public void setMaximumMeasure(MaximumMeasureType value)
Sets the value of the maximumMeasure property.- Parameters:
value- allowed object isMaximumMeasureType
-
-