Class MeterPropertyType
- java.lang.Object
-
- network.oxalis.peppol.ubl2.jaxb.cac.MeterPropertyType
-
public class MeterPropertyType extends Object
Java class for MeterPropertyType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="MeterPropertyType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}Name" minOccurs="0"/> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}NameCode" minOccurs="0"/> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}Value" minOccurs="0"/> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}ValueQuantity" minOccurs="0"/> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}ValueQualifier" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected NameTypenameprotected NameCodeTypenameCodeprotected ValueTypevalueprotected List<ValueQualifierType>valueQualifierprotected ValueQuantityTypevalueQuantity
-
Constructor Summary
Constructors Constructor Description MeterPropertyType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description NameTypegetName()Gets the value of the name property.NameCodeTypegetNameCode()Gets the value of the nameCode property.ValueTypegetValue()Gets the value of the value property.List<ValueQualifierType>getValueQualifier()Gets the value of the valueQualifier property.ValueQuantityTypegetValueQuantity()Gets the value of the valueQuantity property.voidsetName(NameType value)Sets the value of the name property.voidsetNameCode(NameCodeType value)Sets the value of the nameCode property.voidsetValue(ValueType value)Sets the value of the value property.voidsetValueQuantity(ValueQuantityType value)Sets the value of the valueQuantity property.
-
-
-
Field Detail
-
name
protected NameType name
-
nameCode
protected NameCodeType nameCode
-
value
protected ValueType value
-
valueQuantity
protected ValueQuantityType valueQuantity
-
valueQualifier
protected List<ValueQualifierType> valueQualifier
-
-
Method Detail
-
getName
public NameType getName()
Gets the value of the name property.- Returns:
- possible object is
NameType
-
setName
public void setName(NameType value)
Sets the value of the name property.- Parameters:
value- allowed object isNameType
-
getNameCode
public NameCodeType getNameCode()
Gets the value of the nameCode property.- Returns:
- possible object is
NameCodeType
-
setNameCode
public void setNameCode(NameCodeType value)
Sets the value of the nameCode property.- Parameters:
value- allowed object isNameCodeType
-
getValue
public ValueType getValue()
Gets the value of the value property.- Returns:
- possible object is
ValueType
-
setValue
public void setValue(ValueType value)
Sets the value of the value property.- Parameters:
value- allowed object isValueType
-
getValueQuantity
public ValueQuantityType getValueQuantity()
Gets the value of the valueQuantity property.- Returns:
- possible object is
ValueQuantityType
-
setValueQuantity
public void setValueQuantity(ValueQuantityType value)
Sets the value of the valueQuantity property.- Parameters:
value- allowed object isValueQuantityType
-
getValueQualifier
public List<ValueQualifierType> getValueQualifier()
Gets the value of the valueQualifier 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 valueQualifier property.For example, to add a new item, do as follows:
getValueQualifier().add(newItem);Objects of the following type(s) are allowed in the list
ValueQualifierType
-
-