Class PhysicalAttributeType
- java.lang.Object
-
- network.oxalis.peppol.ubl2.jaxb.cac.PhysicalAttributeType
-
public class PhysicalAttributeType extends Object
Java class for PhysicalAttributeType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="PhysicalAttributeType"> <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}PositionCode" minOccurs="0"/> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}DescriptionCode" minOccurs="0"/> <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 DescriptionCodeTypedescriptionCodeprotected PositionCodeTypepositionCode
-
Constructor Summary
Constructors Constructor Description PhysicalAttributeType()
-
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.DescriptionCodeTypegetDescriptionCode()Gets the value of the descriptionCode property.PositionCodeTypegetPositionCode()Gets the value of the positionCode property.voidsetAttributeID(AttributeIDType value)Sets the value of the attributeID property.voidsetDescriptionCode(DescriptionCodeType value)Sets the value of the descriptionCode property.voidsetPositionCode(PositionCodeType value)Sets the value of the positionCode property.
-
-
-
Field Detail
-
attributeID
protected AttributeIDType attributeID
-
positionCode
protected PositionCodeType positionCode
-
descriptionCode
protected DescriptionCodeType descriptionCode
-
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
-
getPositionCode
public PositionCodeType getPositionCode()
Gets the value of the positionCode property.- Returns:
- possible object is
PositionCodeType
-
setPositionCode
public void setPositionCode(PositionCodeType value)
Sets the value of the positionCode property.- Parameters:
value- allowed object isPositionCodeType
-
getDescriptionCode
public DescriptionCodeType getDescriptionCode()
Gets the value of the descriptionCode property.- Returns:
- possible object is
DescriptionCodeType
-
setDescriptionCode
public void setDescriptionCode(DescriptionCodeType value)
Sets the value of the descriptionCode property.- Parameters:
value- allowed object isDescriptionCodeType
-
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
-
-