Class ValueEnumCT
- java.lang.Object
-
- fi.tut.mei.resdescapi.rdapi.model.rd.ValueEnumCT
-
public class ValueEnumCT extends Object
Value of Enum data type (IEC61131)Java class for ValueEnum_CT complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ValueEnum_CT"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/> </sequence> <attribute name="datatype" use="required" type="{https://resourcedescription.rd.tuni.fi/XMLSchema/2016}DataTypeRef_ST" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description ValueEnumCT()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDatatype()
Gets the value of the datatype property.List<String>
getName()
Gets the value of the name property.void
setDatatype(String value)
Sets the value of the datatype property.
-
-
-
Method Detail
-
getName
public List<String> getName()
Gets the value of the name 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
set
method for the name property.For example, to add a new item, do as follows:
getName().add(newItem);
Objects of the following type(s) are allowed in the list
String
-
getDatatype
public String getDatatype()
Gets the value of the datatype property.- Returns:
- possible object is
String
-
-