Package weka.core.pmml.jaxbbindings
Class ChildParent
- java.lang.Object
-
- weka.core.pmml.jaxbbindings.ChildParent
-
public class ChildParent extends java.lang.ObjectJava class for ChildParent element declaration.
The following schema fragment specifies the expected content contained within this class.
<element name="ChildParent"> <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"/> <choice> <element ref="{http://www.dmg.org/PMML-4_1}TableLocator"/> <element ref="{http://www.dmg.org/PMML-4_1}InlineTable"/> </choice> </sequence> <attribute name="childField" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="isRecursive" default="no"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="no"/> <enumeration value="yes"/> </restriction> </simpleType> </attribute> <attribute name="parentField" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="parentLevelField" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType> </element>
-
-
Constructor Summary
Constructors Constructor Description ChildParent()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetChildField()Gets the value of the childField property.java.util.List<Extension>getExtension()Gets the value of the extension property.InlineTablegetInlineTable()Gets the value of the inlineTable property.java.lang.StringgetIsRecursive()Gets the value of the isRecursive property.java.lang.StringgetParentField()Gets the value of the parentField property.java.lang.StringgetParentLevelField()Gets the value of the parentLevelField property.TableLocatorgetTableLocator()Gets the value of the tableLocator property.voidsetChildField(java.lang.String value)Sets the value of the childField property.voidsetInlineTable(InlineTable value)Sets the value of the inlineTable property.voidsetIsRecursive(java.lang.String value)Sets the value of the isRecursive property.voidsetParentField(java.lang.String value)Sets the value of the parentField property.voidsetParentLevelField(java.lang.String value)Sets the value of the parentLevelField property.voidsetTableLocator(TableLocator value)Sets the value of the tableLocator 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
-
getTableLocator
public TableLocator getTableLocator()
Gets the value of the tableLocator property.- Returns:
- possible object is
TableLocator
-
setTableLocator
public void setTableLocator(TableLocator value)
Sets the value of the tableLocator property.- Parameters:
value- allowed object isTableLocator
-
getInlineTable
public InlineTable getInlineTable()
Gets the value of the inlineTable property.- Returns:
- possible object is
InlineTable
-
setInlineTable
public void setInlineTable(InlineTable value)
Sets the value of the inlineTable property.- Parameters:
value- allowed object isInlineTable
-
getChildField
public java.lang.String getChildField()
Gets the value of the childField property.- Returns:
- possible object is
String
-
setChildField
public void setChildField(java.lang.String value)
Sets the value of the childField property.- Parameters:
value- allowed object isString
-
getIsRecursive
public java.lang.String getIsRecursive()
Gets the value of the isRecursive property.- Returns:
- possible object is
String
-
setIsRecursive
public void setIsRecursive(java.lang.String value)
Sets the value of the isRecursive property.- Parameters:
value- allowed object isString
-
getParentField
public java.lang.String getParentField()
Gets the value of the parentField property.- Returns:
- possible object is
String
-
setParentField
public void setParentField(java.lang.String value)
Sets the value of the parentField property.- Parameters:
value- allowed object isString
-
getParentLevelField
public java.lang.String getParentLevelField()
Gets the value of the parentLevelField property.- Returns:
- possible object is
String
-
setParentLevelField
public void setParentLevelField(java.lang.String value)
Sets the value of the parentLevelField property.- Parameters:
value- allowed object isString
-
-