Class Sequence
- java.lang.Object
-
- weka.core.pmml.jaxbbindings.Sequence
-
public class Sequence extends java.lang.ObjectJava class for Sequence element declaration.
The following schema fragment specifies the expected content contained within this class.
<element name="Sequence"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> <element ref="{http://www.dmg.org/PMML-4_1}SetReference"/> <sequence maxOccurs="unbounded" minOccurs="0"> <group ref="{http://www.dmg.org/PMML-4_1}FOLLOW-SET"/> </sequence> <element ref="{http://www.dmg.org/PMML-4_1}Time" minOccurs="0"/> </sequence> <attribute name="id" use="required" type="{http://www.dmg.org/PMML-4_1}ELEMENT-ID" /> <attribute name="numberOfSets" type="{http://www.dmg.org/PMML-4_1}INT-NUMBER" /> <attribute name="occurrence" type="{http://www.dmg.org/PMML-4_1}INT-NUMBER" /> <attribute name="support" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" /> </restriction> </complexContent> </complexType> </element>
-
-
Constructor Summary
Constructors Constructor Description Sequence()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<Extension>getExtension()Gets the value of the extension property.java.util.List<java.lang.Object>getExtensionAndDelimiterAndTime()Gets the value of the extensionAndDelimiterAndTime property.java.lang.StringgetId()Gets the value of the id property.java.math.BigIntegergetNumberOfSets()Gets the value of the numberOfSets property.java.math.BigIntegergetOccurrence()Gets the value of the occurrence property.SetReferencegetSetReference()Gets the value of the setReference property.java.lang.DoublegetSupport()Gets the value of the support property.TimegetTime()Gets the value of the time property.voidsetId(java.lang.String value)Sets the value of the id property.voidsetNumberOfSets(java.math.BigInteger value)Sets the value of the numberOfSets property.voidsetOccurrence(java.math.BigInteger value)Sets the value of the occurrence property.voidsetSetReference(SetReference value)Sets the value of the setReference property.voidsetSupport(java.lang.Double value)Sets the value of the support property.voidsetTime(Time value)Sets the value of the time property.
-
-
-
Method Detail
-
getExtension
public java.util.List<Extension> getExtension()
Gets the value of the extension 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 extension property.For example, to add a new item, do as follows:
getExtension().add(newItem);Objects of the following type(s) are allowed in the list
Extension
-
getSetReference
public SetReference getSetReference()
Gets the value of the setReference property.- Returns:
- possible object is
SetReference
-
setSetReference
public void setSetReference(SetReference value)
Sets the value of the setReference property.- Parameters:
value- allowed object isSetReference
-
getExtensionAndDelimiterAndTime
public java.util.List<java.lang.Object> getExtensionAndDelimiterAndTime()
Gets the value of the extensionAndDelimiterAndTime 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 extensionAndDelimiterAndTime property.For example, to add a new item, do as follows:
getExtensionAndDelimiterAndTime().add(newItem);Objects of the following type(s) are allowed in the list
SetReferenceExtensionDelimiterTime
-
setTime
public void setTime(Time value)
Sets the value of the time property.- Parameters:
value- allowed object isTime
-
getId
public java.lang.String getId()
Gets the value of the id property.- Returns:
- possible object is
String
-
setId
public void setId(java.lang.String value)
Sets the value of the id property.- Parameters:
value- allowed object isString
-
getNumberOfSets
public java.math.BigInteger getNumberOfSets()
Gets the value of the numberOfSets property.- Returns:
- possible object is
BigInteger
-
setNumberOfSets
public void setNumberOfSets(java.math.BigInteger value)
Sets the value of the numberOfSets property.- Parameters:
value- allowed object isBigInteger
-
getOccurrence
public java.math.BigInteger getOccurrence()
Gets the value of the occurrence property.- Returns:
- possible object is
BigInteger
-
setOccurrence
public void setOccurrence(java.math.BigInteger value)
Sets the value of the occurrence property.- Parameters:
value- allowed object isBigInteger
-
getSupport
public java.lang.Double getSupport()
Gets the value of the support property.- Returns:
- possible object is
Double
-
setSupport
public void setSupport(java.lang.Double value)
Sets the value of the support property.- Parameters:
value- allowed object isDouble
-
-