Package weka.core.pmml.jaxbbindings
Class TimeCycle
- java.lang.Object
-
- weka.core.pmml.jaxbbindings.TimeCycle
-
public class TimeCycle extends java.lang.ObjectJava class for TimeCycle element declaration.
The following schema fragment specifies the expected content contained within this class.
<element name="TimeCycle"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <group ref="{http://www.dmg.org/PMML-4_1}INT-ARRAY" minOccurs="0"/> </sequence> <attribute name="displayName" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> <attribute name="length" type="{http://www.dmg.org/PMML-4_1}INT-NUMBER" /> <attribute name="type" type="{http://www.dmg.org/PMML-4_1}VALID-TIME-SPEC" /> </restriction> </complexContent> </complexType> </element>
-
-
Constructor Summary
Constructors Constructor Description TimeCycle()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ArrayTypegetArray()Gets the value of the array property.java.lang.StringgetDisplayName()Gets the value of the displayName property.java.math.BigIntegergetLength()Gets the value of the length property.VALIDTIMESPECgetType()Gets the value of the type property.voidsetArray(ArrayType value)Sets the value of the array property.voidsetDisplayName(java.lang.String value)Sets the value of the displayName property.voidsetLength(java.math.BigInteger value)Sets the value of the length property.voidsetType(VALIDTIMESPEC value)Sets the value of the type property.
-
-
-
Method Detail
-
getArray
public ArrayType getArray()
Gets the value of the array property.- Returns:
- possible object is
ArrayType
-
setArray
public void setArray(ArrayType value)
Sets the value of the array property.- Parameters:
value- allowed object isArrayType
-
getDisplayName
public java.lang.String getDisplayName()
Gets the value of the displayName property.- Returns:
- possible object is
String
-
setDisplayName
public void setDisplayName(java.lang.String value)
Sets the value of the displayName property.- Parameters:
value- allowed object isString
-
getLength
public java.math.BigInteger getLength()
Gets the value of the length property.- Returns:
- possible object is
BigInteger
-
setLength
public void setLength(java.math.BigInteger value)
Sets the value of the length property.- Parameters:
value- allowed object isBigInteger
-
getType
public VALIDTIMESPEC getType()
Gets the value of the type property.- Returns:
- possible object is
VALIDTIMESPEC
-
setType
public void setType(VALIDTIMESPEC value)
Sets the value of the type property.- Parameters:
value- allowed object isVALIDTIMESPEC
-
-