index
int64
repo_id
string
file_path
string
content
string
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/Discretize.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for Discretize element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="Discretize"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}DiscretizeBin" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="dataType" type="{http://www.dmg.org/PMML-4_1}DATATYPE" /> * &lt;attribute name="defaultValue" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="field" use="required" type="{http://www.dmg.org/PMML-4_1}FIELD-NAME" /> * &lt;attribute name="mapMissingTo" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "discretizeBin" }) @XmlRootElement(name = "Discretize") public class Discretize { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "DiscretizeBin", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<DiscretizeBin> discretizeBin; @XmlAttribute protected DATATYPE dataType; @XmlAttribute protected String defaultValue; @XmlAttribute(required = true) protected String field; @XmlAttribute protected String mapMissingTo; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the discretizeBin property. * * <p> * 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 <CODE>set</CODE> method for the discretizeBin property. * * <p> * For example, to add a new item, do as follows: * <pre> * getDiscretizeBin().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link DiscretizeBin } * * */ public List<DiscretizeBin> getDiscretizeBin() { if (discretizeBin == null) { discretizeBin = new ArrayList<DiscretizeBin>(); } return this.discretizeBin; } /** * Gets the value of the dataType property. * * @return * possible object is * {@link DATATYPE } * */ public DATATYPE getDataType() { return dataType; } /** * Sets the value of the dataType property. * * @param value * allowed object is * {@link DATATYPE } * */ public void setDataType(DATATYPE value) { this.dataType = value; } /** * Gets the value of the defaultValue property. * * @return * possible object is * {@link String } * */ public String getDefaultValue() { return defaultValue; } /** * Sets the value of the defaultValue property. * * @param value * allowed object is * {@link String } * */ public void setDefaultValue(String value) { this.defaultValue = value; } /** * Gets the value of the field property. * * @return * possible object is * {@link String } * */ public String getField() { return field; } /** * Sets the value of the field property. * * @param value * allowed object is * {@link String } * */ public void setField(String value) { this.field = value; } /** * Gets the value of the mapMissingTo property. * * @return * possible object is * {@link String } * */ public String getMapMissingTo() { return mapMissingTo; } /** * Sets the value of the mapMissingTo property. * * @param value * allowed object is * {@link String } * */ public void setMapMissingTo(String value) { this.mapMissingTo = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/DiscretizeBin.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for DiscretizeBin element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="DiscretizeBin"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Interval"/> * &lt;/sequence> * &lt;attribute name="binValue" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "interval" }) @XmlRootElement(name = "DiscretizeBin") public class DiscretizeBin { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "Interval", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected Interval interval; @XmlAttribute(required = true) protected String binValue; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the interval property. * * @return * possible object is * {@link Interval } * */ public Interval getInterval() { return interval; } /** * Sets the value of the interval property. * * @param value * allowed object is * {@link Interval } * */ public void setInterval(Interval value) { this.interval = value; } /** * Gets the value of the binValue property. * * @return * possible object is * {@link String } * */ public String getBinValue() { return binValue; } /** * Sets the value of the binValue property. * * @param value * allowed object is * {@link String } * */ public void setBinValue(String value) { this.binValue = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/DocumentTermMatrix.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for DocumentTermMatrix element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="DocumentTermMatrix"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Matrix"/> * &lt;/sequence> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "matrix" }) @XmlRootElement(name = "DocumentTermMatrix") public class DocumentTermMatrix { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "Matrix", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected Matrix matrix; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the matrix property. * * @return * possible object is * {@link Matrix } * */ public Matrix getMatrix() { return matrix; } /** * Sets the value of the matrix property. * * @param value * allowed object is * {@link Matrix } * */ public void setMatrix(Matrix value) { this.matrix = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/Euclidean.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for euclidean element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="euclidean"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension" }) @XmlRootElement(name = "euclidean") public class Euclidean { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/EventValues.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for EventValues element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="EventValues"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Value" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Interval" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "value", "interval" }) @XmlRootElement(name = "EventValues") public class EventValues { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "Value", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Value> value; @XmlElement(name = "Interval", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Interval> interval; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the value property. * * <p> * 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 <CODE>set</CODE> method for the value property. * * <p> * For example, to add a new item, do as follows: * <pre> * getValue().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Value } * * */ public List<Value> getValue() { if (value == null) { value = new ArrayList<Value>(); } return this.value; } /** * Gets the value of the interval property. * * <p> * 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 <CODE>set</CODE> method for the interval property. * * <p> * For example, to add a new item, do as follows: * <pre> * getInterval().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Interval } * * */ public List<Interval> getInterval() { if (interval == null) { interval = new ArrayList<Interval>(); } return this.interval; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/ExponentialSmoothing.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * <p>Java class for ExponentialSmoothing element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="ExponentialSmoothing"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Level"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Trend_ExpoSmooth" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Seasonality_ExpoSmooth" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}TimeValue" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="RMSE" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" /> * &lt;attribute name="transformation" default="none"> * &lt;simpleType> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN"> * &lt;enumeration value="none"/> * &lt;enumeration value="logarithmic"/> * &lt;enumeration value="squareroot"/> * &lt;/restriction> * &lt;/simpleType> * &lt;/attribute> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "level", "trendExpoSmooth", "seasonalityExpoSmooth", "timeValue" }) @XmlRootElement(name = "ExponentialSmoothing") public class ExponentialSmoothing { @XmlElement(name = "Level", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected Level level; @XmlElement(name = "Trend_ExpoSmooth", namespace = "http://www.dmg.org/PMML-4_1") protected TrendExpoSmooth trendExpoSmooth; @XmlElement(name = "Seasonality_ExpoSmooth", namespace = "http://www.dmg.org/PMML-4_1") protected SeasonalityExpoSmooth seasonalityExpoSmooth; @XmlElement(name = "TimeValue", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<TimeValue> timeValue; @XmlAttribute(name = "RMSE") protected Double rmse; @XmlAttribute @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String transformation; /** * Gets the value of the level property. * * @return * possible object is * {@link Level } * */ public Level getLevel() { return level; } /** * Sets the value of the level property. * * @param value * allowed object is * {@link Level } * */ public void setLevel(Level value) { this.level = value; } /** * Gets the value of the trendExpoSmooth property. * * @return * possible object is * {@link TrendExpoSmooth } * */ public TrendExpoSmooth getTrendExpoSmooth() { return trendExpoSmooth; } /** * Sets the value of the trendExpoSmooth property. * * @param value * allowed object is * {@link TrendExpoSmooth } * */ public void setTrendExpoSmooth(TrendExpoSmooth value) { this.trendExpoSmooth = value; } /** * Gets the value of the seasonalityExpoSmooth property. * * @return * possible object is * {@link SeasonalityExpoSmooth } * */ public SeasonalityExpoSmooth getSeasonalityExpoSmooth() { return seasonalityExpoSmooth; } /** * Sets the value of the seasonalityExpoSmooth property. * * @param value * allowed object is * {@link SeasonalityExpoSmooth } * */ public void setSeasonalityExpoSmooth(SeasonalityExpoSmooth value) { this.seasonalityExpoSmooth = value; } /** * Gets the value of the timeValue property. * * <p> * 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 <CODE>set</CODE> method for the timeValue property. * * <p> * For example, to add a new item, do as follows: * <pre> * getTimeValue().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link TimeValue } * * */ public List<TimeValue> getTimeValue() { if (timeValue == null) { timeValue = new ArrayList<TimeValue>(); } return this.timeValue; } /** * Gets the value of the rmse property. * * @return * possible object is * {@link Double } * */ public Double getRMSE() { return rmse; } /** * Sets the value of the rmse property. * * @param value * allowed object is * {@link Double } * */ public void setRMSE(Double value) { this.rmse = value; } /** * Gets the value of the transformation property. * * @return * possible object is * {@link String } * */ public String getTransformation() { if (transformation == null) { return "none"; } else { return transformation; } } /** * Sets the value of the transformation property. * * @param value * allowed object is * {@link String } * */ public void setTransformation(String value) { this.transformation = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/Extension.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlMixed; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** * <p>Java class for Extension element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="Extension"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;any/> * &lt;/sequence> * &lt;attribute name="extender" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="value" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "content" }) @XmlRootElement(name = "Extension") public class Extension { @XmlMixed @XmlAnyElement protected List<Object> content; @XmlAttribute protected String extender; @XmlAttribute protected String name; @XmlAttribute protected String value; /** * Gets the value of the content property. * * <p> * 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 <CODE>set</CODE> method for the content property. * * <p> * For example, to add a new item, do as follows: * <pre> * getContent().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Element } * {@link String } * * */ public List<Object> getContent() { if (content == null) { content = new ArrayList<Object>(); } return this.content; } /** * Gets the value of the extender property. * * @return * possible object is * {@link String } * */ public String getExtender() { return extender; } /** * Sets the value of the extender property. * * @param value * allowed object is * {@link String } * */ public void setExtender(String value) { this.extender = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/FIELDUSAGETYPE.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; /** * <p>Java class for FIELD-USAGE-TYPE. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * &lt;simpleType name="FIELD-USAGE-TYPE"> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"> * &lt;enumeration value="active"/> * &lt;enumeration value="predicted"/> * &lt;enumeration value="supplementary"/> * &lt;enumeration value="group"/> * &lt;enumeration value="order"/> * &lt;enumeration value="frequencyWeight"/> * &lt;enumeration value="analysisWeight"/> * &lt;/restriction> * &lt;/simpleType> * </pre> * */ @XmlEnum public enum FIELDUSAGETYPE { @XmlEnumValue("active") ACTIVE("active"), @XmlEnumValue("analysisWeight") ANALYSIS_WEIGHT("analysisWeight"), @XmlEnumValue("frequencyWeight") FREQUENCY_WEIGHT("frequencyWeight"), @XmlEnumValue("group") GROUP("group"), @XmlEnumValue("order") ORDER("order"), @XmlEnumValue("predicted") PREDICTED("predicted"), @XmlEnumValue("supplementary") SUPPLEMENTARY("supplementary"); private final String value; FIELDUSAGETYPE(String v) { value = v; } public String value() { return value; } public static FIELDUSAGETYPE fromValue(String v) { for (FIELDUSAGETYPE c: FIELDUSAGETYPE.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v.toString()); } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/FactorList.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for FactorList element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="FactorList"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Predictor" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "predictor" }) @XmlRootElement(name = "FactorList") public class FactorList { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "Predictor", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Predictor> predictor; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the predictor property. * * <p> * 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 <CODE>set</CODE> method for the predictor property. * * <p> * For example, to add a new item, do as follows: * <pre> * getPredictor().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Predictor } * * */ public List<Predictor> getPredictor() { if (predictor == null) { predictor = new ArrayList<Predictor>(); } return this.predictor; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/False.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for False element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="False"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension" }) @XmlRootElement(name = "False") public class False { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/FieldColumnPair.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for FieldColumnPair element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="FieldColumnPair"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="column" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="field" use="required" type="{http://www.dmg.org/PMML-4_1}FIELD-NAME" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension" }) @XmlRootElement(name = "FieldColumnPair") public class FieldColumnPair { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlAttribute(required = true) protected String column; @XmlAttribute(required = true) protected String field; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the column property. * * @return * possible object is * {@link String } * */ public String getColumn() { return column; } /** * Sets the value of the column property. * * @param value * allowed object is * {@link String } * */ public void setColumn(String value) { this.column = value; } /** * Gets the value of the field property. * * @return * possible object is * {@link String } * */ public String getField() { return field; } /** * Sets the value of the field property. * * @param value * allowed object is * {@link String } * */ public void setField(String value) { this.field = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/FieldRef.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for FieldRef element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="FieldRef"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="field" use="required" type="{http://www.dmg.org/PMML-4_1}FIELD-NAME" /> * &lt;attribute name="mapMissingTo" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension" }) @XmlRootElement(name = "FieldRef") public class FieldRef { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlAttribute(required = true) protected String field; @XmlAttribute protected String mapMissingTo; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the field property. * * @return * possible object is * {@link String } * */ public String getField() { return field; } /** * Sets the value of the field property. * * @param value * allowed object is * {@link String } * */ public void setField(String value) { this.field = value; } /** * Gets the value of the mapMissingTo property. * * @return * possible object is * {@link String } * */ public String getMapMissingTo() { return mapMissingTo; } /** * Sets the value of the mapMissingTo property. * * @param value * allowed object is * {@link String } * */ public void setMapMissingTo(String value) { this.mapMissingTo = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/FieldValue.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for FieldValue element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="FieldValue"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;choice> * &lt;element ref="{http://www.dmg.org/PMML-4_1}FieldValue" maxOccurs="unbounded"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}FieldValueCount" maxOccurs="unbounded"/> * &lt;/choice> * &lt;/sequence> * &lt;attribute name="field" use="required" type="{http://www.dmg.org/PMML-4_1}FIELD-NAME" /> * &lt;attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "fieldValue", "fieldValueCount" }) @XmlRootElement(name = "FieldValue") public class FieldValue { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "FieldValue", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<FieldValue> fieldValue; @XmlElement(name = "FieldValueCount", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<FieldValueCount> fieldValueCount; @XmlAttribute(required = true) protected String field; @XmlAttribute(required = true) protected String value; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the fieldValue property. * * <p> * 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 <CODE>set</CODE> method for the fieldValue property. * * <p> * For example, to add a new item, do as follows: * <pre> * getFieldValue().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link FieldValue } * * */ public List<FieldValue> getFieldValue() { if (fieldValue == null) { fieldValue = new ArrayList<FieldValue>(); } return this.fieldValue; } /** * Gets the value of the fieldValueCount property. * * <p> * 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 <CODE>set</CODE> method for the fieldValueCount property. * * <p> * For example, to add a new item, do as follows: * <pre> * getFieldValueCount().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link FieldValueCount } * * */ public List<FieldValueCount> getFieldValueCount() { if (fieldValueCount == null) { fieldValueCount = new ArrayList<FieldValueCount>(); } return this.fieldValueCount; } /** * Gets the value of the field property. * * @return * possible object is * {@link String } * */ public String getField() { return field; } /** * Sets the value of the field property. * * @param value * allowed object is * {@link String } * */ public void setField(String value) { this.field = value; } /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/FieldValueCount.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for FieldValueCount element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="FieldValueCount"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="count" use="required" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="field" use="required" type="{http://www.dmg.org/PMML-4_1}FIELD-NAME" /> * &lt;attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension" }) @XmlRootElement(name = "FieldValueCount") public class FieldValueCount { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlAttribute(required = true) protected double count; @XmlAttribute(required = true) protected String field; @XmlAttribute(required = true) protected String value; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the count property. * */ public double getCount() { return count; } /** * Sets the value of the count property. * */ public void setCount(double value) { this.count = value; } /** * Gets the value of the field property. * * @return * possible object is * {@link String } * */ public String getField() { return field; } /** * Sets the value of the field property. * * @param value * allowed object is * {@link String } * */ public void setField(String value) { this.field = value; } /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/GAP.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; /** * <p>Java class for GAP. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * &lt;simpleType name="GAP"> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"> * &lt;enumeration value="true"/> * &lt;enumeration value="false"/> * &lt;enumeration value="unknown"/> * &lt;/restriction> * &lt;/simpleType> * </pre> * */ @XmlEnum public enum GAP { @XmlEnumValue("false") FALSE("false"), @XmlEnumValue("true") TRUE("true"), @XmlEnumValue("unknown") UNKNOWN("unknown"); private final String value; GAP(String v) { value = v; } public String value() { return value; } public static GAP fromValue(String v) { for (GAP c: GAP.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v.toString()); } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/GaussianDistribution.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for GaussianDistribution element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="GaussianDistribution"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="mean" use="required" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" /> * &lt;attribute name="variance" use="required" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension" }) @XmlRootElement(name = "GaussianDistribution") public class GaussianDistribution { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlAttribute(required = true) protected double mean; @XmlAttribute(required = true) protected double variance; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the mean property. * */ public double getMean() { return mean; } /** * Sets the value of the mean property. * */ public void setMean(double value) { this.mean = value; } /** * Gets the value of the variance property. * */ public double getVariance() { return variance; } /** * Sets the value of the variance property. * */ public void setVariance(double value) { this.variance = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/GeneralRegressionModel.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.math.BigInteger; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlElementRefs; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for GeneralRegressionModel element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="GeneralRegressionModel"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}MiningSchema"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Output" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}ModelStats" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}ModelExplanation" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Targets" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}LocalTransformations" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}ParameterList"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}FactorList" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}CovariateList" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}PPMatrix"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}PCovMatrix" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}ParamMatrix"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}EventValues" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}BaseCumHazardTables" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}ModelVerification" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="algorithmName" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="baselineStrataVariable" type="{http://www.dmg.org/PMML-4_1}FIELD-NAME" /> * &lt;attribute name="cumulativeLink" type="{http://www.dmg.org/PMML-4_1}CUMULATIVE-LINK-FUNCTION" /> * &lt;attribute name="distParameter" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" /> * &lt;attribute name="distribution"> * &lt;simpleType> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"> * &lt;enumeration value="binomial"/> * &lt;enumeration value="gamma"/> * &lt;enumeration value="igauss"/> * &lt;enumeration value="negbin"/> * &lt;enumeration value="normal"/> * &lt;enumeration value="poisson"/> * &lt;enumeration value="tweedie"/> * &lt;/restriction> * &lt;/simpleType> * &lt;/attribute> * &lt;attribute name="endTimeVariable" type="{http://www.dmg.org/PMML-4_1}FIELD-NAME" /> * &lt;attribute name="functionName" use="required" type="{http://www.dmg.org/PMML-4_1}MINING-FUNCTION" /> * &lt;attribute name="isScorable" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" /> * &lt;attribute name="linkFunction" type="{http://www.dmg.org/PMML-4_1}LINK-FUNCTION" /> * &lt;attribute name="linkParameter" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" /> * &lt;attribute name="modelDF" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" /> * &lt;attribute name="modelName" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="modelType" use="required"> * &lt;simpleType> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"> * &lt;enumeration value="regression"/> * &lt;enumeration value="generalLinear"/> * &lt;enumeration value="multinomialLogistic"/> * &lt;enumeration value="ordinalMultinomial"/> * &lt;enumeration value="generalizedLinear"/> * &lt;enumeration value="CoxRegression"/> * &lt;/restriction> * &lt;/simpleType> * &lt;/attribute> * &lt;attribute name="offsetValue" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" /> * &lt;attribute name="offsetVariable" type="{http://www.dmg.org/PMML-4_1}FIELD-NAME" /> * &lt;attribute name="startTimeVariable" type="{http://www.dmg.org/PMML-4_1}FIELD-NAME" /> * &lt;attribute name="statusVariable" type="{http://www.dmg.org/PMML-4_1}FIELD-NAME" /> * &lt;attribute name="subjectIDVariable" type="{http://www.dmg.org/PMML-4_1}FIELD-NAME" /> * &lt;attribute name="targetReferenceCategory" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="targetVariableName" type="{http://www.dmg.org/PMML-4_1}FIELD-NAME" /> * &lt;attribute name="trialsValue" type="{http://www.dmg.org/PMML-4_1}INT-NUMBER" /> * &lt;attribute name="trialsVariable" type="{http://www.dmg.org/PMML-4_1}FIELD-NAME" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "content" }) @XmlRootElement(name = "GeneralRegressionModel") public class GeneralRegressionModel { @XmlElementRefs({ @XmlElementRef(name = "ModelExplanation", namespace = "http://www.dmg.org/PMML-4_1", type = ModelExplanation.class), @XmlElementRef(name = "EventValues", namespace = "http://www.dmg.org/PMML-4_1", type = EventValues.class), @XmlElementRef(name = "Output", namespace = "http://www.dmg.org/PMML-4_1", type = Output.class), @XmlElementRef(name = "LocalTransformations", namespace = "http://www.dmg.org/PMML-4_1", type = LocalTransformations.class), @XmlElementRef(name = "PPMatrix", namespace = "http://www.dmg.org/PMML-4_1", type = PPMatrix.class), @XmlElementRef(name = "Targets", namespace = "http://www.dmg.org/PMML-4_1", type = Targets.class), @XmlElementRef(name = "ParameterList", namespace = "http://www.dmg.org/PMML-4_1", type = ParameterList.class), @XmlElementRef(name = "ModelVerification", namespace = "http://www.dmg.org/PMML-4_1", type = ModelVerification.class), @XmlElementRef(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", type = Extension.class), @XmlElementRef(name = "ModelStats", namespace = "http://www.dmg.org/PMML-4_1", type = ModelStats.class), @XmlElementRef(name = "CovariateList", namespace = "http://www.dmg.org/PMML-4_1", type = CovariateList.class), @XmlElementRef(name = "BaseCumHazardTables", namespace = "http://www.dmg.org/PMML-4_1", type = BaseCumHazardTables.class), @XmlElementRef(name = "PCovMatrix", namespace = "http://www.dmg.org/PMML-4_1", type = PCovMatrix.class), @XmlElementRef(name = "FactorList", namespace = "http://www.dmg.org/PMML-4_1", type = FactorList.class), @XmlElementRef(name = "MiningSchema", namespace = "http://www.dmg.org/PMML-4_1", type = MiningSchema.class), @XmlElementRef(name = "ParamMatrix", namespace = "http://www.dmg.org/PMML-4_1", type = ParamMatrix.class) }) protected List<Object> content; @XmlAttribute protected String algorithmName; @XmlAttribute protected String baselineStrataVariable; @XmlAttribute protected CUMULATIVELINKFUNCTION cumulativeLink; @XmlAttribute protected Double distParameter; @XmlAttribute protected String distribution; @XmlAttribute protected String endTimeVariable; @XmlAttribute(required = true) protected MININGFUNCTION functionName; @XmlAttribute protected Boolean isScorable; @XmlAttribute protected LINKFUNCTION linkFunction; @XmlAttribute protected Double linkParameter; @XmlAttribute protected Double modelDF; @XmlAttribute protected String modelName; @XmlAttribute(required = true) protected String modelType; @XmlAttribute protected Double offsetValue; @XmlAttribute protected String offsetVariable; @XmlAttribute protected String startTimeVariable; @XmlAttribute protected String statusVariable; @XmlAttribute protected String subjectIDVariable; @XmlAttribute protected String targetReferenceCategory; @XmlAttribute protected String targetVariableName; @XmlAttribute protected BigInteger trialsValue; @XmlAttribute protected String trialsVariable; /** * Gets the rest of the content model. * * <p> * You are getting this "catch-all" property because of the following reason: * The field name "Extension" is used by two different parts of a schema. See: * line 2515 of file:/home/david/workspace/weka/pmml-4-1.xsd * line 2499 of file:/home/david/workspace/weka/pmml-4-1.xsd * <p> * To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: * Gets the value of the content property. * * <p> * 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 <CODE>set</CODE> method for the content property. * * <p> * For example, to add a new item, do as follows: * <pre> * getContent().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link ModelExplanation } * {@link EventValues } * {@link Output } * {@link LocalTransformations } * {@link PPMatrix } * {@link Targets } * {@link ParameterList } * {@link ModelVerification } * {@link Extension } * {@link ModelStats } * {@link CovariateList } * {@link BaseCumHazardTables } * {@link PCovMatrix } * {@link FactorList } * {@link MiningSchema } * {@link ParamMatrix } * * */ public List<Object> getContent() { if (content == null) { content = new ArrayList<Object>(); } return this.content; } public void addContent(Object object) { if (content == null) { content = new ArrayList<Object>(); } content.add(object); } /** * Gets the value of the algorithmName property. * * @return * possible object is * {@link String } * */ public String getAlgorithmName() { return algorithmName; } /** * Sets the value of the algorithmName property. * * @param value * allowed object is * {@link String } * */ public void setAlgorithmName(String value) { this.algorithmName = value; } /** * Gets the value of the baselineStrataVariable property. * * @return * possible object is * {@link String } * */ public String getBaselineStrataVariable() { return baselineStrataVariable; } /** * Sets the value of the baselineStrataVariable property. * * @param value * allowed object is * {@link String } * */ public void setBaselineStrataVariable(String value) { this.baselineStrataVariable = value; } /** * Gets the value of the cumulativeLink property. * * @return * possible object is * {@link CUMULATIVELINKFUNCTION } * */ public CUMULATIVELINKFUNCTION getCumulativeLink() { return cumulativeLink; } /** * Sets the value of the cumulativeLink property. * * @param value * allowed object is * {@link CUMULATIVELINKFUNCTION } * */ public void setCumulativeLink(CUMULATIVELINKFUNCTION value) { this.cumulativeLink = value; } /** * Gets the value of the distParameter property. * * @return * possible object is * {@link Double } * */ public Double getDistParameter() { return distParameter; } /** * Sets the value of the distParameter property. * * @param value * allowed object is * {@link Double } * */ public void setDistParameter(Double value) { this.distParameter = value; } /** * Gets the value of the distribution property. * * @return * possible object is * {@link String } * */ public String getDistribution() { return distribution; } /** * Sets the value of the distribution property. * * @param value * allowed object is * {@link String } * */ public void setDistribution(String value) { this.distribution = value; } /** * Gets the value of the endTimeVariable property. * * @return * possible object is * {@link String } * */ public String getEndTimeVariable() { return endTimeVariable; } /** * Sets the value of the endTimeVariable property. * * @param value * allowed object is * {@link String } * */ public void setEndTimeVariable(String value) { this.endTimeVariable = value; } /** * Gets the value of the functionName property. * * @return * possible object is * {@link MININGFUNCTION } * */ public MININGFUNCTION getFunctionName() { return functionName; } /** * Sets the value of the functionName property. * * @param value * allowed object is * {@link MININGFUNCTION } * */ public void setFunctionName(MININGFUNCTION value) { this.functionName = value; } /** * Gets the value of the isScorable property. * * @return * possible object is * {@link Boolean } * */ public boolean isIsScorable() { if (isScorable == null) { return true; } else { return isScorable; } } /** * Sets the value of the isScorable property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsScorable(Boolean value) { this.isScorable = value; } /** * Gets the value of the linkFunction property. * * @return * possible object is * {@link LINKFUNCTION } * */ public LINKFUNCTION getLinkFunction() { return linkFunction; } /** * Sets the value of the linkFunction property. * * @param value * allowed object is * {@link LINKFUNCTION } * */ public void setLinkFunction(LINKFUNCTION value) { this.linkFunction = value; } /** * Gets the value of the linkParameter property. * * @return * possible object is * {@link Double } * */ public Double getLinkParameter() { return linkParameter; } /** * Sets the value of the linkParameter property. * * @param value * allowed object is * {@link Double } * */ public void setLinkParameter(Double value) { this.linkParameter = value; } /** * Gets the value of the modelDF property. * * @return * possible object is * {@link Double } * */ public Double getModelDF() { return modelDF; } /** * Sets the value of the modelDF property. * * @param value * allowed object is * {@link Double } * */ public void setModelDF(Double value) { this.modelDF = value; } /** * Gets the value of the modelName property. * * @return * possible object is * {@link String } * */ public String getModelName() { return modelName; } /** * Sets the value of the modelName property. * * @param value * allowed object is * {@link String } * */ public void setModelName(String value) { this.modelName = value; } /** * Gets the value of the modelType property. * * @return * possible object is * {@link String } * */ public String getModelType() { return modelType; } /** * Sets the value of the modelType property. * * @param value * allowed object is * {@link String } * */ public void setModelType(String value) { this.modelType = value; } /** * Gets the value of the offsetValue property. * * @return * possible object is * {@link Double } * */ public Double getOffsetValue() { return offsetValue; } /** * Sets the value of the offsetValue property. * * @param value * allowed object is * {@link Double } * */ public void setOffsetValue(Double value) { this.offsetValue = value; } /** * Gets the value of the offsetVariable property. * * @return * possible object is * {@link String } * */ public String getOffsetVariable() { return offsetVariable; } /** * Sets the value of the offsetVariable property. * * @param value * allowed object is * {@link String } * */ public void setOffsetVariable(String value) { this.offsetVariable = value; } /** * Gets the value of the startTimeVariable property. * * @return * possible object is * {@link String } * */ public String getStartTimeVariable() { return startTimeVariable; } /** * Sets the value of the startTimeVariable property. * * @param value * allowed object is * {@link String } * */ public void setStartTimeVariable(String value) { this.startTimeVariable = value; } /** * Gets the value of the statusVariable property. * * @return * possible object is * {@link String } * */ public String getStatusVariable() { return statusVariable; } /** * Sets the value of the statusVariable property. * * @param value * allowed object is * {@link String } * */ public void setStatusVariable(String value) { this.statusVariable = value; } /** * Gets the value of the subjectIDVariable property. * * @return * possible object is * {@link String } * */ public String getSubjectIDVariable() { return subjectIDVariable; } /** * Sets the value of the subjectIDVariable property. * * @param value * allowed object is * {@link String } * */ public void setSubjectIDVariable(String value) { this.subjectIDVariable = value; } /** * Gets the value of the targetReferenceCategory property. * * @return * possible object is * {@link String } * */ public String getTargetReferenceCategory() { return targetReferenceCategory; } /** * Sets the value of the targetReferenceCategory property. * * @param value * allowed object is * {@link String } * */ public void setTargetReferenceCategory(String value) { this.targetReferenceCategory = value; } /** * Gets the value of the targetVariableName property. * * @return * possible object is * {@link String } * */ public String getTargetVariableName() { return targetVariableName; } /** * Sets the value of the targetVariableName property. * * @param value * allowed object is * {@link String } * */ public void setTargetVariableName(String value) { this.targetVariableName = value; } /** * Gets the value of the trialsValue property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getTrialsValue() { return trialsValue; } /** * Sets the value of the trialsValue property. * * @param value * allowed object is * {@link BigInteger } * */ public void setTrialsValue(BigInteger value) { this.trialsValue = value; } /** * Gets the value of the trialsVariable property. * * @return * possible object is * {@link String } * */ public String getTrialsVariable() { return trialsVariable; } /** * Sets the value of the trialsVariable property. * * @param value * allowed object is * {@link String } * */ public void setTrialsVariable(String value) { this.trialsVariable = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/Header.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for Header element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="Header"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Application" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Annotation" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Timestamp" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="copyright" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "application", "annotation", "timestamp" }) @XmlRootElement(name = "Header") public class Header { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "Application", namespace = "http://www.dmg.org/PMML-4_1") protected Application application; @XmlElement(name = "Annotation", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Annotation> annotation; @XmlElement(name = "Timestamp", namespace = "http://www.dmg.org/PMML-4_1") protected Timestamp timestamp; @XmlAttribute protected String copyright; @XmlAttribute protected String description; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the application property. * * @return * possible object is * {@link Application } * */ public Application getApplication() { return application; } /** * Sets the value of the application property. * * @param value * allowed object is * {@link Application } * */ public void setApplication(Application value) { this.application = value; } /** * Gets the value of the annotation property. * * <p> * 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 <CODE>set</CODE> method for the annotation property. * * <p> * For example, to add a new item, do as follows: * <pre> * getAnnotation().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Annotation } * * */ public List<Annotation> getAnnotation() { if (annotation == null) { annotation = new ArrayList<Annotation>(); } return this.annotation; } /** * Gets the value of the timestamp property. * * @return * possible object is * {@link Timestamp } * */ public Timestamp getTimestamp() { return timestamp; } /** * Sets the value of the timestamp property. * * @param value * allowed object is * {@link Timestamp } * */ public void setTimestamp(Timestamp value) { this.timestamp = value; } /** * Gets the value of the copyright property. * * @return * possible object is * {@link String } * */ public String getCopyright() { return copyright; } /** * Sets the value of the copyright property. * * @param value * allowed object is * {@link String } * */ public void setCopyright(String value) { this.copyright = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/INTERPOLATIONMETHOD.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; /** * <p>Java class for INTERPOLATION-METHOD. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * &lt;simpleType name="INTERPOLATION-METHOD"> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"> * &lt;enumeration value="none"/> * &lt;enumeration value="linear"/> * &lt;enumeration value="exponentialSpline"/> * &lt;enumeration value="cubicSpline"/> * &lt;/restriction> * &lt;/simpleType> * </pre> * */ @XmlEnum public enum INTERPOLATIONMETHOD { @XmlEnumValue("cubicSpline") CUBIC_SPLINE("cubicSpline"), @XmlEnumValue("exponentialSpline") EXPONENTIAL_SPLINE("exponentialSpline"), @XmlEnumValue("linear") LINEAR("linear"), @XmlEnumValue("none") NONE("none"); private final String value; INTERPOLATIONMETHOD(String v) { value = v; } public String value() { return value; } public static INTERPOLATIONMETHOD fromValue(String v) { for (INTERPOLATIONMETHOD c: INTERPOLATIONMETHOD.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v.toString()); } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/INTSparseArray.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.math.BigInteger; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlList; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for INT-SparseArray element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="INT-SparseArray"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Indices" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}INT-Entries" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="defaultValue" type="{http://www.dmg.org/PMML-4_1}INT-NUMBER" default="0" /> * &lt;attribute name="n" type="{http://www.dmg.org/PMML-4_1}INT-NUMBER" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "indices", "intEntries" }) @XmlRootElement(name = "INT-SparseArray") public class INTSparseArray { @XmlList @XmlElement(name = "Indices", namespace = "http://www.dmg.org/PMML-4_1", type = Integer.class) protected List<Integer> indices; @XmlList @XmlElement(name = "INT-Entries", namespace = "http://www.dmg.org/PMML-4_1", type = Integer.class) protected List<Integer> intEntries; @XmlAttribute protected BigInteger defaultValue; @XmlAttribute protected BigInteger n; /** * Gets the value of the indices property. * * <p> * 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 <CODE>set</CODE> method for the indices property. * * <p> * For example, to add a new item, do as follows: * <pre> * getIndices().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Integer } * * */ public List<Integer> getIndices() { if (indices == null) { indices = new ArrayList<Integer>(); } return this.indices; } /** * Gets the value of the intEntries property. * * <p> * 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 <CODE>set</CODE> method for the intEntries property. * * <p> * For example, to add a new item, do as follows: * <pre> * getINTEntries().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Integer } * * */ public List<Integer> getINTEntries() { if (intEntries == null) { intEntries = new ArrayList<Integer>(); } return this.intEntries; } /** * Gets the value of the defaultValue property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getDefaultValue() { if (defaultValue == null) { return new BigInteger("0"); } else { return defaultValue; } } /** * Sets the value of the defaultValue property. * * @param value * allowed object is * {@link BigInteger } * */ public void setDefaultValue(BigInteger value) { this.defaultValue = value; } /** * Gets the value of the n property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getN() { return n; } /** * Sets the value of the n property. * * @param value * allowed object is * {@link BigInteger } * */ public void setN(BigInteger value) { this.n = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/INVALIDVALUETREATMENTMETHOD.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; /** * <p>Java class for INVALID-VALUE-TREATMENT-METHOD. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * &lt;simpleType name="INVALID-VALUE-TREATMENT-METHOD"> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"> * &lt;enumeration value="returnInvalid"/> * &lt;enumeration value="asIs"/> * &lt;enumeration value="asMissing"/> * &lt;/restriction> * &lt;/simpleType> * </pre> * */ @XmlEnum public enum INVALIDVALUETREATMENTMETHOD { @XmlEnumValue("asIs") AS_IS("asIs"), @XmlEnumValue("asMissing") AS_MISSING("asMissing"), @XmlEnumValue("returnInvalid") RETURN_INVALID("returnInvalid"); private final String value; INVALIDVALUETREATMENTMETHOD(String v) { value = v; } public String value() { return value; } public static INVALIDVALUETREATMENTMETHOD fromValue(String v) { for (INVALIDVALUETREATMENTMETHOD c: INVALIDVALUETREATMENTMETHOD.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v.toString()); } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/InlineTable.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for InlineTable element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="InlineTable"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}row" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "row" }) @XmlRootElement(name = "InlineTable") public class InlineTable { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Row> row; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the row property. * * <p> * 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 <CODE>set</CODE> method for the row property. * * <p> * For example, to add a new item, do as follows: * <pre> * getRow().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Row } * * */ public List<Row> getRow() { if (row == null) { row = new ArrayList<Row>(); } return this.row; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/InstanceField.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for InstanceField element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="InstanceField"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="column" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="field" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension" }) @XmlRootElement(name = "InstanceField") public class InstanceField { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlAttribute protected String column; @XmlAttribute(required = true) protected String field; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the column property. * * @return * possible object is * {@link String } * */ public String getColumn() { return column; } /** * Sets the value of the column property. * * @param value * allowed object is * {@link String } * */ public void setColumn(String value) { this.column = value; } /** * Gets the value of the field property. * * @return * possible object is * {@link String } * */ public String getField() { return field; } /** * Sets the value of the field property. * * @param value * allowed object is * {@link String } * */ public void setField(String value) { this.field = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/InstanceFields.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for InstanceFields element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="InstanceFields"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}InstanceField" maxOccurs="unbounded"/> * &lt;/sequence> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "instanceField" }) @XmlRootElement(name = "InstanceFields") public class InstanceFields { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "InstanceField", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<InstanceField> instanceField; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the instanceField property. * * <p> * 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 <CODE>set</CODE> method for the instanceField property. * * <p> * For example, to add a new item, do as follows: * <pre> * getInstanceField().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link InstanceField } * * */ public List<InstanceField> getInstanceField() { if (instanceField == null) { instanceField = new ArrayList<InstanceField>(); } return this.instanceField; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/Interval.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for Interval element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="Interval"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="closure" use="required"> * &lt;simpleType> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"> * &lt;enumeration value="openClosed"/> * &lt;enumeration value="openOpen"/> * &lt;enumeration value="closedOpen"/> * &lt;enumeration value="closedClosed"/> * &lt;/restriction> * &lt;/simpleType> * &lt;/attribute> * &lt;attribute name="leftMargin" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="rightMargin" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension" }) @XmlRootElement(name = "Interval") public class Interval { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlAttribute(required = true) protected String closure; @XmlAttribute protected Double leftMargin; @XmlAttribute protected Double rightMargin; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the closure property. * * @return * possible object is * {@link String } * */ public String getClosure() { return closure; } /** * Sets the value of the closure property. * * @param value * allowed object is * {@link String } * */ public void setClosure(String value) { this.closure = value; } /** * Gets the value of the leftMargin property. * * @return * possible object is * {@link Double } * */ public Double getLeftMargin() { return leftMargin; } /** * Sets the value of the leftMargin property. * * @param value * allowed object is * {@link Double } * */ public void setLeftMargin(Double value) { this.leftMargin = value; } /** * Gets the value of the rightMargin property. * * @return * possible object is * {@link Double } * */ public Double getRightMargin() { return rightMargin; } /** * Sets the value of the rightMargin property. * * @param value * allowed object is * {@link Double } * */ public void setRightMargin(Double value) { this.rightMargin = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/Item.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for Item element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="Item"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="mappedValue" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="weight" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension" }) @XmlRootElement(name = "Item") public class Item { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlAttribute(required = true) protected String id; @XmlAttribute protected String mappedValue; @XmlAttribute(required = true) protected String value; @XmlAttribute protected Double weight; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the mappedValue property. * * @return * possible object is * {@link String } * */ public String getMappedValue() { return mappedValue; } /** * Sets the value of the mappedValue property. * * @param value * allowed object is * {@link String } * */ public void setMappedValue(String value) { this.mappedValue = value; } /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * Gets the value of the weight property. * * @return * possible object is * {@link Double } * */ public Double getWeight() { return weight; } /** * Sets the value of the weight property. * * @param value * allowed object is * {@link Double } * */ public void setWeight(Double value) { this.weight = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/ItemRef.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for ItemRef element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="ItemRef"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="itemRef" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension" }) @XmlRootElement(name = "ItemRef") public class ItemRef { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlAttribute(required = true) protected String itemRef; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the itemRef property. * * @return * possible object is * {@link String } * */ public String getItemRef() { return itemRef; } /** * Sets the value of the itemRef property. * * @param value * allowed object is * {@link String } * */ public void setItemRef(String value) { this.itemRef = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/Itemset.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.math.BigDecimal; import java.math.BigInteger; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for Itemset element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="Itemset"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}ItemRef" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="numberOfItems" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" /> * &lt;attribute name="support" type="{http://www.dmg.org/PMML-4_1}PROB-NUMBER" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "itemRef" }) @XmlRootElement(name = "Itemset") public class Itemset { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "ItemRef", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<ItemRef> itemRef; @XmlAttribute(required = true) protected String id; @XmlAttribute protected BigInteger numberOfItems; @XmlAttribute protected BigDecimal support; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the itemRef property. * * <p> * 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 <CODE>set</CODE> method for the itemRef property. * * <p> * For example, to add a new item, do as follows: * <pre> * getItemRef().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link ItemRef } * * */ public List<ItemRef> getItemRef() { if (itemRef == null) { itemRef = new ArrayList<ItemRef>(); } return this.itemRef; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the numberOfItems property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getNumberOfItems() { return numberOfItems; } /** * Sets the value of the numberOfItems property. * * @param value * allowed object is * {@link BigInteger } * */ public void setNumberOfItems(BigInteger value) { this.numberOfItems = value; } /** * Gets the value of the support property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getSupport() { return support; } /** * Sets the value of the support property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setSupport(BigDecimal value) { this.support = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/Jaccard.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for jaccard element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="jaccard"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension" }) @XmlRootElement(name = "jaccard") public class Jaccard { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/KNNInput.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for KNNInput element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="KNNInput"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="compareFunction" type="{http://www.dmg.org/PMML-4_1}COMPARE-FUNCTION" /> * &lt;attribute name="field" use="required" type="{http://www.dmg.org/PMML-4_1}FIELD-NAME" /> * &lt;attribute name="fieldWeight" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" default="1" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension" }) @XmlRootElement(name = "KNNInput") public class KNNInput { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlAttribute protected COMPAREFUNCTION compareFunction; @XmlAttribute(required = true) protected String field; @XmlAttribute protected Double fieldWeight; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the compareFunction property. * * @return * possible object is * {@link COMPAREFUNCTION } * */ public COMPAREFUNCTION getCompareFunction() { return compareFunction; } /** * Sets the value of the compareFunction property. * * @param value * allowed object is * {@link COMPAREFUNCTION } * */ public void setCompareFunction(COMPAREFUNCTION value) { this.compareFunction = value; } /** * Gets the value of the field property. * * @return * possible object is * {@link String } * */ public String getField() { return field; } /** * Sets the value of the field property. * * @param value * allowed object is * {@link String } * */ public void setField(String value) { this.field = value; } /** * Gets the value of the fieldWeight property. * * @return * possible object is * {@link Double } * */ public double getFieldWeight() { if (fieldWeight == null) { return 1.0D; } else { return fieldWeight; } } /** * Sets the value of the fieldWeight property. * * @param value * allowed object is * {@link Double } * */ public void setFieldWeight(Double value) { this.fieldWeight = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/KNNInputs.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for KNNInputs element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="KNNInputs"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}KNNInput" maxOccurs="unbounded"/> * &lt;/sequence> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "knnInput" }) @XmlRootElement(name = "KNNInputs") public class KNNInputs { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "KNNInput", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<KNNInput> knnInput; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the knnInput property. * * <p> * 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 <CODE>set</CODE> method for the knnInput property. * * <p> * For example, to add a new item, do as follows: * <pre> * getKNNInput().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link KNNInput } * * */ public List<KNNInput> getKNNInput() { if (knnInput == null) { knnInput = new ArrayList<KNNInput>(); } return this.knnInput; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/KohonenMap.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for KohonenMap element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="KohonenMap"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="coord1" type="{http://www.w3.org/2001/XMLSchema}float" /> * &lt;attribute name="coord2" type="{http://www.w3.org/2001/XMLSchema}float" /> * &lt;attribute name="coord3" type="{http://www.w3.org/2001/XMLSchema}float" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension" }) @XmlRootElement(name = "KohonenMap") public class KohonenMap { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlAttribute protected Float coord1; @XmlAttribute protected Float coord2; @XmlAttribute protected Float coord3; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the coord1 property. * * @return * possible object is * {@link Float } * */ public Float getCoord1() { return coord1; } /** * Sets the value of the coord1 property. * * @param value * allowed object is * {@link Float } * */ public void setCoord1(Float value) { this.coord1 = value; } /** * Gets the value of the coord2 property. * * @return * possible object is * {@link Float } * */ public Float getCoord2() { return coord2; } /** * Sets the value of the coord2 property. * * @param value * allowed object is * {@link Float } * */ public void setCoord2(Float value) { this.coord2 = value; } /** * Gets the value of the coord3 property. * * @return * possible object is * {@link Float } * */ public Float getCoord3() { return coord3; } /** * Sets the value of the coord3 property. * * @param value * allowed object is * {@link Float } * */ public void setCoord3(Float value) { this.coord3 = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/LINKFUNCTION.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; /** * <p>Java class for LINK-FUNCTION. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * &lt;simpleType name="LINK-FUNCTION"> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"> * &lt;enumeration value="cloglog"/> * &lt;enumeration value="identity"/> * &lt;enumeration value="log"/> * &lt;enumeration value="logc"/> * &lt;enumeration value="logit"/> * &lt;enumeration value="loglog"/> * &lt;enumeration value="negbin"/> * &lt;enumeration value="oddspower"/> * &lt;enumeration value="power"/> * &lt;enumeration value="probit"/> * &lt;/restriction> * &lt;/simpleType> * </pre> * */ @XmlEnum public enum LINKFUNCTION { @XmlEnumValue("cloglog") CLOGLOG("cloglog"), @XmlEnumValue("identity") IDENTITY("identity"), @XmlEnumValue("log") LOG("log"), @XmlEnumValue("logc") LOGC("logc"), @XmlEnumValue("logit") LOGIT("logit"), @XmlEnumValue("loglog") LOGLOG("loglog"), @XmlEnumValue("negbin") NEGBIN("negbin"), @XmlEnumValue("oddspower") ODDSPOWER("oddspower"), @XmlEnumValue("power") POWER("power"), @XmlEnumValue("probit") PROBIT("probit"); private final String value; LINKFUNCTION(String v) { value = v; } public String value() { return value; } public static LINKFUNCTION fromValue(String v) { for (LINKFUNCTION c: LINKFUNCTION.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v.toString()); } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/Level.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for Level element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="Level"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;attribute name="alpha" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" /> * &lt;attribute name="smoothedValue" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "Level") public class Level { @XmlAttribute protected Double alpha; @XmlAttribute protected Double smoothedValue; /** * Gets the value of the alpha property. * * @return * possible object is * {@link Double } * */ public Double getAlpha() { return alpha; } /** * Sets the value of the alpha property. * * @param value * allowed object is * {@link Double } * */ public void setAlpha(Double value) { this.alpha = value; } /** * Gets the value of the smoothedValue property. * * @return * possible object is * {@link Double } * */ public Double getSmoothedValue() { return smoothedValue; } /** * Sets the value of the smoothedValue property. * * @param value * allowed object is * {@link Double } * */ public void setSmoothedValue(Double value) { this.smoothedValue = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/LiftData.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for LiftData element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="LiftData"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}ModelLiftGraph"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}OptimumLiftGraph" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}RandomLiftGraph" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="rankingQuality" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="targetFieldDisplayValue" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="targetFieldValue" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "modelLiftGraph", "optimumLiftGraph", "randomLiftGraph" }) @XmlRootElement(name = "LiftData") public class LiftData { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "ModelLiftGraph", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected ModelLiftGraph modelLiftGraph; @XmlElement(name = "OptimumLiftGraph", namespace = "http://www.dmg.org/PMML-4_1") protected OptimumLiftGraph optimumLiftGraph; @XmlElement(name = "RandomLiftGraph", namespace = "http://www.dmg.org/PMML-4_1") protected RandomLiftGraph randomLiftGraph; @XmlAttribute protected Double rankingQuality; @XmlAttribute protected String targetFieldDisplayValue; @XmlAttribute protected String targetFieldValue; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the modelLiftGraph property. * * @return * possible object is * {@link ModelLiftGraph } * */ public ModelLiftGraph getModelLiftGraph() { return modelLiftGraph; } /** * Sets the value of the modelLiftGraph property. * * @param value * allowed object is * {@link ModelLiftGraph } * */ public void setModelLiftGraph(ModelLiftGraph value) { this.modelLiftGraph = value; } /** * Gets the value of the optimumLiftGraph property. * * @return * possible object is * {@link OptimumLiftGraph } * */ public OptimumLiftGraph getOptimumLiftGraph() { return optimumLiftGraph; } /** * Sets the value of the optimumLiftGraph property. * * @param value * allowed object is * {@link OptimumLiftGraph } * */ public void setOptimumLiftGraph(OptimumLiftGraph value) { this.optimumLiftGraph = value; } /** * Gets the value of the randomLiftGraph property. * * @return * possible object is * {@link RandomLiftGraph } * */ public RandomLiftGraph getRandomLiftGraph() { return randomLiftGraph; } /** * Sets the value of the randomLiftGraph property. * * @param value * allowed object is * {@link RandomLiftGraph } * */ public void setRandomLiftGraph(RandomLiftGraph value) { this.randomLiftGraph = value; } /** * Gets the value of the rankingQuality property. * * @return * possible object is * {@link Double } * */ public Double getRankingQuality() { return rankingQuality; } /** * Sets the value of the rankingQuality property. * * @param value * allowed object is * {@link Double } * */ public void setRankingQuality(Double value) { this.rankingQuality = value; } /** * Gets the value of the targetFieldDisplayValue property. * * @return * possible object is * {@link String } * */ public String getTargetFieldDisplayValue() { return targetFieldDisplayValue; } /** * Sets the value of the targetFieldDisplayValue property. * * @param value * allowed object is * {@link String } * */ public void setTargetFieldDisplayValue(String value) { this.targetFieldDisplayValue = value; } /** * Gets the value of the targetFieldValue property. * * @return * possible object is * {@link String } * */ public String getTargetFieldValue() { return targetFieldValue; } /** * Sets the value of the targetFieldValue property. * * @param value * allowed object is * {@link String } * */ public void setTargetFieldValue(String value) { this.targetFieldValue = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/LiftGraph.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for LiftGraph element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="LiftGraph"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}XCoordinates"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}YCoordinates"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}BoundaryValues" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}BoundaryValueMeans" minOccurs="0"/> * &lt;/sequence> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "xCoordinates", "yCoordinates", "boundaryValues", "boundaryValueMeans" }) @XmlRootElement(name = "LiftGraph") public class LiftGraph { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "XCoordinates", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected XCoordinates xCoordinates; @XmlElement(name = "YCoordinates", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected YCoordinates yCoordinates; @XmlElement(name = "BoundaryValues", namespace = "http://www.dmg.org/PMML-4_1") protected BoundaryValues boundaryValues; @XmlElement(name = "BoundaryValueMeans", namespace = "http://www.dmg.org/PMML-4_1") protected BoundaryValueMeans boundaryValueMeans; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the xCoordinates property. * * @return * possible object is * {@link XCoordinates } * */ public XCoordinates getXCoordinates() { return xCoordinates; } /** * Sets the value of the xCoordinates property. * * @param value * allowed object is * {@link XCoordinates } * */ public void setXCoordinates(XCoordinates value) { this.xCoordinates = value; } /** * Gets the value of the yCoordinates property. * * @return * possible object is * {@link YCoordinates } * */ public YCoordinates getYCoordinates() { return yCoordinates; } /** * Sets the value of the yCoordinates property. * * @param value * allowed object is * {@link YCoordinates } * */ public void setYCoordinates(YCoordinates value) { this.yCoordinates = value; } /** * Gets the value of the boundaryValues property. * * @return * possible object is * {@link BoundaryValues } * */ public BoundaryValues getBoundaryValues() { return boundaryValues; } /** * Sets the value of the boundaryValues property. * * @param value * allowed object is * {@link BoundaryValues } * */ public void setBoundaryValues(BoundaryValues value) { this.boundaryValues = value; } /** * Gets the value of the boundaryValueMeans property. * * @return * possible object is * {@link BoundaryValueMeans } * */ public BoundaryValueMeans getBoundaryValueMeans() { return boundaryValueMeans; } /** * Sets the value of the boundaryValueMeans property. * * @param value * allowed object is * {@link BoundaryValueMeans } * */ public void setBoundaryValueMeans(BoundaryValueMeans value) { this.boundaryValueMeans = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/LinearKernelType.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for LinearKernelType element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="LinearKernelType"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension" }) @XmlRootElement(name = "LinearKernelType") public class LinearKernelType { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlAttribute protected String description; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/LinearNorm.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for LinearNorm element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="LinearNorm"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="norm" use="required" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="orig" use="required" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension" }) @XmlRootElement(name = "LinearNorm") public class LinearNorm { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlAttribute(required = true) protected double norm; @XmlAttribute(required = true) protected double orig; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the norm property. * */ public double getNorm() { return norm; } /** * Sets the value of the norm property. * */ public void setNorm(double value) { this.norm = value; } /** * Gets the value of the orig property. * */ public double getOrig() { return orig; } /** * Sets the value of the orig property. * */ public void setOrig(double value) { this.orig = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/LocalTransformations.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for LocalTransformations element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="LocalTransformations"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}DerivedField" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "derivedField" }) @XmlRootElement(name = "LocalTransformations") public class LocalTransformations { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "DerivedField", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<DerivedField> derivedField; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the derivedField property. * * <p> * 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 <CODE>set</CODE> method for the derivedField property. * * <p> * For example, to add a new item, do as follows: * <pre> * getDerivedField().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link DerivedField } * * */ public List<DerivedField> getDerivedField() { if (derivedField == null) { derivedField = new ArrayList<DerivedField>(); } return this.derivedField; } public void addDerivedField(DerivedField field) { if (derivedField == null) { derivedField = new ArrayList<DerivedField>(); } derivedField.add(field); } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/MININGFUNCTION.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; /** * <p>Java class for MINING-FUNCTION. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * &lt;simpleType name="MINING-FUNCTION"> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"> * &lt;enumeration value="associationRules"/> * &lt;enumeration value="sequences"/> * &lt;enumeration value="classification"/> * &lt;enumeration value="regression"/> * &lt;enumeration value="clustering"/> * &lt;enumeration value="timeSeries"/> * &lt;enumeration value="mixed"/> * &lt;/restriction> * &lt;/simpleType> * </pre> * */ @XmlEnum public enum MININGFUNCTION { @XmlEnumValue("associationRules") ASSOCIATION_RULES("associationRules"), @XmlEnumValue("classification") CLASSIFICATION("classification"), @XmlEnumValue("clustering") CLUSTERING("clustering"), @XmlEnumValue("mixed") MIXED("mixed"), @XmlEnumValue("regression") REGRESSION("regression"), @XmlEnumValue("sequences") SEQUENCES("sequences"), @XmlEnumValue("timeSeries") TIME_SERIES("timeSeries"); private final String value; MININGFUNCTION(String v) { value = v; } public String value() { return value; } public static MININGFUNCTION fromValue(String v) { for (MININGFUNCTION c: MININGFUNCTION.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v.toString()); } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/MISSINGVALUESTRATEGY.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; /** * <p>Java class for MISSING-VALUE-STRATEGY. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * &lt;simpleType name="MISSING-VALUE-STRATEGY"> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"> * &lt;enumeration value="lastPrediction"/> * &lt;enumeration value="nullPrediction"/> * &lt;enumeration value="defaultChild"/> * &lt;enumeration value="weightedConfidence"/> * &lt;enumeration value="aggregateNodes"/> * &lt;enumeration value="none"/> * &lt;/restriction> * &lt;/simpleType> * </pre> * */ @XmlEnum public enum MISSINGVALUESTRATEGY { @XmlEnumValue("aggregateNodes") AGGREGATE_NODES("aggregateNodes"), @XmlEnumValue("defaultChild") DEFAULT_CHILD("defaultChild"), @XmlEnumValue("lastPrediction") LAST_PREDICTION("lastPrediction"), @XmlEnumValue("none") NONE("none"), @XmlEnumValue("nullPrediction") NULL_PREDICTION("nullPrediction"), @XmlEnumValue("weightedConfidence") WEIGHTED_CONFIDENCE("weightedConfidence"); private final String value; MISSINGVALUESTRATEGY(String v) { value = v; } public String value() { return value; } public static MISSINGVALUESTRATEGY fromValue(String v) { for (MISSINGVALUESTRATEGY c: MISSINGVALUESTRATEGY.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v.toString()); } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/MISSINGVALUETREATMENTMETHOD.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; /** * <p>Java class for MISSING-VALUE-TREATMENT-METHOD. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * &lt;simpleType name="MISSING-VALUE-TREATMENT-METHOD"> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"> * &lt;enumeration value="asIs"/> * &lt;enumeration value="asMean"/> * &lt;enumeration value="asMode"/> * &lt;enumeration value="asMedian"/> * &lt;enumeration value="asValue"/> * &lt;/restriction> * &lt;/simpleType> * </pre> * */ @XmlEnum public enum MISSINGVALUETREATMENTMETHOD { @XmlEnumValue("asIs") AS_IS("asIs"), @XmlEnumValue("asMean") AS_MEAN("asMean"), @XmlEnumValue("asMedian") AS_MEDIAN("asMedian"), @XmlEnumValue("asMode") AS_MODE("asMode"), @XmlEnumValue("asValue") AS_VALUE("asValue"); private final String value; MISSINGVALUETREATMENTMETHOD(String v) { value = v; } public String value() { return value; } public static MISSINGVALUETREATMENTMETHOD fromValue(String v) { for (MISSINGVALUETREATMENTMETHOD c: MISSINGVALUETREATMENTMETHOD.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v.toString()); } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/MULTIPLEMODELMETHOD.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; /** * <p>Java class for MULTIPLE-MODEL-METHOD. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * &lt;simpleType name="MULTIPLE-MODEL-METHOD"> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"> * &lt;enumeration value="majorityVote"/> * &lt;enumeration value="weightedMajorityVote"/> * &lt;enumeration value="average"/> * &lt;enumeration value="weightedAverage"/> * &lt;enumeration value="median"/> * &lt;enumeration value="max"/> * &lt;enumeration value="sum"/> * &lt;enumeration value="selectFirst"/> * &lt;enumeration value="selectAll"/> * &lt;enumeration value="modelChain"/> * &lt;/restriction> * &lt;/simpleType> * </pre> * */ @XmlEnum public enum MULTIPLEMODELMETHOD { @XmlEnumValue("average") AVERAGE("average"), @XmlEnumValue("majorityVote") MAJORITY_VOTE("majorityVote"), @XmlEnumValue("max") MAX("max"), @XmlEnumValue("median") MEDIAN("median"), @XmlEnumValue("modelChain") MODEL_CHAIN("modelChain"), @XmlEnumValue("selectAll") SELECT_ALL("selectAll"), @XmlEnumValue("selectFirst") SELECT_FIRST("selectFirst"), @XmlEnumValue("sum") SUM("sum"), @XmlEnumValue("weightedAverage") WEIGHTED_AVERAGE("weightedAverage"), @XmlEnumValue("weightedMajorityVote") WEIGHTED_MAJORITY_VOTE("weightedMajorityVote"); private final String value; MULTIPLEMODELMETHOD(String v) { value = v; } public String value() { return value; } public static MULTIPLEMODELMETHOD fromValue(String v) { for (MULTIPLEMODELMETHOD c: MULTIPLEMODELMETHOD.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v.toString()); } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/MapValues.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for MapValues element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="MapValues"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}FieldColumnPair" maxOccurs="unbounded"/> * &lt;choice minOccurs="0"> * &lt;element ref="{http://www.dmg.org/PMML-4_1}TableLocator"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}InlineTable"/> * &lt;/choice> * &lt;/sequence> * &lt;attribute name="dataType" type="{http://www.dmg.org/PMML-4_1}DATATYPE" /> * &lt;attribute name="defaultValue" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="mapMissingTo" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="outputColumn" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "fieldColumnPair", "tableLocator", "inlineTable" }) @XmlRootElement(name = "MapValues") public class MapValues { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "FieldColumnPair", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<FieldColumnPair> fieldColumnPair; @XmlElement(name = "TableLocator", namespace = "http://www.dmg.org/PMML-4_1") protected TableLocator tableLocator; @XmlElement(name = "InlineTable", namespace = "http://www.dmg.org/PMML-4_1") protected InlineTable inlineTable; @XmlAttribute protected DATATYPE dataType; @XmlAttribute protected String defaultValue; @XmlAttribute protected String mapMissingTo; @XmlAttribute(required = true) protected String outputColumn; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the fieldColumnPair property. * * <p> * 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 <CODE>set</CODE> method for the fieldColumnPair property. * * <p> * For example, to add a new item, do as follows: * <pre> * getFieldColumnPair().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link FieldColumnPair } * * */ public List<FieldColumnPair> getFieldColumnPair() { if (fieldColumnPair == null) { fieldColumnPair = new ArrayList<FieldColumnPair>(); } return this.fieldColumnPair; } /** * Gets the value of the tableLocator property. * * @return * possible object is * {@link TableLocator } * */ public TableLocator getTableLocator() { return tableLocator; } /** * Sets the value of the tableLocator property. * * @param value * allowed object is * {@link TableLocator } * */ public void setTableLocator(TableLocator value) { this.tableLocator = value; } /** * Gets the value of the inlineTable property. * * @return * possible object is * {@link InlineTable } * */ public InlineTable getInlineTable() { return inlineTable; } /** * Sets the value of the inlineTable property. * * @param value * allowed object is * {@link InlineTable } * */ public void setInlineTable(InlineTable value) { this.inlineTable = value; } /** * Gets the value of the dataType property. * * @return * possible object is * {@link DATATYPE } * */ public DATATYPE getDataType() { return dataType; } /** * Sets the value of the dataType property. * * @param value * allowed object is * {@link DATATYPE } * */ public void setDataType(DATATYPE value) { this.dataType = value; } /** * Gets the value of the defaultValue property. * * @return * possible object is * {@link String } * */ public String getDefaultValue() { return defaultValue; } /** * Sets the value of the defaultValue property. * * @param value * allowed object is * {@link String } * */ public void setDefaultValue(String value) { this.defaultValue = value; } /** * Gets the value of the mapMissingTo property. * * @return * possible object is * {@link String } * */ public String getMapMissingTo() { return mapMissingTo; } /** * Sets the value of the mapMissingTo property. * * @param value * allowed object is * {@link String } * */ public void setMapMissingTo(String value) { this.mapMissingTo = value; } /** * Gets the value of the outputColumn property. * * @return * possible object is * {@link String } * */ public String getOutputColumn() { return outputColumn; } /** * Sets the value of the outputColumn property. * * @param value * allowed object is * {@link String } * */ public void setOutputColumn(String value) { this.outputColumn = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/MatCell.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.math.BigInteger; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; /** * <p>Java class for MatCell element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="MatCell"> * &lt;complexType> * &lt;simpleContent> * &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>string"> * &lt;attribute name="col" use="required" type="{http://www.dmg.org/PMML-4_1}INT-NUMBER" /> * &lt;attribute name="row" use="required" type="{http://www.dmg.org/PMML-4_1}INT-NUMBER" /> * &lt;/extension> * &lt;/simpleContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "value" }) @XmlRootElement(name = "MatCell") public class MatCell { @XmlValue protected String value; @XmlAttribute(required = true) protected BigInteger col; @XmlAttribute(required = true) protected BigInteger row; /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * Gets the value of the col property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getCol() { return col; } /** * Sets the value of the col property. * * @param value * allowed object is * {@link BigInteger } * */ public void setCol(BigInteger value) { this.col = value; } /** * Gets the value of the row property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getRow() { return row; } /** * Sets the value of the row property. * * @param value * allowed object is * {@link BigInteger } * */ public void setRow(BigInteger value) { this.row = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/Matrix.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.math.BigInteger; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for Matrix element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="Matrix"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;choice minOccurs="0"> * &lt;group ref="{http://www.dmg.org/PMML-4_1}NUM-ARRAY" maxOccurs="unbounded"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}MatCell" maxOccurs="unbounded"/> * &lt;/choice> * &lt;attribute name="diagDefault" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" /> * &lt;attribute name="kind" default="any"> * &lt;simpleType> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"> * &lt;enumeration value="diagonal"/> * &lt;enumeration value="symmetric"/> * &lt;enumeration value="any"/> * &lt;/restriction> * &lt;/simpleType> * &lt;/attribute> * &lt;attribute name="nbCols" type="{http://www.dmg.org/PMML-4_1}INT-NUMBER" /> * &lt;attribute name="nbRows" type="{http://www.dmg.org/PMML-4_1}INT-NUMBER" /> * &lt;attribute name="offDiagDefault" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "numarray", "matCell" }) @XmlRootElement(name = "Matrix") public class Matrix { @XmlElement(name = "Array", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<ArrayType> numarray; @XmlElement(name = "MatCell", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<MatCell> matCell; @XmlAttribute protected Double diagDefault; @XmlAttribute protected String kind; @XmlAttribute protected BigInteger nbCols; @XmlAttribute protected BigInteger nbRows; @XmlAttribute protected Double offDiagDefault; /** * Gets the value of the numarray property. * * <p> * 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 <CODE>set</CODE> method for the numarray property. * * <p> * For example, to add a new item, do as follows: * <pre> * getNUMARRAY().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link ArrayType } * * */ public List<ArrayType> getNUMARRAY() { if (numarray == null) { numarray = new ArrayList<ArrayType>(); } return this.numarray; } /** * Gets the value of the matCell property. * * <p> * 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 <CODE>set</CODE> method for the matCell property. * * <p> * For example, to add a new item, do as follows: * <pre> * getMatCell().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link MatCell } * * */ public List<MatCell> getMatCell() { if (matCell == null) { matCell = new ArrayList<MatCell>(); } return this.matCell; } /** * Gets the value of the diagDefault property. * * @return * possible object is * {@link Double } * */ public Double getDiagDefault() { return diagDefault; } /** * Sets the value of the diagDefault property. * * @param value * allowed object is * {@link Double } * */ public void setDiagDefault(Double value) { this.diagDefault = value; } /** * Gets the value of the kind property. * * @return * possible object is * {@link String } * */ public String getKind() { if (kind == null) { return "any"; } else { return kind; } } /** * Sets the value of the kind property. * * @param value * allowed object is * {@link String } * */ public void setKind(String value) { this.kind = value; } /** * Gets the value of the nbCols property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getNbCols() { return nbCols; } /** * Sets the value of the nbCols property. * * @param value * allowed object is * {@link BigInteger } * */ public void setNbCols(BigInteger value) { this.nbCols = value; } /** * Gets the value of the nbRows property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getNbRows() { return nbRows; } /** * Sets the value of the nbRows property. * * @param value * allowed object is * {@link BigInteger } * */ public void setNbRows(BigInteger value) { this.nbRows = value; } /** * Gets the value of the offDiagDefault property. * * @return * possible object is * {@link Double } * */ public Double getOffDiagDefault() { return offDiagDefault; } /** * Sets the value of the offDiagDefault property. * * @param value * allowed object is * {@link Double } * */ public void setOffDiagDefault(Double value) { this.offDiagDefault = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/MiningBuildTask.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for MiningBuildTask element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="MiningBuildTask"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension" }) @XmlRootElement(name = "MiningBuildTask") public class MiningBuildTask { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/MiningField.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.math.BigDecimal; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for MiningField element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="MiningField"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="highValue" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="importance" type="{http://www.dmg.org/PMML-4_1}PROB-NUMBER" /> * &lt;attribute name="invalidValueTreatment" type="{http://www.dmg.org/PMML-4_1}INVALID-VALUE-TREATMENT-METHOD" default="returnInvalid" /> * &lt;attribute name="lowValue" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="missingValueReplacement" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="missingValueTreatment" type="{http://www.dmg.org/PMML-4_1}MISSING-VALUE-TREATMENT-METHOD" /> * &lt;attribute name="name" use="required" type="{http://www.dmg.org/PMML-4_1}FIELD-NAME" /> * &lt;attribute name="optype" type="{http://www.dmg.org/PMML-4_1}OPTYPE" /> * &lt;attribute name="outliers" type="{http://www.dmg.org/PMML-4_1}OUTLIER-TREATMENT-METHOD" default="asIs" /> * &lt;attribute name="usageType" type="{http://www.dmg.org/PMML-4_1}FIELD-USAGE-TYPE" default="active" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension" }) @XmlRootElement(name = "MiningField") public class MiningField { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlAttribute protected Double highValue; @XmlAttribute protected BigDecimal importance; @XmlAttribute protected INVALIDVALUETREATMENTMETHOD invalidValueTreatment; @XmlAttribute protected Double lowValue; @XmlAttribute protected String missingValueReplacement; @XmlAttribute protected MISSINGVALUETREATMENTMETHOD missingValueTreatment; @XmlAttribute(required = true) protected String name; @XmlAttribute protected OPTYPE optype; @XmlAttribute protected OUTLIERTREATMENTMETHOD outliers; @XmlAttribute protected FIELDUSAGETYPE usageType; public MiningField() {} public MiningField(String name, FIELDUSAGETYPE usageType) { this.name = name; this.usageType = usageType; } public MiningField(String name, FIELDUSAGETYPE usageType, MISSINGVALUETREATMENTMETHOD missingValueTreatment, String missingValueReplacement) { this.name = name; this.usageType = usageType; this.missingValueTreatment = missingValueTreatment; this.missingValueReplacement = missingValueReplacement; } /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the highValue property. * * @return * possible object is * {@link Double } * */ public Double getHighValue() { return highValue; } /** * Sets the value of the highValue property. * * @param value * allowed object is * {@link Double } * */ public void setHighValue(Double value) { this.highValue = value; } /** * Gets the value of the importance property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getImportance() { return importance; } /** * Sets the value of the importance property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setImportance(BigDecimal value) { this.importance = value; } /** * Gets the value of the invalidValueTreatment property. * * @return * possible object is * {@link INVALIDVALUETREATMENTMETHOD } * */ public INVALIDVALUETREATMENTMETHOD getInvalidValueTreatment() { if (invalidValueTreatment == null) { return INVALIDVALUETREATMENTMETHOD.RETURN_INVALID; } else { return invalidValueTreatment; } } /** * Sets the value of the invalidValueTreatment property. * * @param value * allowed object is * {@link INVALIDVALUETREATMENTMETHOD } * */ public void setInvalidValueTreatment(INVALIDVALUETREATMENTMETHOD value) { this.invalidValueTreatment = value; } /** * Gets the value of the lowValue property. * * @return * possible object is * {@link Double } * */ public Double getLowValue() { return lowValue; } /** * Sets the value of the lowValue property. * * @param value * allowed object is * {@link Double } * */ public void setLowValue(Double value) { this.lowValue = value; } /** * Gets the value of the missingValueReplacement property. * * @return * possible object is * {@link String } * */ public String getMissingValueReplacement() { return missingValueReplacement; } /** * Sets the value of the missingValueReplacement property. * * @param value * allowed object is * {@link String } * */ public void setMissingValueReplacement(String value) { this.missingValueReplacement = value; } /** * Gets the value of the missingValueTreatment property. * * @return * possible object is * {@link MISSINGVALUETREATMENTMETHOD } * */ public MISSINGVALUETREATMENTMETHOD getMissingValueTreatment() { return missingValueTreatment; } /** * Sets the value of the missingValueTreatment property. * * @param value * allowed object is * {@link MISSINGVALUETREATMENTMETHOD } * */ public void setMissingValueTreatment(MISSINGVALUETREATMENTMETHOD value) { this.missingValueTreatment = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the optype property. * * @return * possible object is * {@link OPTYPE } * */ public OPTYPE getOptype() { return optype; } /** * Sets the value of the optype property. * * @param value * allowed object is * {@link OPTYPE } * */ public void setOptype(OPTYPE value) { this.optype = value; } /** * Gets the value of the outliers property. * * @return * possible object is * {@link OUTLIERTREATMENTMETHOD } * */ public OUTLIERTREATMENTMETHOD getOutliers() { if (outliers == null) { return OUTLIERTREATMENTMETHOD.AS_IS; } else { return outliers; } } /** * Sets the value of the outliers property. * * @param value * allowed object is * {@link OUTLIERTREATMENTMETHOD } * */ public void setOutliers(OUTLIERTREATMENTMETHOD value) { this.outliers = value; } /** * Gets the value of the usageType property. * * @return * possible object is * {@link FIELDUSAGETYPE } * */ public FIELDUSAGETYPE getUsageType() { if (usageType == null) { return FIELDUSAGETYPE.ACTIVE; } else { return usageType; } } /** * Sets the value of the usageType property. * * @param value * allowed object is * {@link FIELDUSAGETYPE } * */ public void setUsageType(FIELDUSAGETYPE value) { this.usageType = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/MiningModel.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlElementRefs; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for MiningModel element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="MiningModel"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}MiningSchema"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Output" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}ModelStats" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}ModelExplanation" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Targets" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}LocalTransformations" minOccurs="0"/> * &lt;choice maxOccurs="unbounded" minOccurs="0"> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Regression"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}DecisionTree"/> * &lt;/choice> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Segmentation" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}ModelVerification" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="algorithmName" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="functionName" use="required" type="{http://www.dmg.org/PMML-4_1}MINING-FUNCTION" /> * &lt;attribute name="isScorable" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" /> * &lt;attribute name="modelName" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "content" }) @XmlRootElement(name = "MiningModel") public class MiningModel { @XmlElementRefs({ @XmlElementRef(name = "Regression", namespace = "http://www.dmg.org/PMML-4_1", type = Regression.class), @XmlElementRef(name = "ModelExplanation", namespace = "http://www.dmg.org/PMML-4_1", type = ModelExplanation.class), @XmlElementRef(name = "ModelStats", namespace = "http://www.dmg.org/PMML-4_1", type = ModelStats.class), @XmlElementRef(name = "Output", namespace = "http://www.dmg.org/PMML-4_1", type = Output.class), @XmlElementRef(name = "LocalTransformations", namespace = "http://www.dmg.org/PMML-4_1", type = LocalTransformations.class), @XmlElementRef(name = "DecisionTree", namespace = "http://www.dmg.org/PMML-4_1", type = DecisionTree.class), @XmlElementRef(name = "Segmentation", namespace = "http://www.dmg.org/PMML-4_1", type = Segmentation.class), @XmlElementRef(name = "Targets", namespace = "http://www.dmg.org/PMML-4_1", type = Targets.class), @XmlElementRef(name = "MiningSchema", namespace = "http://www.dmg.org/PMML-4_1", type = MiningSchema.class), @XmlElementRef(name = "ModelVerification", namespace = "http://www.dmg.org/PMML-4_1", type = ModelVerification.class), @XmlElementRef(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", type = Extension.class) }) protected List<Object> content; @XmlAttribute protected String algorithmName; @XmlAttribute(required = true) protected MININGFUNCTION functionName; @XmlAttribute protected Boolean isScorable; @XmlAttribute protected String modelName; /** * Gets the rest of the content model. * * <p> * You are getting this "catch-all" property because of the following reason: * The field name "Extension" is used by two different parts of a schema. See: * line 1801 of file:/home/david/workspace/weka/pmml-4-1.xsd * line 1788 of file:/home/david/workspace/weka/pmml-4-1.xsd * <p> * To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: * Gets the value of the content property. * * <p> * 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 <CODE>set</CODE> method for the content property. * * <p> * For example, to add a new item, do as follows: * <pre> * getContent().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link ModelExplanation } * {@link Regression } * {@link ModelStats } * {@link Output } * {@link LocalTransformations } * {@link DecisionTree } * {@link Segmentation } * {@link Targets } * {@link MiningSchema } * {@link ModelVerification } * {@link Extension } * * */ public List<Object> getContent() { if (content == null) { content = new ArrayList<Object>(); } return this.content; } /** * Gets the value of the algorithmName property. * * @return * possible object is * {@link String } * */ public String getAlgorithmName() { return algorithmName; } /** * Sets the value of the algorithmName property. * * @param value * allowed object is * {@link String } * */ public void setAlgorithmName(String value) { this.algorithmName = value; } /** * Gets the value of the functionName property. * * @return * possible object is * {@link MININGFUNCTION } * */ public MININGFUNCTION getFunctionName() { return functionName; } /** * Sets the value of the functionName property. * * @param value * allowed object is * {@link MININGFUNCTION } * */ public void setFunctionName(MININGFUNCTION value) { this.functionName = value; } /** * Gets the value of the isScorable property. * * @return * possible object is * {@link Boolean } * */ public boolean isIsScorable() { if (isScorable == null) { return true; } else { return isScorable; } } /** * Sets the value of the isScorable property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsScorable(Boolean value) { this.isScorable = value; } /** * Gets the value of the modelName property. * * @return * possible object is * {@link String } * */ public String getModelName() { return modelName; } /** * Sets the value of the modelName property. * * @param value * allowed object is * {@link String } * */ public void setModelName(String value) { this.modelName = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/MiningSchema.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for MiningSchema element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="MiningSchema"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}MiningField" maxOccurs="unbounded"/> * &lt;/sequence> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "miningField" }) @XmlRootElement(name = "MiningSchema") public class MiningSchema { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "MiningField", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<MiningField> miningField; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the miningField property. * * <p> * 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 <CODE>set</CODE> method for the miningField property. * * <p> * For example, to add a new item, do as follows: * <pre> * getMiningField().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link MiningField } * * */ public List<MiningField> getMiningFields() { if (miningField == null) { miningField = new ArrayList<MiningField>(); } return this.miningField; } public void addMiningFields(MiningField field) { if (miningField == null) { miningField = new ArrayList<MiningField>(); } this.miningField.add(field); } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/Minkowski.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for minkowski element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="minkowski"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="p-parameter" use="required" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension" }) @XmlRootElement(name = "minkowski") public class Minkowski { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlAttribute(name = "p-parameter", required = true) protected double pParameter; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the pParameter property. * */ public double getPParameter() { return pParameter; } /** * Sets the value of the pParameter property. * */ public void setPParameter(double value) { this.pParameter = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/MissingValueWeights.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for MissingValueWeights element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="MissingValueWeights"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;group ref="{http://www.dmg.org/PMML-4_1}NUM-ARRAY"/> * &lt;/sequence> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "array" }) @XmlRootElement(name = "MissingValueWeights") public class MissingValueWeights { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "Array", namespace = "http://www.dmg.org/PMML-4_1") protected ArrayType array; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the array property. * * @return * possible object is * {@link ArrayType } * */ public ArrayType getArray() { return array; } /** * Sets the value of the array property. * * @param value * allowed object is * {@link ArrayType } * */ public void setArray(ArrayType value) { this.array = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/ModelExplanation.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for ModelExplanation element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="ModelExplanation"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;choice> * &lt;element ref="{http://www.dmg.org/PMML-4_1}PredictiveModelQuality" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}ClusteringModelQuality" maxOccurs="unbounded" minOccurs="0"/> * &lt;/choice> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Correlations" minOccurs="0"/> * &lt;/sequence> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "predictiveModelQuality", "clusteringModelQuality", "correlations" }) @XmlRootElement(name = "ModelExplanation") public class ModelExplanation { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "PredictiveModelQuality", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<PredictiveModelQuality> predictiveModelQuality; @XmlElement(name = "ClusteringModelQuality", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<ClusteringModelQuality> clusteringModelQuality; @XmlElement(name = "Correlations", namespace = "http://www.dmg.org/PMML-4_1") protected Correlations correlations; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the predictiveModelQuality property. * * <p> * 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 <CODE>set</CODE> method for the predictiveModelQuality property. * * <p> * For example, to add a new item, do as follows: * <pre> * getPredictiveModelQuality().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link PredictiveModelQuality } * * */ public List<PredictiveModelQuality> getPredictiveModelQuality() { if (predictiveModelQuality == null) { predictiveModelQuality = new ArrayList<PredictiveModelQuality>(); } return this.predictiveModelQuality; } /** * Gets the value of the clusteringModelQuality property. * * <p> * 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 <CODE>set</CODE> method for the clusteringModelQuality property. * * <p> * For example, to add a new item, do as follows: * <pre> * getClusteringModelQuality().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link ClusteringModelQuality } * * */ public List<ClusteringModelQuality> getClusteringModelQuality() { if (clusteringModelQuality == null) { clusteringModelQuality = new ArrayList<ClusteringModelQuality>(); } return this.clusteringModelQuality; } /** * Gets the value of the correlations property. * * @return * possible object is * {@link Correlations } * */ public Correlations getCorrelations() { return correlations; } /** * Sets the value of the correlations property. * * @param value * allowed object is * {@link Correlations } * */ public void setCorrelations(Correlations value) { this.correlations = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/ModelLiftGraph.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for ModelLiftGraph element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="ModelLiftGraph"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}LiftGraph"/> * &lt;/sequence> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "liftGraph" }) @XmlRootElement(name = "ModelLiftGraph") public class ModelLiftGraph { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "LiftGraph", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected LiftGraph liftGraph; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the liftGraph property. * * @return * possible object is * {@link LiftGraph } * */ public LiftGraph getLiftGraph() { return liftGraph; } /** * Sets the value of the liftGraph property. * * @param value * allowed object is * {@link LiftGraph } * */ public void setLiftGraph(LiftGraph value) { this.liftGraph = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/ModelStats.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for ModelStats element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="ModelStats"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}UnivariateStats" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}MultivariateStats" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "univariateStats", "multivariateStats" }) @XmlRootElement(name = "ModelStats") public class ModelStats { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "UnivariateStats", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<UnivariateStats> univariateStats; @XmlElement(name = "MultivariateStats", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<MultivariateStats> multivariateStats; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the univariateStats property. * * <p> * 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 <CODE>set</CODE> method for the univariateStats property. * * <p> * For example, to add a new item, do as follows: * <pre> * getUnivariateStats().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link UnivariateStats } * * */ public List<UnivariateStats> getUnivariateStats() { if (univariateStats == null) { univariateStats = new ArrayList<UnivariateStats>(); } return this.univariateStats; } /** * Gets the value of the multivariateStats property. * * <p> * 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 <CODE>set</CODE> method for the multivariateStats property. * * <p> * For example, to add a new item, do as follows: * <pre> * getMultivariateStats().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link MultivariateStats } * * */ public List<MultivariateStats> getMultivariateStats() { if (multivariateStats == null) { multivariateStats = new ArrayList<MultivariateStats>(); } return this.multivariateStats; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/ModelVerification.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.math.BigInteger; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for ModelVerification element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="ModelVerification"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}VerificationFields"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}InlineTable"/> * &lt;/sequence> * &lt;attribute name="fieldCount" type="{http://www.dmg.org/PMML-4_1}INT-NUMBER" /> * &lt;attribute name="recordCount" type="{http://www.dmg.org/PMML-4_1}INT-NUMBER" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "verificationFields", "inlineTable" }) @XmlRootElement(name = "ModelVerification") public class ModelVerification { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "VerificationFields", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected VerificationFields verificationFields; @XmlElement(name = "InlineTable", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected InlineTable inlineTable; @XmlAttribute protected BigInteger fieldCount; @XmlAttribute protected BigInteger recordCount; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the verificationFields property. * * @return * possible object is * {@link VerificationFields } * */ public VerificationFields getVerificationFields() { return verificationFields; } /** * Sets the value of the verificationFields property. * * @param value * allowed object is * {@link VerificationFields } * */ public void setVerificationFields(VerificationFields value) { this.verificationFields = value; } /** * Gets the value of the inlineTable property. * * @return * possible object is * {@link InlineTable } * */ public InlineTable getInlineTable() { return inlineTable; } /** * Sets the value of the inlineTable property. * * @param value * allowed object is * {@link InlineTable } * */ public void setInlineTable(InlineTable value) { this.inlineTable = value; } /** * Gets the value of the fieldCount property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getFieldCount() { return fieldCount; } /** * Sets the value of the fieldCount property. * * @param value * allowed object is * {@link BigInteger } * */ public void setFieldCount(BigInteger value) { this.fieldCount = value; } /** * Gets the value of the recordCount property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getRecordCount() { return recordCount; } /** * Sets the value of the recordCount property. * * @param value * allowed object is * {@link BigInteger } * */ public void setRecordCount(BigInteger value) { this.recordCount = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/MultivariateStat.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.math.BigDecimal; import java.math.BigInteger; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for MultivariateStat element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="MultivariateStat"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="category" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="chiSquareValue" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="confidenceLevel" type="{http://www.dmg.org/PMML-4_1}PROB-NUMBER" default="0.95" /> * &lt;attribute name="confidenceLowerBound" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="confidenceUpperBound" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="dF" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="exponent" type="{http://www.dmg.org/PMML-4_1}INT-NUMBER" default="1" /> * &lt;attribute name="fStatistic" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="importance" type="{http://www.dmg.org/PMML-4_1}PROB-NUMBER" /> * &lt;attribute name="isIntercept" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> * &lt;attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="pValueAlpha" type="{http://www.dmg.org/PMML-4_1}PROB-NUMBER" /> * &lt;attribute name="pValueFinal" type="{http://www.dmg.org/PMML-4_1}PROB-NUMBER" /> * &lt;attribute name="pValueInitial" type="{http://www.dmg.org/PMML-4_1}PROB-NUMBER" /> * &lt;attribute name="stdError" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="tValue" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension" }) @XmlRootElement(name = "MultivariateStat") public class MultivariateStat { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlAttribute protected String category; @XmlAttribute protected Double chiSquareValue; @XmlAttribute protected BigDecimal confidenceLevel; @XmlAttribute protected Double confidenceLowerBound; @XmlAttribute protected Double confidenceUpperBound; @XmlAttribute(name = "dF") protected Double df; @XmlAttribute protected BigInteger exponent; @XmlAttribute protected Double fStatistic; @XmlAttribute protected BigDecimal importance; @XmlAttribute protected Boolean isIntercept; @XmlAttribute protected String name; @XmlAttribute protected BigDecimal pValueAlpha; @XmlAttribute protected BigDecimal pValueFinal; @XmlAttribute protected BigDecimal pValueInitial; @XmlAttribute protected Double stdError; @XmlAttribute protected Double tValue; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the category property. * * @return * possible object is * {@link String } * */ public String getCategory() { return category; } /** * Sets the value of the category property. * * @param value * allowed object is * {@link String } * */ public void setCategory(String value) { this.category = value; } /** * Gets the value of the chiSquareValue property. * * @return * possible object is * {@link Double } * */ public Double getChiSquareValue() { return chiSquareValue; } /** * Sets the value of the chiSquareValue property. * * @param value * allowed object is * {@link Double } * */ public void setChiSquareValue(Double value) { this.chiSquareValue = value; } /** * Gets the value of the confidenceLevel property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getConfidenceLevel() { if (confidenceLevel == null) { return new BigDecimal("0.95"); } else { return confidenceLevel; } } /** * Sets the value of the confidenceLevel property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setConfidenceLevel(BigDecimal value) { this.confidenceLevel = value; } /** * Gets the value of the confidenceLowerBound property. * * @return * possible object is * {@link Double } * */ public Double getConfidenceLowerBound() { return confidenceLowerBound; } /** * Sets the value of the confidenceLowerBound property. * * @param value * allowed object is * {@link Double } * */ public void setConfidenceLowerBound(Double value) { this.confidenceLowerBound = value; } /** * Gets the value of the confidenceUpperBound property. * * @return * possible object is * {@link Double } * */ public Double getConfidenceUpperBound() { return confidenceUpperBound; } /** * Sets the value of the confidenceUpperBound property. * * @param value * allowed object is * {@link Double } * */ public void setConfidenceUpperBound(Double value) { this.confidenceUpperBound = value; } /** * Gets the value of the df property. * * @return * possible object is * {@link Double } * */ public Double getDF() { return df; } /** * Sets the value of the df property. * * @param value * allowed object is * {@link Double } * */ public void setDF(Double value) { this.df = value; } /** * Gets the value of the exponent property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getExponent() { if (exponent == null) { return new BigInteger("1"); } else { return exponent; } } /** * Sets the value of the exponent property. * * @param value * allowed object is * {@link BigInteger } * */ public void setExponent(BigInteger value) { this.exponent = value; } /** * Gets the value of the fStatistic property. * * @return * possible object is * {@link Double } * */ public Double getFStatistic() { return fStatistic; } /** * Sets the value of the fStatistic property. * * @param value * allowed object is * {@link Double } * */ public void setFStatistic(Double value) { this.fStatistic = value; } /** * Gets the value of the importance property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getImportance() { return importance; } /** * Sets the value of the importance property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setImportance(BigDecimal value) { this.importance = value; } /** * Gets the value of the isIntercept property. * * @return * possible object is * {@link Boolean } * */ public boolean isIsIntercept() { if (isIntercept == null) { return false; } else { return isIntercept; } } /** * Sets the value of the isIntercept property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsIntercept(Boolean value) { this.isIntercept = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the pValueAlpha property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getPValueAlpha() { return pValueAlpha; } /** * Sets the value of the pValueAlpha property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setPValueAlpha(BigDecimal value) { this.pValueAlpha = value; } /** * Gets the value of the pValueFinal property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getPValueFinal() { return pValueFinal; } /** * Sets the value of the pValueFinal property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setPValueFinal(BigDecimal value) { this.pValueFinal = value; } /** * Gets the value of the pValueInitial property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getPValueInitial() { return pValueInitial; } /** * Sets the value of the pValueInitial property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setPValueInitial(BigDecimal value) { this.pValueInitial = value; } /** * Gets the value of the stdError property. * * @return * possible object is * {@link Double } * */ public Double getStdError() { return stdError; } /** * Sets the value of the stdError property. * * @param value * allowed object is * {@link Double } * */ public void setStdError(Double value) { this.stdError = value; } /** * Gets the value of the tValue property. * * @return * possible object is * {@link Double } * */ public Double getTValue() { return tValue; } /** * Sets the value of the tValue property. * * @param value * allowed object is * {@link Double } * */ public void setTValue(Double value) { this.tValue = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/MultivariateStats.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for MultivariateStats element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="MultivariateStats"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}MultivariateStat" maxOccurs="unbounded"/> * &lt;/sequence> * &lt;attribute name="targetCategory" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "multivariateStat" }) @XmlRootElement(name = "MultivariateStats") public class MultivariateStats { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "MultivariateStat", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<MultivariateStat> multivariateStat; @XmlAttribute protected String targetCategory; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the multivariateStat property. * * <p> * 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 <CODE>set</CODE> method for the multivariateStat property. * * <p> * For example, to add a new item, do as follows: * <pre> * getMultivariateStat().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link MultivariateStat } * * */ public List<MultivariateStat> getMultivariateStat() { if (multivariateStat == null) { multivariateStat = new ArrayList<MultivariateStat>(); } return this.multivariateStat; } /** * Gets the value of the targetCategory property. * * @return * possible object is * {@link String } * */ public String getTargetCategory() { return targetCategory; } /** * Sets the value of the targetCategory property. * * @param value * allowed object is * {@link String } * */ public void setTargetCategory(String value) { this.targetCategory = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/NNNORMALIZATIONMETHOD.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; /** * <p>Java class for NN-NORMALIZATION-METHOD. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * &lt;simpleType name="NN-NORMALIZATION-METHOD"> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"> * &lt;enumeration value="none"/> * &lt;enumeration value="simplemax"/> * &lt;enumeration value="softmax"/> * &lt;/restriction> * &lt;/simpleType> * </pre> * */ @XmlEnum public enum NNNORMALIZATIONMETHOD { @XmlEnumValue("none") NONE("none"), @XmlEnumValue("simplemax") SIMPLEMAX("simplemax"), @XmlEnumValue("softmax") SOFTMAX("softmax"); private final String value; NNNORMALIZATIONMETHOD(String v) { value = v; } public String value() { return value; } public static NNNORMALIZATIONMETHOD fromValue(String v) { for (NNNORMALIZATIONMETHOD c: NNNORMALIZATIONMETHOD.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v.toString()); } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/NOTRUECHILDSTRATEGY.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; /** * <p>Java class for NO-TRUE-CHILD-STRATEGY. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * &lt;simpleType name="NO-TRUE-CHILD-STRATEGY"> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"> * &lt;enumeration value="returnNullPrediction"/> * &lt;enumeration value="returnLastPrediction"/> * &lt;/restriction> * &lt;/simpleType> * </pre> * */ @XmlEnum public enum NOTRUECHILDSTRATEGY { @XmlEnumValue("returnLastPrediction") RETURN_LAST_PREDICTION("returnLastPrediction"), @XmlEnumValue("returnNullPrediction") RETURN_NULL_PREDICTION("returnNullPrediction"); private final String value; NOTRUECHILDSTRATEGY(String v) { value = v; } public String value() { return value; } public static NOTRUECHILDSTRATEGY fromValue(String v) { for (NOTRUECHILDSTRATEGY c: NOTRUECHILDSTRATEGY.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v.toString()); } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/NaiveBayesModel.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlElementRefs; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for NaiveBayesModel element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="NaiveBayesModel"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}MiningSchema"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Output" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}ModelStats" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}ModelExplanation" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Targets" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}LocalTransformations" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}BayesInputs"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}BayesOutput"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}ModelVerification" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="algorithmName" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="functionName" use="required" type="{http://www.dmg.org/PMML-4_1}MINING-FUNCTION" /> * &lt;attribute name="isScorable" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" /> * &lt;attribute name="modelName" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="threshold" use="required" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "content" }) @XmlRootElement(name = "NaiveBayesModel") public class NaiveBayesModel { @XmlElementRefs({ @XmlElementRef(name = "ModelExplanation", namespace = "http://www.dmg.org/PMML-4_1", type = ModelExplanation.class), @XmlElementRef(name = "ModelStats", namespace = "http://www.dmg.org/PMML-4_1", type = ModelStats.class), @XmlElementRef(name = "Output", namespace = "http://www.dmg.org/PMML-4_1", type = Output.class), @XmlElementRef(name = "BayesInputs", namespace = "http://www.dmg.org/PMML-4_1", type = BayesInputs.class), @XmlElementRef(name = "BayesOutput", namespace = "http://www.dmg.org/PMML-4_1", type = BayesOutput.class), @XmlElementRef(name = "LocalTransformations", namespace = "http://www.dmg.org/PMML-4_1", type = LocalTransformations.class), @XmlElementRef(name = "Targets", namespace = "http://www.dmg.org/PMML-4_1", type = Targets.class), @XmlElementRef(name = "MiningSchema", namespace = "http://www.dmg.org/PMML-4_1", type = MiningSchema.class), @XmlElementRef(name = "ModelVerification", namespace = "http://www.dmg.org/PMML-4_1", type = ModelVerification.class), @XmlElementRef(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", type = Extension.class) }) protected List<Object> content; @XmlAttribute protected String algorithmName; @XmlAttribute(required = true) protected MININGFUNCTION functionName; @XmlAttribute protected Boolean isScorable; @XmlAttribute protected String modelName; @XmlAttribute(required = true) protected double threshold; /** * Gets the rest of the content model. * * <p> * You are getting this "catch-all" property because of the following reason: * The field name "Extension" is used by two different parts of a schema. See: * line 1922 of file:/home/david/workspace/weka/pmml-4-1.xsd * line 1912 of file:/home/david/workspace/weka/pmml-4-1.xsd * <p> * To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: * Gets the value of the content property. * * <p> * 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 <CODE>set</CODE> method for the content property. * * <p> * For example, to add a new item, do as follows: * <pre> * getContent().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link ModelExplanation } * {@link ModelStats } * {@link BayesInputs } * {@link Output } * {@link BayesOutput } * {@link LocalTransformations } * {@link Targets } * {@link MiningSchema } * {@link ModelVerification } * {@link Extension } * * */ public List<Object> getContent() { if (content == null) { content = new ArrayList<Object>(); } return this.content; } /** * Gets the value of the algorithmName property. * * @return * possible object is * {@link String } * */ public String getAlgorithmName() { return algorithmName; } /** * Sets the value of the algorithmName property. * * @param value * allowed object is * {@link String } * */ public void setAlgorithmName(String value) { this.algorithmName = value; } /** * Gets the value of the functionName property. * * @return * possible object is * {@link MININGFUNCTION } * */ public MININGFUNCTION getFunctionName() { return functionName; } /** * Sets the value of the functionName property. * * @param value * allowed object is * {@link MININGFUNCTION } * */ public void setFunctionName(MININGFUNCTION value) { this.functionName = value; } /** * Gets the value of the isScorable property. * * @return * possible object is * {@link Boolean } * */ public boolean isIsScorable() { if (isScorable == null) { return true; } else { return isScorable; } } /** * Sets the value of the isScorable property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsScorable(Boolean value) { this.isScorable = value; } /** * Gets the value of the modelName property. * * @return * possible object is * {@link String } * */ public String getModelName() { return modelName; } /** * Sets the value of the modelName property. * * @param value * allowed object is * {@link String } * */ public void setModelName(String value) { this.modelName = value; } /** * Gets the value of the threshold property. * */ public double getThreshold() { return threshold; } /** * Sets the value of the threshold property. * */ public void setThreshold(double value) { this.threshold = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/NearestNeighborModel.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.math.BigInteger; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlElementRefs; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for NearestNeighborModel element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="NearestNeighborModel"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}MiningSchema"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Output" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}ModelStats" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}ModelExplanation" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Targets" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}LocalTransformations" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}TrainingInstances"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}ComparisonMeasure"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}KNNInputs"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}ModelVerification" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="algorithmName" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="categoricalScoringMethod" type="{http://www.dmg.org/PMML-4_1}CAT-SCORING-METHOD" default="majorityVote" /> * &lt;attribute name="continuousScoringMethod" type="{http://www.dmg.org/PMML-4_1}CONT-SCORING-METHOD" default="average" /> * &lt;attribute name="functionName" use="required" type="{http://www.dmg.org/PMML-4_1}MINING-FUNCTION" /> * &lt;attribute name="instanceIdVariable" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="isScorable" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" /> * &lt;attribute name="modelName" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="numberOfNeighbors" use="required" type="{http://www.dmg.org/PMML-4_1}INT-NUMBER" /> * &lt;attribute name="threshold" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" default="0.001" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "content" }) @XmlRootElement(name = "NearestNeighborModel") public class NearestNeighborModel { @XmlElementRefs({ @XmlElementRef(name = "ModelExplanation", namespace = "http://www.dmg.org/PMML-4_1", type = ModelExplanation.class), @XmlElementRef(name = "ModelStats", namespace = "http://www.dmg.org/PMML-4_1", type = ModelStats.class), @XmlElementRef(name = "Output", namespace = "http://www.dmg.org/PMML-4_1", type = Output.class), @XmlElementRef(name = "TrainingInstances", namespace = "http://www.dmg.org/PMML-4_1", type = TrainingInstances.class), @XmlElementRef(name = "ComparisonMeasure", namespace = "http://www.dmg.org/PMML-4_1", type = ComparisonMeasure.class), @XmlElementRef(name = "LocalTransformations", namespace = "http://www.dmg.org/PMML-4_1", type = LocalTransformations.class), @XmlElementRef(name = "Targets", namespace = "http://www.dmg.org/PMML-4_1", type = Targets.class), @XmlElementRef(name = "MiningSchema", namespace = "http://www.dmg.org/PMML-4_1", type = MiningSchema.class), @XmlElementRef(name = "KNNInputs", namespace = "http://www.dmg.org/PMML-4_1", type = KNNInputs.class), @XmlElementRef(name = "ModelVerification", namespace = "http://www.dmg.org/PMML-4_1", type = ModelVerification.class), @XmlElementRef(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", type = Extension.class) }) protected List<Object> content; @XmlAttribute protected String algorithmName; @XmlAttribute protected CATSCORINGMETHOD categoricalScoringMethod; @XmlAttribute protected CONTSCORINGMETHOD continuousScoringMethod; @XmlAttribute(required = true) protected MININGFUNCTION functionName; @XmlAttribute protected String instanceIdVariable; @XmlAttribute protected Boolean isScorable; @XmlAttribute protected String modelName; @XmlAttribute(required = true) protected BigInteger numberOfNeighbors; @XmlAttribute protected Double threshold; /** * Gets the rest of the content model. * * <p> * You are getting this "catch-all" property because of the following reason: * The field name "Extension" is used by two different parts of a schema. See: * line 814 of file:/home/david/workspace/weka/pmml-4-1.xsd * line 803 of file:/home/david/workspace/weka/pmml-4-1.xsd * <p> * To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: * Gets the value of the content property. * * <p> * 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 <CODE>set</CODE> method for the content property. * * <p> * For example, to add a new item, do as follows: * <pre> * getContent().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link ModelExplanation } * {@link ModelStats } * {@link TrainingInstances } * {@link Output } * {@link ComparisonMeasure } * {@link LocalTransformations } * {@link Targets } * {@link KNNInputs } * {@link MiningSchema } * {@link ModelVerification } * {@link Extension } * * */ public List<Object> getContent() { if (content == null) { content = new ArrayList<Object>(); } return this.content; } /** * Gets the value of the algorithmName property. * * @return * possible object is * {@link String } * */ public String getAlgorithmName() { return algorithmName; } /** * Sets the value of the algorithmName property. * * @param value * allowed object is * {@link String } * */ public void setAlgorithmName(String value) { this.algorithmName = value; } /** * Gets the value of the categoricalScoringMethod property. * * @return * possible object is * {@link CATSCORINGMETHOD } * */ public CATSCORINGMETHOD getCategoricalScoringMethod() { if (categoricalScoringMethod == null) { return CATSCORINGMETHOD.MAJORITY_VOTE; } else { return categoricalScoringMethod; } } /** * Sets the value of the categoricalScoringMethod property. * * @param value * allowed object is * {@link CATSCORINGMETHOD } * */ public void setCategoricalScoringMethod(CATSCORINGMETHOD value) { this.categoricalScoringMethod = value; } /** * Gets the value of the continuousScoringMethod property. * * @return * possible object is * {@link CONTSCORINGMETHOD } * */ public CONTSCORINGMETHOD getContinuousScoringMethod() { if (continuousScoringMethod == null) { return CONTSCORINGMETHOD.AVERAGE; } else { return continuousScoringMethod; } } /** * Sets the value of the continuousScoringMethod property. * * @param value * allowed object is * {@link CONTSCORINGMETHOD } * */ public void setContinuousScoringMethod(CONTSCORINGMETHOD value) { this.continuousScoringMethod = value; } /** * Gets the value of the functionName property. * * @return * possible object is * {@link MININGFUNCTION } * */ public MININGFUNCTION getFunctionName() { return functionName; } /** * Sets the value of the functionName property. * * @param value * allowed object is * {@link MININGFUNCTION } * */ public void setFunctionName(MININGFUNCTION value) { this.functionName = value; } /** * Gets the value of the instanceIdVariable property. * * @return * possible object is * {@link String } * */ public String getInstanceIdVariable() { return instanceIdVariable; } /** * Sets the value of the instanceIdVariable property. * * @param value * allowed object is * {@link String } * */ public void setInstanceIdVariable(String value) { this.instanceIdVariable = value; } /** * Gets the value of the isScorable property. * * @return * possible object is * {@link Boolean } * */ public boolean isIsScorable() { if (isScorable == null) { return true; } else { return isScorable; } } /** * Sets the value of the isScorable property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsScorable(Boolean value) { this.isScorable = value; } /** * Gets the value of the modelName property. * * @return * possible object is * {@link String } * */ public String getModelName() { return modelName; } /** * Sets the value of the modelName property. * * @param value * allowed object is * {@link String } * */ public void setModelName(String value) { this.modelName = value; } /** * Gets the value of the numberOfNeighbors property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getNumberOfNeighbors() { return numberOfNeighbors; } /** * Sets the value of the numberOfNeighbors property. * * @param value * allowed object is * {@link BigInteger } * */ public void setNumberOfNeighbors(BigInteger value) { this.numberOfNeighbors = value; } /** * Gets the value of the threshold property. * * @return * possible object is * {@link Double } * */ public double getThreshold() { if (threshold == null) { return 0.001D; } else { return threshold; } } /** * Sets the value of the threshold property. * * @param value * allowed object is * {@link Double } * */ public void setThreshold(Double value) { this.threshold = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/NeuralInput.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for NeuralInput element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="NeuralInput"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}DerivedField"/> * &lt;/sequence> * &lt;attribute name="id" use="required" type="{http://www.dmg.org/PMML-4_1}NN-NEURON-ID" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "derivedField" }) @XmlRootElement(name = "NeuralInput") public class NeuralInput { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "DerivedField", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected DerivedField derivedField; @XmlAttribute(required = true) protected String id; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the derivedField property. * * @return * possible object is * {@link DerivedField } * */ public DerivedField getDerivedField() { return derivedField; } /** * Sets the value of the derivedField property. * * @param value * allowed object is * {@link DerivedField } * */ public void setDerivedField(DerivedField value) { this.derivedField = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/NeuralInputs.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.math.BigInteger; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for NeuralInputs element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="NeuralInputs"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}NeuralInput" maxOccurs="unbounded"/> * &lt;/sequence> * &lt;attribute name="numberOfInputs" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "neuralInput" }) @XmlRootElement(name = "NeuralInputs") public class NeuralInputs { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "NeuralInput", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<NeuralInput> neuralInput; @XmlAttribute protected BigInteger numberOfInputs; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the neuralInput property. * * <p> * 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 <CODE>set</CODE> method for the neuralInput property. * * <p> * For example, to add a new item, do as follows: * <pre> * getNeuralInput().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link NeuralInput } * * */ public List<NeuralInput> getNeuralInput() { if (neuralInput == null) { neuralInput = new ArrayList<NeuralInput>(); } return this.neuralInput; } /** * Gets the value of the numberOfInputs property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getNumberOfInputs() { return numberOfInputs; } /** * Sets the value of the numberOfInputs property. * * @param value * allowed object is * {@link BigInteger } * */ public void setNumberOfInputs(BigInteger value) { this.numberOfInputs = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/NeuralLayer.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.math.BigInteger; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for NeuralLayer element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="NeuralLayer"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Neuron" maxOccurs="unbounded"/> * &lt;/sequence> * &lt;attribute name="activationFunction" type="{http://www.dmg.org/PMML-4_1}ACTIVATION-FUNCTION" /> * &lt;attribute name="altitude" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" /> * &lt;attribute name="normalizationMethod" type="{http://www.dmg.org/PMML-4_1}NN-NORMALIZATION-METHOD" /> * &lt;attribute name="numberOfNeurons" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" /> * &lt;attribute name="threshold" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" /> * &lt;attribute name="width" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "neuron" }) @XmlRootElement(name = "NeuralLayer") public class NeuralLayer { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "Neuron", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Neuron> neuron; @XmlAttribute protected ACTIVATIONFUNCTION activationFunction; @XmlAttribute protected Double altitude; @XmlAttribute protected NNNORMALIZATIONMETHOD normalizationMethod; @XmlAttribute protected BigInteger numberOfNeurons; @XmlAttribute protected Double threshold; @XmlAttribute protected Double width; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the neuron property. * * <p> * 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 <CODE>set</CODE> method for the neuron property. * * <p> * For example, to add a new item, do as follows: * <pre> * getNeuron().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Neuron } * * */ public List<Neuron> getNeuron() { if (neuron == null) { neuron = new ArrayList<Neuron>(); } return this.neuron; } /** * Gets the value of the activationFunction property. * * @return * possible object is * {@link ACTIVATIONFUNCTION } * */ public ACTIVATIONFUNCTION getActivationFunction() { return activationFunction; } /** * Sets the value of the activationFunction property. * * @param value * allowed object is * {@link ACTIVATIONFUNCTION } * */ public void setActivationFunction(ACTIVATIONFUNCTION value) { this.activationFunction = value; } /** * Gets the value of the altitude property. * * @return * possible object is * {@link Double } * */ public Double getAltitude() { return altitude; } /** * Sets the value of the altitude property. * * @param value * allowed object is * {@link Double } * */ public void setAltitude(Double value) { this.altitude = value; } /** * Gets the value of the normalizationMethod property. * * @return * possible object is * {@link NNNORMALIZATIONMETHOD } * */ public NNNORMALIZATIONMETHOD getNormalizationMethod() { return normalizationMethod; } /** * Sets the value of the normalizationMethod property. * * @param value * allowed object is * {@link NNNORMALIZATIONMETHOD } * */ public void setNormalizationMethod(NNNORMALIZATIONMETHOD value) { this.normalizationMethod = value; } /** * Gets the value of the numberOfNeurons property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getNumberOfNeurons() { return numberOfNeurons; } /** * Sets the value of the numberOfNeurons property. * * @param value * allowed object is * {@link BigInteger } * */ public void setNumberOfNeurons(BigInteger value) { this.numberOfNeurons = value; } /** * Gets the value of the threshold property. * * @return * possible object is * {@link Double } * */ public Double getThreshold() { return threshold; } /** * Sets the value of the threshold property. * * @param value * allowed object is * {@link Double } * */ public void setThreshold(Double value) { this.threshold = value; } /** * Gets the value of the width property. * * @return * possible object is * {@link Double } * */ public Double getWidth() { return width; } /** * Sets the value of the width property. * * @param value * allowed object is * {@link Double } * */ public void setWidth(Double value) { this.width = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/NeuralNetwork.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.math.BigInteger; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlElementRefs; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for NeuralNetwork element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="NeuralNetwork"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}MiningSchema"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Output" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}ModelStats" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}ModelExplanation" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Targets" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}LocalTransformations" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}NeuralInputs"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}NeuralLayer" maxOccurs="unbounded"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}NeuralOutputs" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}ModelVerification" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="activationFunction" use="required" type="{http://www.dmg.org/PMML-4_1}ACTIVATION-FUNCTION" /> * &lt;attribute name="algorithmName" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="altitude" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" default="1.0" /> * &lt;attribute name="functionName" use="required" type="{http://www.dmg.org/PMML-4_1}MINING-FUNCTION" /> * &lt;attribute name="isScorable" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" /> * &lt;attribute name="modelName" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="normalizationMethod" type="{http://www.dmg.org/PMML-4_1}NN-NORMALIZATION-METHOD" default="none" /> * &lt;attribute name="numberOfLayers" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" /> * &lt;attribute name="threshold" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" default="0" /> * &lt;attribute name="width" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "content" }) @XmlRootElement(name = "NeuralNetwork") public class NeuralNetwork { @XmlElementRefs({ @XmlElementRef(name = "ModelExplanation", namespace = "http://www.dmg.org/PMML-4_1", type = ModelExplanation.class), @XmlElementRef(name = "ModelStats", namespace = "http://www.dmg.org/PMML-4_1", type = ModelStats.class), @XmlElementRef(name = "Output", namespace = "http://www.dmg.org/PMML-4_1", type = Output.class), @XmlElementRef(name = "LocalTransformations", namespace = "http://www.dmg.org/PMML-4_1", type = LocalTransformations.class), @XmlElementRef(name = "NeuralLayer", namespace = "http://www.dmg.org/PMML-4_1", type = NeuralLayer.class), @XmlElementRef(name = "Targets", namespace = "http://www.dmg.org/PMML-4_1", type = Targets.class), @XmlElementRef(name = "NeuralOutputs", namespace = "http://www.dmg.org/PMML-4_1", type = NeuralOutputs.class), @XmlElementRef(name = "MiningSchema", namespace = "http://www.dmg.org/PMML-4_1", type = MiningSchema.class), @XmlElementRef(name = "NeuralInputs", namespace = "http://www.dmg.org/PMML-4_1", type = NeuralInputs.class), @XmlElementRef(name = "ModelVerification", namespace = "http://www.dmg.org/PMML-4_1", type = ModelVerification.class), @XmlElementRef(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", type = Extension.class) }) protected List<Object> content; @XmlAttribute(required = true) protected ACTIVATIONFUNCTION activationFunction; @XmlAttribute protected String algorithmName; @XmlAttribute protected Double altitude; @XmlAttribute(required = true) protected MININGFUNCTION functionName; @XmlAttribute protected Boolean isScorable; @XmlAttribute protected String modelName; @XmlAttribute protected NNNORMALIZATIONMETHOD normalizationMethod; @XmlAttribute protected BigInteger numberOfLayers; @XmlAttribute protected Double threshold; @XmlAttribute protected Double width; /** * Gets the rest of the content model. * * <p> * You are getting this "catch-all" property because of the following reason: * The field name "Extension" is used by two different parts of a schema. See: * line 3183 of file:/home/david/workspace/weka/pmml-4-1.xsd * line 3172 of file:/home/david/workspace/weka/pmml-4-1.xsd * <p> * To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: * Gets the value of the content property. * * <p> * 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 <CODE>set</CODE> method for the content property. * * <p> * For example, to add a new item, do as follows: * <pre> * getContent().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link ModelExplanation } * {@link ModelStats } * {@link Output } * {@link NeuralLayer } * {@link LocalTransformations } * {@link Targets } * {@link NeuralOutputs } * {@link MiningSchema } * {@link ModelVerification } * {@link NeuralInputs } * {@link Extension } * * */ public List<Object> getContent() { if (content == null) { content = new ArrayList<Object>(); } return this.content; } /** * Gets the value of the activationFunction property. * * @return * possible object is * {@link ACTIVATIONFUNCTION } * */ public ACTIVATIONFUNCTION getActivationFunction() { return activationFunction; } /** * Sets the value of the activationFunction property. * * @param value * allowed object is * {@link ACTIVATIONFUNCTION } * */ public void setActivationFunction(ACTIVATIONFUNCTION value) { this.activationFunction = value; } /** * Gets the value of the algorithmName property. * * @return * possible object is * {@link String } * */ public String getAlgorithmName() { return algorithmName; } /** * Sets the value of the algorithmName property. * * @param value * allowed object is * {@link String } * */ public void setAlgorithmName(String value) { this.algorithmName = value; } /** * Gets the value of the altitude property. * * @return * possible object is * {@link Double } * */ public double getAltitude() { if (altitude == null) { return 1.0D; } else { return altitude; } } /** * Sets the value of the altitude property. * * @param value * allowed object is * {@link Double } * */ public void setAltitude(Double value) { this.altitude = value; } /** * Gets the value of the functionName property. * * @return * possible object is * {@link MININGFUNCTION } * */ public MININGFUNCTION getFunctionName() { return functionName; } /** * Sets the value of the functionName property. * * @param value * allowed object is * {@link MININGFUNCTION } * */ public void setFunctionName(MININGFUNCTION value) { this.functionName = value; } /** * Gets the value of the isScorable property. * * @return * possible object is * {@link Boolean } * */ public boolean isIsScorable() { if (isScorable == null) { return true; } else { return isScorable; } } /** * Sets the value of the isScorable property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsScorable(Boolean value) { this.isScorable = value; } /** * Gets the value of the modelName property. * * @return * possible object is * {@link String } * */ public String getModelName() { return modelName; } /** * Sets the value of the modelName property. * * @param value * allowed object is * {@link String } * */ public void setModelName(String value) { this.modelName = value; } /** * Gets the value of the normalizationMethod property. * * @return * possible object is * {@link NNNORMALIZATIONMETHOD } * */ public NNNORMALIZATIONMETHOD getNormalizationMethod() { if (normalizationMethod == null) { return NNNORMALIZATIONMETHOD.NONE; } else { return normalizationMethod; } } /** * Sets the value of the normalizationMethod property. * * @param value * allowed object is * {@link NNNORMALIZATIONMETHOD } * */ public void setNormalizationMethod(NNNORMALIZATIONMETHOD value) { this.normalizationMethod = value; } /** * Gets the value of the numberOfLayers property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getNumberOfLayers() { return numberOfLayers; } /** * Sets the value of the numberOfLayers property. * * @param value * allowed object is * {@link BigInteger } * */ public void setNumberOfLayers(BigInteger value) { this.numberOfLayers = value; } /** * Gets the value of the threshold property. * * @return * possible object is * {@link Double } * */ public double getThreshold() { if (threshold == null) { return 0.0D; } else { return threshold; } } /** * Sets the value of the threshold property. * * @param value * allowed object is * {@link Double } * */ public void setThreshold(Double value) { this.threshold = value; } /** * Gets the value of the width property. * * @return * possible object is * {@link Double } * */ public Double getWidth() { return width; } /** * Sets the value of the width property. * * @param value * allowed object is * {@link Double } * */ public void setWidth(Double value) { this.width = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/NeuralOutput.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for NeuralOutput element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="NeuralOutput"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}DerivedField"/> * &lt;/sequence> * &lt;attribute name="outputNeuron" use="required" type="{http://www.dmg.org/PMML-4_1}NN-NEURON-IDREF" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "derivedField" }) @XmlRootElement(name = "NeuralOutput") public class NeuralOutput { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "DerivedField", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected DerivedField derivedField; @XmlAttribute(required = true) protected String outputNeuron; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the derivedField property. * * @return * possible object is * {@link DerivedField } * */ public DerivedField getDerivedField() { return derivedField; } /** * Sets the value of the derivedField property. * * @param value * allowed object is * {@link DerivedField } * */ public void setDerivedField(DerivedField value) { this.derivedField = value; } /** * Gets the value of the outputNeuron property. * * @return * possible object is * {@link String } * */ public String getOutputNeuron() { return outputNeuron; } /** * Sets the value of the outputNeuron property. * * @param value * allowed object is * {@link String } * */ public void setOutputNeuron(String value) { this.outputNeuron = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/NeuralOutputs.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.math.BigInteger; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for NeuralOutputs element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="NeuralOutputs"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}NeuralOutput" maxOccurs="unbounded"/> * &lt;/sequence> * &lt;attribute name="numberOfOutputs" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "neuralOutput" }) @XmlRootElement(name = "NeuralOutputs") public class NeuralOutputs { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "NeuralOutput", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<NeuralOutput> neuralOutput; @XmlAttribute protected BigInteger numberOfOutputs; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the neuralOutput property. * * <p> * 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 <CODE>set</CODE> method for the neuralOutput property. * * <p> * For example, to add a new item, do as follows: * <pre> * getNeuralOutput().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link NeuralOutput } * * */ public List<NeuralOutput> getNeuralOutput() { if (neuralOutput == null) { neuralOutput = new ArrayList<NeuralOutput>(); } return this.neuralOutput; } /** * Gets the value of the numberOfOutputs property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getNumberOfOutputs() { return numberOfOutputs; } /** * Sets the value of the numberOfOutputs property. * * @param value * allowed object is * {@link BigInteger } * */ public void setNumberOfOutputs(BigInteger value) { this.numberOfOutputs = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/Neuron.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for Neuron element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="Neuron"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Con" maxOccurs="unbounded"/> * &lt;/sequence> * &lt;attribute name="altitude" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" /> * &lt;attribute name="bias" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" /> * &lt;attribute name="id" use="required" type="{http://www.dmg.org/PMML-4_1}NN-NEURON-ID" /> * &lt;attribute name="width" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "con" }) @XmlRootElement(name = "Neuron") public class Neuron { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "Con", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Con1> con; @XmlAttribute protected Double altitude; @XmlAttribute protected Double bias; @XmlAttribute(required = true) protected String id; @XmlAttribute protected Double width; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the con property. * * <p> * 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 <CODE>set</CODE> method for the con property. * * <p> * For example, to add a new item, do as follows: * <pre> * getCon().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Con1 } * * */ public List<Con1> getCon() { if (con == null) { con = new ArrayList<Con1>(); } return this.con; } /** * Gets the value of the altitude property. * * @return * possible object is * {@link Double } * */ public Double getAltitude() { return altitude; } /** * Sets the value of the altitude property. * * @param value * allowed object is * {@link Double } * */ public void setAltitude(Double value) { this.altitude = value; } /** * Gets the value of the bias property. * * @return * possible object is * {@link Double } * */ public Double getBias() { return bias; } /** * Sets the value of the bias property. * * @param value * allowed object is * {@link Double } * */ public void setBias(Double value) { this.bias = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the width property. * * @return * possible object is * {@link Double } * */ public Double getWidth() { return width; } /** * Sets the value of the width property. * * @param value * allowed object is * {@link Double } * */ public void setWidth(Double value) { this.width = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/Node.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlElementRefs; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for Node element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="Node"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;group ref="{http://www.dmg.org/PMML-4_1}PREDICATE"/> * &lt;choice> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Partition" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}ScoreDistribution" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Node" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;group ref="{http://www.dmg.org/PMML-4_1}EmbeddedModel"/> * &lt;/choice> * &lt;/sequence> * &lt;attribute name="defaultChild" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="id" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="recordCount" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="score" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "content" }) @XmlRootElement(name = "Node") public class Node { @XmlElementRefs({ @XmlElementRef(name = "Regression", namespace = "http://www.dmg.org/PMML-4_1", type = Regression.class), @XmlElementRef(name = "SimplePredicate", namespace = "http://www.dmg.org/PMML-4_1", type = SimplePredicate.class), @XmlElementRef(name = "SimpleSetPredicate", namespace = "http://www.dmg.org/PMML-4_1", type = SimpleSetPredicate.class), @XmlElementRef(name = "False", namespace = "http://www.dmg.org/PMML-4_1", type = False.class), @XmlElementRef(name = "Node", namespace = "http://www.dmg.org/PMML-4_1", type = Node.class), @XmlElementRef(name = "ScoreDistribution", namespace = "http://www.dmg.org/PMML-4_1", type = ScoreDistribution.class), @XmlElementRef(name = "DecisionTree", namespace = "http://www.dmg.org/PMML-4_1", type = DecisionTree.class), @XmlElementRef(name = "CompoundPredicate", namespace = "http://www.dmg.org/PMML-4_1", type = CompoundPredicate.class), @XmlElementRef(name = "True", namespace = "http://www.dmg.org/PMML-4_1", type = True.class), @XmlElementRef(name = "Partition", namespace = "http://www.dmg.org/PMML-4_1", type = Partition.class), @XmlElementRef(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", type = Extension.class) }) protected List<Object> content; @XmlAttribute protected String defaultChild; @XmlAttribute protected String id; @XmlAttribute protected Double recordCount; @XmlAttribute protected String score; /** * Gets the rest of the content model. * * <p> * You are getting this "catch-all" property because of the following reason: * The field name "Extension" is used by two different parts of a schema. See: * line 1845 of file:/home/david/workspace/weka/pmml-4-1.xsd * line 1658 of file:/home/david/workspace/weka/pmml-4-1.xsd * <p> * To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: * Gets the value of the content property. * * <p> * 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 <CODE>set</CODE> method for the content property. * * <p> * For example, to add a new item, do as follows: * <pre> * getContent().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Regression } * {@link SimpleSetPredicate } * {@link SimplePredicate } * {@link False } * {@link Node } * {@link ScoreDistribution } * {@link DecisionTree } * {@link True } * {@link CompoundPredicate } * {@link Extension } * {@link Partition } * * */ public List<Object> getContent() { if (content == null) { content = new ArrayList<Object>(); } return this.content; } /** * Gets the value of the defaultChild property. * * @return * possible object is * {@link String } * */ public String getDefaultChild() { return defaultChild; } /** * Sets the value of the defaultChild property. * * @param value * allowed object is * {@link String } * */ public void setDefaultChild(String value) { this.defaultChild = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the recordCount property. * * @return * possible object is * {@link Double } * */ public Double getRecordCount() { return recordCount; } /** * Sets the value of the recordCount property. * * @param value * allowed object is * {@link Double } * */ public void setRecordCount(Double value) { this.recordCount = value; } /** * Gets the value of the score property. * * @return * possible object is * {@link String } * */ public String getScore() { return score; } /** * Sets the value of the score property. * * @param value * allowed object is * {@link String } * */ public void setScore(String value) { this.score = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/NormContinuous.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for NormContinuous element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="NormContinuous"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}LinearNorm" maxOccurs="unbounded" minOccurs="2"/> * &lt;/sequence> * &lt;attribute name="field" use="required" type="{http://www.dmg.org/PMML-4_1}FIELD-NAME" /> * &lt;attribute name="mapMissingTo" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="outliers" type="{http://www.dmg.org/PMML-4_1}OUTLIER-TREATMENT-METHOD" default="asIs" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "linearNorm" }) @XmlRootElement(name = "NormContinuous") public class NormContinuous { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "LinearNorm", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<LinearNorm> linearNorm; @XmlAttribute(required = true) protected String field; @XmlAttribute protected Double mapMissingTo; @XmlAttribute protected OUTLIERTREATMENTMETHOD outliers; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the linearNorm property. * * <p> * 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 <CODE>set</CODE> method for the linearNorm property. * * <p> * For example, to add a new item, do as follows: * <pre> * getLinearNorm().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link LinearNorm } * * */ public List<LinearNorm> getLinearNorm() { if (linearNorm == null) { linearNorm = new ArrayList<LinearNorm>(); } return this.linearNorm; } /** * Gets the value of the field property. * * @return * possible object is * {@link String } * */ public String getField() { return field; } /** * Sets the value of the field property. * * @param value * allowed object is * {@link String } * */ public void setField(String value) { this.field = value; } /** * Gets the value of the mapMissingTo property. * * @return * possible object is * {@link Double } * */ public Double getMapMissingTo() { return mapMissingTo; } /** * Sets the value of the mapMissingTo property. * * @param value * allowed object is * {@link Double } * */ public void setMapMissingTo(Double value) { this.mapMissingTo = value; } /** * Gets the value of the outliers property. * * @return * possible object is * {@link OUTLIERTREATMENTMETHOD } * */ public OUTLIERTREATMENTMETHOD getOutliers() { if (outliers == null) { return OUTLIERTREATMENTMETHOD.AS_IS; } else { return outliers; } } /** * Sets the value of the outliers property. * * @param value * allowed object is * {@link OUTLIERTREATMENTMETHOD } * */ public void setOutliers(OUTLIERTREATMENTMETHOD value) { this.outliers = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/NormDiscrete.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for NormDiscrete element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="NormDiscrete"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="field" use="required" type="{http://www.dmg.org/PMML-4_1}FIELD-NAME" /> * &lt;attribute name="mapMissingTo" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="method" fixed="indicator"> * &lt;simpleType> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"> * &lt;enumeration value="indicator"/> * &lt;/restriction> * &lt;/simpleType> * &lt;/attribute> * &lt;attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension" }) @XmlRootElement(name = "NormDiscrete") public class NormDiscrete { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlAttribute(required = true) protected String field; @XmlAttribute protected Double mapMissingTo; @XmlAttribute protected String method; @XmlAttribute(required = true) protected String value; public NormDiscrete() {} public NormDiscrete(String field, String value) { this.field = field; this.value = value; } /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the field property. * * @return * possible object is * {@link String } * */ public String getField() { return field; } /** * Sets the value of the field property. * * @param value * allowed object is * {@link String } * */ public void setField(String value) { this.field = value; } /** * Gets the value of the mapMissingTo property. * * @return * possible object is * {@link Double } * */ public Double getMapMissingTo() { return mapMissingTo; } /** * Sets the value of the mapMissingTo property. * * @param value * allowed object is * {@link Double } * */ public void setMapMissingTo(Double value) { this.mapMissingTo = value; } /** * Gets the value of the method property. * * @return * possible object is * {@link String } * */ public String getMethod() { if (method == null) { return "indicator"; } else { return method; } } /** * Sets the value of the method property. * * @param value * allowed object is * {@link String } * */ public void setMethod(String value) { this.method = value; } /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/NumericInfo.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for NumericInfo element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="NumericInfo"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Quantile" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="interQuartileRange" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="maximum" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="mean" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="median" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="minimum" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="standardDeviation" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "quantile" }) @XmlRootElement(name = "NumericInfo") public class NumericInfo { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "Quantile", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Quantile> quantile; @XmlAttribute protected Double interQuartileRange; @XmlAttribute protected Double maximum; @XmlAttribute protected Double mean; @XmlAttribute protected Double median; @XmlAttribute protected Double minimum; @XmlAttribute protected Double standardDeviation; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the quantile property. * * <p> * 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 <CODE>set</CODE> method for the quantile property. * * <p> * For example, to add a new item, do as follows: * <pre> * getQuantile().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Quantile } * * */ public List<Quantile> getQuantile() { if (quantile == null) { quantile = new ArrayList<Quantile>(); } return this.quantile; } /** * Gets the value of the interQuartileRange property. * * @return * possible object is * {@link Double } * */ public Double getInterQuartileRange() { return interQuartileRange; } /** * Sets the value of the interQuartileRange property. * * @param value * allowed object is * {@link Double } * */ public void setInterQuartileRange(Double value) { this.interQuartileRange = value; } /** * Gets the value of the maximum property. * * @return * possible object is * {@link Double } * */ public Double getMaximum() { return maximum; } /** * Sets the value of the maximum property. * * @param value * allowed object is * {@link Double } * */ public void setMaximum(Double value) { this.maximum = value; } /** * Gets the value of the mean property. * * @return * possible object is * {@link Double } * */ public Double getMean() { return mean; } /** * Sets the value of the mean property. * * @param value * allowed object is * {@link Double } * */ public void setMean(Double value) { this.mean = value; } /** * Gets the value of the median property. * * @return * possible object is * {@link Double } * */ public Double getMedian() { return median; } /** * Sets the value of the median property. * * @param value * allowed object is * {@link Double } * */ public void setMedian(Double value) { this.median = value; } /** * Gets the value of the minimum property. * * @return * possible object is * {@link Double } * */ public Double getMinimum() { return minimum; } /** * Sets the value of the minimum property. * * @param value * allowed object is * {@link Double } * */ public void setMinimum(Double value) { this.minimum = value; } /** * Gets the value of the standardDeviation property. * * @return * possible object is * {@link Double } * */ public Double getStandardDeviation() { return standardDeviation; } /** * Sets the value of the standardDeviation property. * * @param value * allowed object is * {@link Double } * */ public void setStandardDeviation(Double value) { this.standardDeviation = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/NumericPredictor.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.math.BigInteger; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for NumericPredictor element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="NumericPredictor"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="coefficient" use="required" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" /> * &lt;attribute name="exponent" type="{http://www.dmg.org/PMML-4_1}INT-NUMBER" default="1" /> * &lt;attribute name="name" use="required" type="{http://www.dmg.org/PMML-4_1}FIELD-NAME" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension" }) @XmlRootElement(name = "NumericPredictor") public class NumericPredictor { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlAttribute(required = true) protected double coefficient; @XmlAttribute protected BigInteger exponent; @XmlAttribute(required = true) protected String name; public NumericPredictor() {} public NumericPredictor(String name, BigInteger exponent, double coefficient) { this.name = name; this.exponent = exponent; this.coefficient = coefficient; } /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the coefficient property. * */ public double getCoefficient() { return coefficient; } /** * Sets the value of the coefficient property. * */ public void setCoefficient(double value) { this.coefficient = value; } /** * Gets the value of the exponent property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getExponent() { if (exponent == null) { return new BigInteger("1"); } else { return exponent; } } /** * Sets the value of the exponent property. * * @param value * allowed object is * {@link BigInteger } * */ public void setExponent(BigInteger value) { this.exponent = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/OPTYPE.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; /** * <p>Java class for OPTYPE. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * &lt;simpleType name="OPTYPE"> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"> * &lt;enumeration value="categorical"/> * &lt;enumeration value="ordinal"/> * &lt;enumeration value="continuous"/> * &lt;/restriction> * &lt;/simpleType> * </pre> * */ @XmlEnum public enum OPTYPE { @XmlEnumValue("categorical") CATEGORICAL("categorical"), @XmlEnumValue("continuous") CONTINUOUS("continuous"), @XmlEnumValue("ordinal") ORDINAL("ordinal"); private final String value; OPTYPE(String v) { value = v; } public String value() { return value; } public static OPTYPE fromValue(String v) { for (OPTYPE c: OPTYPE.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v.toString()); } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/OUTLIERTREATMENTMETHOD.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; /** * <p>Java class for OUTLIER-TREATMENT-METHOD. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * &lt;simpleType name="OUTLIER-TREATMENT-METHOD"> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"> * &lt;enumeration value="asIs"/> * &lt;enumeration value="asMissingValues"/> * &lt;enumeration value="asExtremeValues"/> * &lt;/restriction> * &lt;/simpleType> * </pre> * */ @XmlEnum public enum OUTLIERTREATMENTMETHOD { @XmlEnumValue("asExtremeValues") AS_EXTREME_VALUES("asExtremeValues"), @XmlEnumValue("asIs") AS_IS("asIs"), @XmlEnumValue("asMissingValues") AS_MISSING_VALUES("asMissingValues"); private final String value; OUTLIERTREATMENTMETHOD(String v) { value = v; } public String value() { return value; } public static OUTLIERTREATMENTMETHOD fromValue(String v) { for (OUTLIERTREATMENTMETHOD c: OUTLIERTREATMENTMETHOD.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v.toString()); } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/ObjectFactory.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.List; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlElementDecl; import javax.xml.bind.annotation.XmlRegistry; import javax.xml.namespace.QName; /** * This object contains factory methods for each * Java content interface and Java element interface * generated in the weka.core.pmml.jaxbbindings package. * <p>An ObjectFactory allows you to programatically * construct new instances of the Java representation * for XML content. The Java representation of XML * content can consist of schema derived interfaces * and classes representing the binding of schema * type definitions, element declarations and model * groups. Factory methods for each of these are * provided in this class. * */ @XmlRegistry public class ObjectFactory { private final static QName _SpectralAnalysis_QNAME = new QName("http://www.dmg.org/PMML-4_1", "SpectralAnalysis"); private final static QName _REALEntries_QNAME = new QName("http://www.dmg.org/PMML-4_1", "REAL-Entries"); private final static QName _INTEntries_QNAME = new QName("http://www.dmg.org/PMML-4_1", "INT-Entries"); private final static QName _CountTable_QNAME = new QName("http://www.dmg.org/PMML-4_1", "CountTable"); private final static QName _ARIMA_QNAME = new QName("http://www.dmg.org/PMML-4_1", "ARIMA"); private final static QName _Indices_QNAME = new QName("http://www.dmg.org/PMML-4_1", "Indices"); private final static QName _SeasonalTrendDecomposition_QNAME = new QName("http://www.dmg.org/PMML-4_1", "SeasonalTrendDecomposition"); private final static QName _NormalizedCountTable_QNAME = new QName("http://www.dmg.org/PMML-4_1", "NormalizedCountTable"); private final static QName _Array_QNAME = new QName("http://www.dmg.org/PMML-4_1", "Array"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: weka.core.pmml.jaxbbindings * */ public ObjectFactory() { } /** * Create an instance of {@link PPCell } * */ public PPCell createPPCell() { return new PPCell(); } /** * Create an instance of {@link Time } * */ public Time createTime() { return new Time(); } /** * Create an instance of {@link Taxonomy } * */ public Taxonomy createTaxonomy() { return new Taxonomy(); } /** * Create an instance of {@link RuleSetModel } * */ public RuleSetModel createRuleSetModel() { return new RuleSetModel(); } /** * Create an instance of {@link Node } * */ public Node createNode() { return new Node(); } /** * Create an instance of {@link DecisionTree } * */ public DecisionTree createDecisionTree() { return new DecisionTree(); } /** * Create an instance of {@link TrendExpoSmooth } * */ public TrendExpoSmooth createTrendExpoSmooth() { return new TrendExpoSmooth(); } /** * Create an instance of {@link GaussianDistribution } * */ public GaussianDistribution createGaussianDistribution() { return new GaussianDistribution(); } /** * Create an instance of {@link NeuralInputs } * */ public NeuralInputs createNeuralInputs() { return new NeuralInputs(); } /** * Create an instance of {@link VectorInstance } * */ public VectorInstance createVectorInstance() { return new VectorInstance(); } /** * Create an instance of {@link BinarySimilarity } * */ public BinarySimilarity createBinarySimilarity() { return new BinarySimilarity(); } /** * Create an instance of {@link Baseline } * */ public Baseline createBaseline() { return new Baseline(); } /** * Create an instance of {@link Jaccard } * */ public Jaccard createJaccard() { return new Jaccard(); } /** * Create an instance of {@link Interval } * */ public Interval createInterval() { return new Interval(); } /** * Create an instance of {@link TargetValueCount } * */ public TargetValueCount createTargetValueCount() { return new TargetValueCount(); } /** * Create an instance of {@link Partition } * */ public Partition createPartition() { return new Partition(); } /** * Create an instance of {@link Aggregate } * */ public Aggregate createAggregate() { return new Aggregate(); } /** * Create an instance of {@link RegressionModel } * */ public RegressionModel createRegressionModel() { return new RegressionModel(); } /** * Create an instance of {@link BoundaryValueMeans } * */ public BoundaryValueMeans createBoundaryValueMeans() { return new BoundaryValueMeans(); } /** * Create an instance of {@link ChildParent } * */ public ChildParent createChildParent() { return new ChildParent(); } /** * Create an instance of {@link Timestamp } * */ public Timestamp createTimestamp() { return new Timestamp(); } /** * Create an instance of {@link VectorFields } * */ public VectorFields createVectorFields() { return new VectorFields(); } /** * Create an instance of {@link TransformationDictionary } * */ public TransformationDictionary createTransformationDictionary() { return new TransformationDictionary(); } /** * Create an instance of {@link CompoundPredicate } * */ public CompoundPredicate createCompoundPredicate() { return new CompoundPredicate(); } /** * Create an instance of {@link ROCGraph } * */ public ROCGraph createROCGraph() { return new ROCGraph(); } /** * Create an instance of {@link ModelExplanation } * */ public ModelExplanation createModelExplanation() { return new ModelExplanation(); } /** * Create an instance of {@link PMML } * */ public PMML createPMML() { return new PMML(); } /** * Create an instance of {@link COUNTTABLETYPE } * */ public COUNTTABLETYPE createCOUNTTABLETYPE() { return new COUNTTABLETYPE(); } /** * Create an instance of {@link Output } * */ public Output createOutput() { return new Output(); } /** * Create an instance of {@link Annotation } * */ public Annotation createAnnotation() { return new Annotation(); } /** * Create an instance of {@link KohonenMap } * */ public KohonenMap createKohonenMap() { return new KohonenMap(); } /** * Create an instance of {@link SeasonalityExpoSmooth } * */ public SeasonalityExpoSmooth createSeasonalityExpoSmooth() { return new SeasonalityExpoSmooth(); } /** * Create an instance of {@link NumericPredictor } * */ public NumericPredictor createNumericPredictor() { return new NumericPredictor(); } /** * Create an instance of {@link TimeException } * */ public TimeException createTimeException() { return new TimeException(); } /** * Create an instance of {@link LiftData } * */ public LiftData createLiftData() { return new LiftData(); } /** * Create an instance of {@link Target } * */ public Target createTarget() { return new Target(); } /** * Create an instance of {@link Targets } * */ public Targets createTargets() { return new Targets(); } /** * Create an instance of {@link OutputField } * */ public OutputField createOutputField() { return new OutputField(); } /** * Create an instance of {@link NeuralNetwork } * */ public NeuralNetwork createNeuralNetwork() { return new NeuralNetwork(); } /** * Create an instance of {@link RuleSelectionMethod } * */ public RuleSelectionMethod createRuleSelectionMethod() { return new RuleSelectionMethod(); } /** * Create an instance of {@link TextDictionary } * */ public TextDictionary createTextDictionary() { return new TextDictionary(); } /** * Create an instance of {@link Matrix } * */ public Matrix createMatrix() { return new Matrix(); } /** * Create an instance of {@link CompoundRule } * */ public CompoundRule createCompoundRule() { return new CompoundRule(); } /** * Create an instance of {@link MultivariateStats } * */ public MultivariateStats createMultivariateStats() { return new MultivariateStats(); } /** * Create an instance of {@link NaiveBayesModel } * */ public NaiveBayesModel createNaiveBayesModel() { return new NaiveBayesModel(); } /** * Create an instance of {@link Anova } * */ public Anova createAnova() { return new Anova(); } /** * Create an instance of {@link Covariances } * */ public Covariances createCovariances() { return new Covariances(); } /** * Create an instance of {@link NearestNeighborModel } * */ public NearestNeighborModel createNearestNeighborModel() { return new NearestNeighborModel(); } /** * Create an instance of {@link SupportVectors } * */ public SupportVectors createSupportVectors() { return new SupportVectors(); } /** * Create an instance of {@link SetPredicate } * */ public SetPredicate createSetPredicate() { return new SetPredicate(); } /** * Create an instance of {@link VerificationField } * */ public VerificationField createVerificationField() { return new VerificationField(); } /** * Create an instance of {@link TextDocument } * */ public TextDocument createTextDocument() { return new TextDocument(); } /** * Create an instance of {@link SupportVector } * */ public SupportVector createSupportVector() { return new SupportVector(); } /** * Create an instance of {@link SequenceRule } * */ public SequenceRule createSequenceRule() { return new SequenceRule(); } /** * Create an instance of {@link FieldValue } * */ public FieldValue createFieldValue() { return new FieldValue(); } /** * Create an instance of {@link True } * */ public True createTrue() { return new True(); } /** * Create an instance of {@link DataDictionary } * */ public DataDictionary createDataDictionary() { return new DataDictionary(); } /** * Create an instance of {@link LiftGraph } * */ public LiftGraph createLiftGraph() { return new LiftGraph(); } /** * Create an instance of {@link SimpleRule } * */ public SimpleRule createSimpleRule() { return new SimpleRule(); } /** * Create an instance of {@link AntecedentSequence } * */ public AntecedentSequence createAntecedentSequence() { return new AntecedentSequence(); } /** * Create an instance of {@link LocalTransformations } * */ public LocalTransformations createLocalTransformations() { return new LocalTransformations(); } /** * Create an instance of {@link SquaredEuclidean } * */ public SquaredEuclidean createSquaredEuclidean() { return new SquaredEuclidean(); } /** * Create an instance of {@link Con1 } * */ public Con1 createCon() { return new Con1(); } /** * Create an instance of {@link NormContinuous } * */ public NormContinuous createNormContinuous() { return new NormContinuous(); } /** * Create an instance of {@link Segment } * */ public Segment createSegment() { return new Segment(); } /** * Create an instance of {@link KNNInputs } * */ public KNNInputs createKNNInputs() { return new KNNInputs(); } /** * Create an instance of {@link FieldValueCount } * */ public FieldValueCount createFieldValueCount() { return new FieldValueCount(); } /** * Create an instance of {@link BayesOutput } * */ public BayesOutput createBayesOutput() { return new BayesOutput(); } /** * Create an instance of {@link ClusteringModelQuality } * */ public ClusteringModelQuality createClusteringModelQuality() { return new ClusteringModelQuality(); } /** * Create an instance of {@link ClusteringModel } * */ public ClusteringModel createClusteringModel() { return new ClusteringModel(); } /** * Create an instance of {@link Chebychev } * */ public Chebychev createChebychev() { return new Chebychev(); } /** * Create an instance of {@link PairCounts } * */ public PairCounts createPairCounts() { return new PairCounts(); } /** * Create an instance of {@link ConfusionMatrix } * */ public ConfusionMatrix createConfusionMatrix() { return new ConfusionMatrix(); } /** * Create an instance of {@link Correlations } * */ public Correlations createCorrelations() { return new Correlations(); } /** * Create an instance of {@link SetReference } * */ public SetReference createSetReference() { return new SetReference(); } /** * Create an instance of {@link MiningBuildTask } * */ public MiningBuildTask createMiningBuildTask() { return new MiningBuildTask(); } /** * Create an instance of {@link TreeModel } * */ public TreeModel createTreeModel() { return new TreeModel(); } /** * Create an instance of {@link CorrelationFields } * */ public CorrelationFields createCorrelationFields() { return new CorrelationFields(); } /** * Create an instance of {@link Coefficients } * */ public Coefficients createCoefficients() { return new Coefficients(); } /** * Create an instance of {@link PoissonDistribution } * */ public PoissonDistribution createPoissonDistribution() { return new PoissonDistribution(); } /** * Create an instance of {@link TimeCycle } * */ public TimeCycle createTimeCycle() { return new TimeCycle(); } /** * Create an instance of {@link Predictor } * */ public Predictor createPredictor() { return new Predictor(); } /** * Create an instance of {@link BaselineCell } * */ public BaselineCell createBaselineCell() { return new BaselineCell(); } /** * Create an instance of {@link TextModelSimiliarity } * */ public TextModelSimiliarity createTextModelSimiliarity() { return new TextModelSimiliarity(); } /** * Create an instance of {@link ExponentialSmoothing } * */ public ExponentialSmoothing createExponentialSmoothing() { return new ExponentialSmoothing(); } /** * Create an instance of {@link Sequence } * */ public Sequence createSequence() { return new Sequence(); } /** * Create an instance of {@link PCovMatrix } * */ public PCovMatrix createPCovMatrix() { return new PCovMatrix(); } /** * Create an instance of {@link RuleSet } * */ public RuleSet createRuleSet() { return new RuleSet(); } /** * Create an instance of {@link Application } * */ public Application createApplication() { return new Application(); } /** * Create an instance of {@link AnyDistribution } * */ public AnyDistribution createAnyDistribution() { return new AnyDistribution(); } /** * Create an instance of {@link SupportVectorMachine } * */ public SupportVectorMachine createSupportVectorMachine() { return new SupportVectorMachine(); } /** * Create an instance of {@link BayesInput } * */ public BayesInput createBayesInput() { return new BayesInput(); } /** * Create an instance of {@link Minkowski } * */ public Minkowski createMinkowski() { return new Minkowski(); } /** * Create an instance of {@link VerificationFields } * */ public VerificationFields createVerificationFields() { return new VerificationFields(); } /** * Create an instance of {@link RadialBasisKernelType } * */ public RadialBasisKernelType createRadialBasisKernelType() { return new RadialBasisKernelType(); } /** * Create an instance of {@link UniformDistribution } * */ public UniformDistribution createUniformDistribution() { return new UniformDistribution(); } /** * Create an instance of {@link InlineTable } * */ public InlineTable createInlineTable() { return new InlineTable(); } /** * Create an instance of {@link LinearNorm } * */ public LinearNorm createLinearNorm() { return new LinearNorm(); } /** * Create an instance of {@link ClassLabels } * */ public ClassLabels createClassLabels() { return new ClassLabels(); } /** * Create an instance of {@link LinearKernelType } * */ public LinearKernelType createLinearKernelType() { return new LinearKernelType(); } /** * Create an instance of {@link DataField } * */ public DataField createDataField() { return new DataField(); } /** * Create an instance of {@link AssociationRule } * */ public AssociationRule createAssociationRule() { return new AssociationRule(); } /** * Create an instance of {@link KNNInput } * */ public KNNInput createKNNInput() { return new KNNInput(); } /** * Create an instance of {@link FieldRef } * */ public FieldRef createFieldRef() { return new FieldRef(); } /** * Create an instance of {@link PolynomialKernelType } * */ public PolynomialKernelType createPolynomialKernelType() { return new PolynomialKernelType(); } /** * Create an instance of {@link Counts } * */ public Counts createCounts() { return new Counts(); } /** * Create an instance of {@link Cluster } * */ public Cluster createCluster() { return new Cluster(); } /** * Create an instance of {@link Characteristic } * */ public Characteristic createCharacteristic() { return new Characteristic(); } /** * Create an instance of {@link MiningSchema } * */ public MiningSchema createMiningSchema() { return new MiningSchema(); } /** * Create an instance of {@link TextModel } * */ public TextModel createTextModel() { return new TextModel(); } /** * Create an instance of {@link Categories } * */ public Categories createCategories() { return new Categories(); } /** * Create an instance of {@link Characteristics } * */ public Characteristics createCharacteristics() { return new Characteristics(); } /** * Create an instance of {@link PPMatrix } * */ public PPMatrix createPPMatrix() { return new PPMatrix(); } /** * Create an instance of {@link Constraints } * */ public Constraints createConstraints() { return new Constraints(); } /** * Create an instance of {@link MultivariateStat } * */ public MultivariateStat createMultivariateStat() { return new MultivariateStat(); } /** * Create an instance of {@link CorrelationMethods } * */ public CorrelationMethods createCorrelationMethods() { return new CorrelationMethods(); } /** * Create an instance of {@link NeuralOutputs } * */ public NeuralOutputs createNeuralOutputs() { return new NeuralOutputs(); } /** * Create an instance of {@link Extension } * */ public Extension createExtension() { return new Extension(); } /** * Create an instance of {@link MiningModel } * */ public MiningModel createMiningModel() { return new MiningModel(); } /** * Create an instance of {@link ArrayType } * */ public ArrayType createArrayType() { return new ArrayType(); } /** * Create an instance of {@link DocumentTermMatrix } * */ public DocumentTermMatrix createDocumentTermMatrix() { return new DocumentTermMatrix(); } /** * Create an instance of {@link MiningField } * */ public MiningField createMiningField() { return new MiningField(); } /** * Create an instance of {@link Header } * */ public Header createHeader() { return new Header(); } /** * Create an instance of {@link Value } * */ public Value createValue() { return new Value(); } /** * Create an instance of {@link SimpleMatching } * */ public SimpleMatching createSimpleMatching() { return new SimpleMatching(); } /** * Create an instance of {@link TextModelNormalization } * */ public TextModelNormalization createTextModelNormalization() { return new TextModelNormalization(); } /** * Create an instance of {@link EventValues } * */ public EventValues createEventValues() { return new EventValues(); } /** * Create an instance of {@link Coefficient } * */ public Coefficient createCoefficient() { return new Coefficient(); } /** * Create an instance of {@link ComparisonMeasure } * */ public ComparisonMeasure createComparisonMeasure() { return new ComparisonMeasure(); } /** * Create an instance of {@link Comparisons } * */ public Comparisons createComparisons() { return new Comparisons(); } /** * Create an instance of {@link ScoreDistribution } * */ public ScoreDistribution createScoreDistribution() { return new ScoreDistribution(); } /** * Create an instance of {@link TestDistributions } * */ public TestDistributions createTestDistributions() { return new TestDistributions(); } /** * Create an instance of {@link NeuralInput } * */ public NeuralInput createNeuralInput() { return new NeuralInput(); } /** * Create an instance of {@link ModelVerification } * */ public ModelVerification createModelVerification() { return new ModelVerification(); } /** * Create an instance of {@link Attribute } * */ public Attribute createAttribute() { return new Attribute(); } /** * Create an instance of {@link PredictorTerm } * */ public PredictorTerm createPredictorTerm() { return new PredictorTerm(); } /** * Create an instance of {@link Regression } * */ public Regression createRegression() { return new Regression(); } /** * Create an instance of {@link PartitionFieldStats } * */ public PartitionFieldStats createPartitionFieldStats() { return new PartitionFieldStats(); } /** * Create an instance of {@link YCoordinates } * */ public YCoordinates createYCoordinates() { return new YCoordinates(); } /** * Create an instance of {@link NeuralOutput } * */ public NeuralOutput createNeuralOutput() { return new NeuralOutput(); } /** * Create an instance of {@link FactorList } * */ public FactorList createFactorList() { return new FactorList(); } /** * Create an instance of {@link TargetValueCounts } * */ public TargetValueCounts createTargetValueCounts() { return new TargetValueCounts(); } /** * Create an instance of {@link TrainingInstances } * */ public TrainingInstances createTrainingInstances() { return new TrainingInstances(); } /** * Create an instance of {@link SigmoidKernelType } * */ public SigmoidKernelType createSigmoidKernelType() { return new SigmoidKernelType(); } /** * Create an instance of {@link Segmentation } * */ public Segmentation createSegmentation() { return new Segmentation(); } /** * Create an instance of {@link NormDiscrete } * */ public NormDiscrete createNormDiscrete() { return new NormDiscrete(); } /** * Create an instance of {@link RandomLiftGraph } * */ public RandomLiftGraph createRandomLiftGraph() { return new RandomLiftGraph(); } /** * Create an instance of {@link ParameterField } * */ public ParameterField createParameterField() { return new ParameterField(); } /** * Create an instance of {@link SimplePredicate } * */ public SimplePredicate createSimplePredicate() { return new SimplePredicate(); } /** * Create an instance of {@link PCell } * */ public PCell createPCell() { return new PCell(); } /** * Create an instance of {@link Scorecard } * */ public Scorecard createScorecard() { return new Scorecard(); } /** * Create an instance of {@link Decisions } * */ public Decisions createDecisions() { return new Decisions(); } /** * Create an instance of {@link Parameter } * */ public Parameter createParameter() { return new Parameter(); } /** * Create an instance of {@link CovariateList } * */ public CovariateList createCovariateList() { return new CovariateList(); } /** * Create an instance of {@link ConsequentSequence } * */ public ConsequentSequence createConsequentSequence() { return new ConsequentSequence(); } /** * Create an instance of {@link ModelLiftGraph } * */ public ModelLiftGraph createModelLiftGraph() { return new ModelLiftGraph(); } /** * Create an instance of {@link MatCell } * */ public MatCell createMatCell() { return new MatCell(); } /** * Create an instance of {@link GeneralRegressionModel } * */ public GeneralRegressionModel createGeneralRegressionModel() { return new GeneralRegressionModel(); } /** * Create an instance of {@link TimeSeries } * */ public TimeSeries createTimeSeries() { return new TimeSeries(); } /** * Create an instance of {@link ItemRef } * */ public ItemRef createItemRef() { return new ItemRef(); } /** * Create an instance of {@link SequenceModel } * */ public SequenceModel createSequenceModel() { return new SequenceModel(); } /** * Create an instance of {@link ClusteringField } * */ public ClusteringField createClusteringField() { return new ClusteringField(); } /** * Create an instance of {@link Row } * */ public Row createRow() { return new Row(); } /** * Create an instance of {@link BaseCumHazardTables } * */ public BaseCumHazardTables createBaseCumHazardTables() { return new BaseCumHazardTables(); } /** * Create an instance of {@link BaselineModel } * */ public BaselineModel createBaselineModel() { return new BaselineModel(); } /** * Create an instance of {@link TableLocator } * */ public TableLocator createTableLocator() { return new TableLocator(); } /** * Create an instance of {@link SimpleSetPredicate } * */ public SimpleSetPredicate createSimpleSetPredicate() { return new SimpleSetPredicate(); } /** * Create an instance of {@link Discretize } * */ public Discretize createDiscretize() { return new Discretize(); } /** * Create an instance of {@link Decision } * */ public Decision createDecision() { return new Decision(); } /** * Create an instance of {@link Level } * */ public Level createLevel() { return new Level(); } /** * Create an instance of {@link FieldColumnPair } * */ public FieldColumnPair createFieldColumnPair() { return new FieldColumnPair(); } /** * Create an instance of {@link ModelStats } * */ public ModelStats createModelStats() { return new ModelStats(); } /** * Create an instance of {@link Euclidean } * */ public Euclidean createEuclidean() { return new Euclidean(); } /** * Create an instance of {@link SequenceReference } * */ public SequenceReference createSequenceReference() { return new SequenceReference(); } /** * Create an instance of {@link ContStats } * */ public ContStats createContStats() { return new ContStats(); } /** * Create an instance of {@link Quantile } * */ public Quantile createQuantile() { return new Quantile(); } /** * Create an instance of {@link Itemset } * */ public Itemset createItemset() { return new Itemset(); } /** * Create an instance of {@link PCovCell } * */ public PCovCell createPCovCell() { return new PCovCell(); } /** * Create an instance of {@link Tanimoto } * */ public Tanimoto createTanimoto() { return new Tanimoto(); } /** * Create an instance of {@link TimeAnchor } * */ public TimeAnchor createTimeAnchor() { return new TimeAnchor(); } /** * Create an instance of {@link OptimumLiftGraph } * */ public OptimumLiftGraph createOptimumLiftGraph() { return new OptimumLiftGraph(); } /** * Create an instance of {@link DerivedField } * */ public DerivedField createDerivedField() { return new DerivedField(); } /** * Create an instance of {@link REALSparseArray } * */ public REALSparseArray createREALSparseArray() { return new REALSparseArray(); } /** * Create an instance of {@link InstanceField } * */ public InstanceField createInstanceField() { return new InstanceField(); } /** * Create an instance of {@link MissingValueWeights } * */ public MissingValueWeights createMissingValueWeights() { return new MissingValueWeights(); } /** * Create an instance of {@link BaselineStratum } * */ public BaselineStratum createBaselineStratum() { return new BaselineStratum(); } /** * Create an instance of {@link ROC } * */ public ROC createROC() { return new ROC(); } /** * Create an instance of {@link Delimiter } * */ public Delimiter createDelimiter() { return new Delimiter(); } /** * Create an instance of {@link DiscrStats } * */ public DiscrStats createDiscrStats() { return new DiscrStats(); } /** * Create an instance of {@link False } * */ public False createFalse() { return new False(); } /** * Create an instance of {@link CorrelationValues } * */ public CorrelationValues createCorrelationValues() { return new CorrelationValues(); } /** * Create an instance of {@link ParameterList } * */ public ParameterList createParameterList() { return new ParameterList(); } /** * Create an instance of {@link Category } * */ public Category createCategory() { return new Category(); } /** * Create an instance of {@link Item } * */ public Item createItem() { return new Item(); } /** * Create an instance of {@link AssociationModel } * */ public AssociationModel createAssociationModel() { return new AssociationModel(); } /** * Create an instance of {@link BayesInputs } * */ public BayesInputs createBayesInputs() { return new BayesInputs(); } /** * Create an instance of {@link NeuralLayer } * */ public NeuralLayer createNeuralLayer() { return new NeuralLayer(); } /** * Create an instance of {@link INTSparseArray } * */ public INTSparseArray createINTSparseArray() { return new INTSparseArray(); } /** * Create an instance of {@link ResultField } * */ public ResultField createResultField() { return new ResultField(); } /** * Create an instance of {@link XCoordinates } * */ public XCoordinates createXCoordinates() { return new XCoordinates(); } /** * Create an instance of {@link Neuron } * */ public Neuron createNeuron() { return new Neuron(); } /** * Create an instance of {@link InstanceFields } * */ public InstanceFields createInstanceFields() { return new InstanceFields(); } /** * Create an instance of {@link PredictiveModelQuality } * */ public PredictiveModelQuality createPredictiveModelQuality() { return new PredictiveModelQuality(); } /** * Create an instance of {@link TextCorpus } * */ public TextCorpus createTextCorpus() { return new TextCorpus(); } /** * Create an instance of {@link TimeSeriesModel } * */ public TimeSeriesModel createTimeSeriesModel() { return new TimeSeriesModel(); } /** * Create an instance of {@link SupportVectorMachineModel } * */ public SupportVectorMachineModel createSupportVectorMachineModel() { return new SupportVectorMachineModel(); } /** * Create an instance of {@link Constant } * */ public Constant createConstant() { return new Constant(); } /** * Create an instance of {@link UnivariateStats } * */ public UnivariateStats createUnivariateStats() { return new UnivariateStats(); } /** * Create an instance of {@link DiscretizeBin } * */ public DiscretizeBin createDiscretizeBin() { return new DiscretizeBin(); } /** * Create an instance of {@link NumericInfo } * */ public NumericInfo createNumericInfo() { return new NumericInfo(); } /** * Create an instance of {@link MapValues } * */ public MapValues createMapValues() { return new MapValues(); } /** * Create an instance of {@link RegressionTable } * */ public RegressionTable createRegressionTable() { return new RegressionTable(); } /** * Create an instance of {@link TimeValue } * */ public TimeValue createTimeValue() { return new TimeValue(); } /** * Create an instance of {@link AnovaRow } * */ public AnovaRow createAnovaRow() { return new AnovaRow(); } /** * Create an instance of {@link DefineFunction } * */ public DefineFunction createDefineFunction() { return new DefineFunction(); } /** * Create an instance of {@link Apply } * */ public Apply createApply() { return new Apply(); } /** * Create an instance of {@link CityBlock } * */ public CityBlock createCityBlock() { return new CityBlock(); } /** * Create an instance of {@link TargetValue } * */ public TargetValue createTargetValue() { return new TargetValue(); } /** * Create an instance of {@link VectorDictionary } * */ public VectorDictionary createVectorDictionary() { return new VectorDictionary(); } /** * Create an instance of {@link Alternate } * */ public Alternate createAlternate() { return new Alternate(); } /** * Create an instance of {@link BoundaryValues } * */ public BoundaryValues createBoundaryValues() { return new BoundaryValues(); } /** * Create an instance of {@link CategoricalPredictor } * */ public CategoricalPredictor createCategoricalPredictor() { return new CategoricalPredictor(); } /** * Create an instance of {@link ParamMatrix } * */ public ParamMatrix createParamMatrix() { return new ParamMatrix(); } /** * Create an instance of {@link JAXBElement }{@code <}{@link Object }{@code >}} * */ @XmlElementDecl(namespace = "http://www.dmg.org/PMML-4_1", name = "SpectralAnalysis") public JAXBElement<Object> createSpectralAnalysis(Object value) { return new JAXBElement<Object>(_SpectralAnalysis_QNAME, Object.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link List }{@code <}{@link Double }{@code >}{@code >}} * */ @XmlElementDecl(namespace = "http://www.dmg.org/PMML-4_1", name = "REAL-Entries") public JAXBElement<List<Double>> createREALEntries(List<Double> value) { return new JAXBElement<List<Double>>(_REALEntries_QNAME, ((Class) List.class), null, ((List<Double> ) value)); } /** * Create an instance of {@link JAXBElement }{@code <}{@link List }{@code <}{@link Integer }{@code >}{@code >}} * */ @XmlElementDecl(namespace = "http://www.dmg.org/PMML-4_1", name = "INT-Entries") public JAXBElement<List<Integer>> createINTEntries(List<Integer> value) { return new JAXBElement<List<Integer>>(_INTEntries_QNAME, ((Class) List.class), null, ((List<Integer> ) value)); } /** * Create an instance of {@link JAXBElement }{@code <}{@link COUNTTABLETYPE }{@code >}} * */ @XmlElementDecl(namespace = "http://www.dmg.org/PMML-4_1", name = "CountTable") public JAXBElement<COUNTTABLETYPE> createCountTable(COUNTTABLETYPE value) { return new JAXBElement<COUNTTABLETYPE>(_CountTable_QNAME, COUNTTABLETYPE.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link Object }{@code >}} * */ @XmlElementDecl(namespace = "http://www.dmg.org/PMML-4_1", name = "ARIMA") public JAXBElement<Object> createARIMA(Object value) { return new JAXBElement<Object>(_ARIMA_QNAME, Object.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link List }{@code <}{@link Integer }{@code >}{@code >}} * */ @XmlElementDecl(namespace = "http://www.dmg.org/PMML-4_1", name = "Indices") public JAXBElement<List<Integer>> createIndices(List<Integer> value) { return new JAXBElement<List<Integer>>(_Indices_QNAME, ((Class) List.class), null, ((List<Integer> ) value)); } /** * Create an instance of {@link JAXBElement }{@code <}{@link Object }{@code >}} * */ @XmlElementDecl(namespace = "http://www.dmg.org/PMML-4_1", name = "SeasonalTrendDecomposition") public JAXBElement<Object> createSeasonalTrendDecomposition(Object value) { return new JAXBElement<Object>(_SeasonalTrendDecomposition_QNAME, Object.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link COUNTTABLETYPE }{@code >}} * */ @XmlElementDecl(namespace = "http://www.dmg.org/PMML-4_1", name = "NormalizedCountTable") public JAXBElement<COUNTTABLETYPE> createNormalizedCountTable(COUNTTABLETYPE value) { return new JAXBElement<COUNTTABLETYPE>(_NormalizedCountTable_QNAME, COUNTTABLETYPE.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link ArrayType }{@code >}} * */ @XmlElementDecl(namespace = "http://www.dmg.org/PMML-4_1", name = "Array") public JAXBElement<ArrayType> createArray(ArrayType value) { return new JAXBElement<ArrayType>(_Array_QNAME, ArrayType.class, null, value); } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/OptimumLiftGraph.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for OptimumLiftGraph element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="OptimumLiftGraph"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}LiftGraph"/> * &lt;/sequence> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "liftGraph" }) @XmlRootElement(name = "OptimumLiftGraph") public class OptimumLiftGraph { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "LiftGraph", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected LiftGraph liftGraph; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the liftGraph property. * * @return * possible object is * {@link LiftGraph } * */ public LiftGraph getLiftGraph() { return liftGraph; } /** * Sets the value of the liftGraph property. * * @param value * allowed object is * {@link LiftGraph } * */ public void setLiftGraph(LiftGraph value) { this.liftGraph = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/Output.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for Output element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="Output"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}OutputField" maxOccurs="unbounded"/> * &lt;/sequence> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "outputField" }) @XmlRootElement(name = "Output") public class Output { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "OutputField", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<OutputField> outputField; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the outputField property. * * <p> * 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 <CODE>set</CODE> method for the outputField property. * * <p> * For example, to add a new item, do as follows: * <pre> * getOutputField().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link OutputField } * * */ public List<OutputField> getOutputFields() { if (outputField == null) { outputField = new ArrayList<OutputField>(); } return this.outputField; } public void addOutputField(OutputField field) { if (outputField == null) { outputField = new ArrayList<OutputField>(); } this.outputField.add(field); } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/OutputField.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.math.BigInteger; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for OutputField element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="OutputField"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;sequence minOccurs="0"> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Decisions" minOccurs="0"/> * &lt;group ref="{http://www.dmg.org/PMML-4_1}EXPRESSION"/> * &lt;/sequence> * &lt;/sequence> * &lt;attribute name="algorithm" default="exclusiveRecommendation"> * &lt;simpleType> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"> * &lt;enumeration value="recommendation"/> * &lt;enumeration value="exclusiveRecommendation"/> * &lt;enumeration value="ruleAssociation"/> * &lt;/restriction> * &lt;/simpleType> * &lt;/attribute> * &lt;attribute name="dataType" type="{http://www.dmg.org/PMML-4_1}DATATYPE" /> * &lt;attribute name="displayName" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="feature" type="{http://www.dmg.org/PMML-4_1}RESULT-FEATURE" /> * &lt;attribute name="isMultiValued" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" default="0" /> * &lt;attribute name="name" use="required" type="{http://www.dmg.org/PMML-4_1}FIELD-NAME" /> * &lt;attribute name="optype" type="{http://www.dmg.org/PMML-4_1}OPTYPE" /> * &lt;attribute name="rank" type="{http://www.dmg.org/PMML-4_1}INT-NUMBER" default="1" /> * &lt;attribute name="rankBasis" default="confidence"> * &lt;simpleType> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"> * &lt;enumeration value="confidence"/> * &lt;enumeration value="support"/> * &lt;enumeration value="lift"/> * &lt;enumeration value="leverage"/> * &lt;enumeration value="affinity"/> * &lt;/restriction> * &lt;/simpleType> * &lt;/attribute> * &lt;attribute name="rankOrder" default="descending"> * &lt;simpleType> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"> * &lt;enumeration value="descending"/> * &lt;enumeration value="ascending"/> * &lt;/restriction> * &lt;/simpleType> * &lt;/attribute> * &lt;attribute name="ruleFeature" type="{http://www.dmg.org/PMML-4_1}RULE-FEATURE" default="consequent" /> * &lt;attribute name="segmentId" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="targetField" type="{http://www.dmg.org/PMML-4_1}FIELD-NAME" /> * &lt;attribute name="value" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "decisions", "constant", "fieldRef", "normContinuous", "normDiscrete", "discretize", "mapValues", "apply", "aggregate" }) @XmlRootElement(name = "OutputField") public class OutputField { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "Decisions", namespace = "http://www.dmg.org/PMML-4_1") protected Decisions decisions; @XmlElement(name = "Constant", namespace = "http://www.dmg.org/PMML-4_1") protected Constant constant; @XmlElement(name = "FieldRef", namespace = "http://www.dmg.org/PMML-4_1") protected FieldRef fieldRef; @XmlElement(name = "NormContinuous", namespace = "http://www.dmg.org/PMML-4_1") protected NormContinuous normContinuous; @XmlElement(name = "NormDiscrete", namespace = "http://www.dmg.org/PMML-4_1") protected NormDiscrete normDiscrete; @XmlElement(name = "Discretize", namespace = "http://www.dmg.org/PMML-4_1") protected Discretize discretize; @XmlElement(name = "MapValues", namespace = "http://www.dmg.org/PMML-4_1") protected MapValues mapValues; @XmlElement(name = "Apply", namespace = "http://www.dmg.org/PMML-4_1") protected Apply apply; @XmlElement(name = "Aggregate", namespace = "http://www.dmg.org/PMML-4_1") protected Aggregate aggregate; @XmlAttribute protected String algorithm; @XmlAttribute protected DATATYPE dataType; @XmlAttribute protected String displayName; @XmlAttribute protected RESULTFEATURE feature; @XmlAttribute protected String isMultiValued; @XmlAttribute(required = true) protected String name; @XmlAttribute protected OPTYPE optype; @XmlAttribute protected BigInteger rank; @XmlAttribute protected String rankBasis; @XmlAttribute protected String rankOrder; @XmlAttribute protected RULEFEATURE ruleFeature; @XmlAttribute protected String segmentId; @XmlAttribute protected String targetField; @XmlAttribute protected String value; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the decisions property. * * @return * possible object is * {@link Decisions } * */ public Decisions getDecisions() { return decisions; } /** * Sets the value of the decisions property. * * @param value * allowed object is * {@link Decisions } * */ public void setDecisions(Decisions value) { this.decisions = value; } /** * Gets the value of the constant property. * * @return * possible object is * {@link Constant } * */ public Constant getConstant() { return constant; } /** * Sets the value of the constant property. * * @param value * allowed object is * {@link Constant } * */ public void setConstant(Constant value) { this.constant = value; } /** * Gets the value of the fieldRef property. * * @return * possible object is * {@link FieldRef } * */ public FieldRef getFieldRef() { return fieldRef; } /** * Sets the value of the fieldRef property. * * @param value * allowed object is * {@link FieldRef } * */ public void setFieldRef(FieldRef value) { this.fieldRef = value; } /** * Gets the value of the normContinuous property. * * @return * possible object is * {@link NormContinuous } * */ public NormContinuous getNormContinuous() { return normContinuous; } /** * Sets the value of the normContinuous property. * * @param value * allowed object is * {@link NormContinuous } * */ public void setNormContinuous(NormContinuous value) { this.normContinuous = value; } /** * Gets the value of the normDiscrete property. * * @return * possible object is * {@link NormDiscrete } * */ public NormDiscrete getNormDiscrete() { return normDiscrete; } /** * Sets the value of the normDiscrete property. * * @param value * allowed object is * {@link NormDiscrete } * */ public void setNormDiscrete(NormDiscrete value) { this.normDiscrete = value; } /** * Gets the value of the discretize property. * * @return * possible object is * {@link Discretize } * */ public Discretize getDiscretize() { return discretize; } /** * Sets the value of the discretize property. * * @param value * allowed object is * {@link Discretize } * */ public void setDiscretize(Discretize value) { this.discretize = value; } /** * Gets the value of the mapValues property. * * @return * possible object is * {@link MapValues } * */ public MapValues getMapValues() { return mapValues; } /** * Sets the value of the mapValues property. * * @param value * allowed object is * {@link MapValues } * */ public void setMapValues(MapValues value) { this.mapValues = value; } /** * Gets the value of the apply property. * * @return * possible object is * {@link Apply } * */ public Apply getApply() { return apply; } /** * Sets the value of the apply property. * * @param value * allowed object is * {@link Apply } * */ public void setApply(Apply value) { this.apply = value; } /** * Gets the value of the aggregate property. * * @return * possible object is * {@link Aggregate } * */ public Aggregate getAggregate() { return aggregate; } /** * Sets the value of the aggregate property. * * @param value * allowed object is * {@link Aggregate } * */ public void setAggregate(Aggregate value) { this.aggregate = value; } /** * Gets the value of the algorithm property. * * @return * possible object is * {@link String } * */ public String getAlgorithm() { if (algorithm == null) { return "exclusiveRecommendation"; } else { return algorithm; } } /** * Sets the value of the algorithm property. * * @param value * allowed object is * {@link String } * */ public void setAlgorithm(String value) { this.algorithm = value; } /** * Gets the value of the dataType property. * * @return * possible object is * {@link DATATYPE } * */ public DATATYPE getDataType() { return dataType; } /** * Sets the value of the dataType property. * * @param value * allowed object is * {@link DATATYPE } * */ public void setDataType(DATATYPE value) { this.dataType = value; } /** * Gets the value of the displayName property. * * @return * possible object is * {@link String } * */ public String getDisplayName() { return displayName; } /** * Sets the value of the displayName property. * * @param value * allowed object is * {@link String } * */ public void setDisplayName(String value) { this.displayName = value; } /** * Gets the value of the feature property. * * @return * possible object is * {@link RESULTFEATURE } * */ public RESULTFEATURE getFeature() { return feature; } /** * Sets the value of the feature property. * * @param value * allowed object is * {@link RESULTFEATURE } * */ public void setFeature(RESULTFEATURE value) { this.feature = value; } /** * Gets the value of the isMultiValued property. * * @return * possible object is * {@link String } * */ public String getIsMultiValued() { if (isMultiValued == null) { return "0"; } else { return isMultiValued; } } /** * Sets the value of the isMultiValued property. * * @param value * allowed object is * {@link String } * */ public void setIsMultiValued(String value) { this.isMultiValued = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the optype property. * * @return * possible object is * {@link OPTYPE } * */ public OPTYPE getOptype() { return optype; } /** * Sets the value of the optype property. * * @param value * allowed object is * {@link OPTYPE } * */ public void setOptype(OPTYPE value) { this.optype = value; } /** * Gets the value of the rank property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getRank() { if (rank == null) { return new BigInteger("1"); } else { return rank; } } /** * Sets the value of the rank property. * * @param value * allowed object is * {@link BigInteger } * */ public void setRank(BigInteger value) { this.rank = value; } /** * Gets the value of the rankBasis property. * * @return * possible object is * {@link String } * */ public String getRankBasis() { if (rankBasis == null) { return "confidence"; } else { return rankBasis; } } /** * Sets the value of the rankBasis property. * * @param value * allowed object is * {@link String } * */ public void setRankBasis(String value) { this.rankBasis = value; } /** * Gets the value of the rankOrder property. * * @return * possible object is * {@link String } * */ public String getRankOrder() { if (rankOrder == null) { return "descending"; } else { return rankOrder; } } /** * Sets the value of the rankOrder property. * * @param value * allowed object is * {@link String } * */ public void setRankOrder(String value) { this.rankOrder = value; } /** * Gets the value of the ruleFeature property. * * @return * possible object is * {@link RULEFEATURE } * */ public RULEFEATURE getRuleFeature() { if (ruleFeature == null) { return RULEFEATURE.CONSEQUENT; } else { return ruleFeature; } } /** * Sets the value of the ruleFeature property. * * @param value * allowed object is * {@link RULEFEATURE } * */ public void setRuleFeature(RULEFEATURE value) { this.ruleFeature = value; } /** * Gets the value of the segmentId property. * * @return * possible object is * {@link String } * */ public String getSegmentId() { return segmentId; } /** * Sets the value of the segmentId property. * * @param value * allowed object is * {@link String } * */ public void setSegmentId(String value) { this.segmentId = value; } /** * Gets the value of the targetField property. * * @return * possible object is * {@link String } * */ public String getTargetField() { return targetField; } /** * Sets the value of the targetField property. * * @param value * allowed object is * {@link String } * */ public void setTargetField(String value) { this.targetField = value; } /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/PCell.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.math.BigInteger; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for PCell element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="PCell"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="beta" use="required" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" /> * &lt;attribute name="df" type="{http://www.dmg.org/PMML-4_1}INT-NUMBER" /> * &lt;attribute name="parameterName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="targetCategory" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension" }) @XmlRootElement(name = "PCell") public class PCell { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlAttribute(required = true) protected double beta; @XmlAttribute protected BigInteger df; @XmlAttribute(required = true) protected String parameterName; @XmlAttribute protected String targetCategory; public PCell() {} public PCell(String targetCategory, String parameterName, BigInteger df, double beta) { this.targetCategory = targetCategory; this.parameterName = parameterName; this.df = df; this.beta = beta; } /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the beta property. * */ public double getBeta() { return beta; } /** * Sets the value of the beta property. * */ public void setBeta(double value) { this.beta = value; } /** * Gets the value of the df property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getDf() { return df; } /** * Sets the value of the df property. * * @param value * allowed object is * {@link BigInteger } * */ public void setDf(BigInteger value) { this.df = value; } /** * Gets the value of the parameterName property. * * @return * possible object is * {@link String } * */ public String getParameterName() { return parameterName; } /** * Sets the value of the parameterName property. * * @param value * allowed object is * {@link String } * */ public void setParameterName(String value) { this.parameterName = value; } /** * Gets the value of the targetCategory property. * * @return * possible object is * {@link String } * */ public String getTargetCategory() { return targetCategory; } /** * Sets the value of the targetCategory property. * * @param value * allowed object is * {@link String } * */ public void setTargetCategory(String value) { this.targetCategory = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/PCovCell.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for PCovCell element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="PCovCell"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="pCol" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="pRow" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="tCol" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="tRow" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="targetCategory" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="value" use="required" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension" }) @XmlRootElement(name = "PCovCell") public class PCovCell { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlAttribute(required = true) protected String pCol; @XmlAttribute(required = true) protected String pRow; @XmlAttribute protected String tCol; @XmlAttribute protected String tRow; @XmlAttribute protected String targetCategory; @XmlAttribute(required = true) protected double value; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the pCol property. * * @return * possible object is * {@link String } * */ public String getPCol() { return pCol; } /** * Sets the value of the pCol property. * * @param value * allowed object is * {@link String } * */ public void setPCol(String value) { this.pCol = value; } /** * Gets the value of the pRow property. * * @return * possible object is * {@link String } * */ public String getPRow() { return pRow; } /** * Sets the value of the pRow property. * * @param value * allowed object is * {@link String } * */ public void setPRow(String value) { this.pRow = value; } /** * Gets the value of the tCol property. * * @return * possible object is * {@link String } * */ public String getTCol() { return tCol; } /** * Sets the value of the tCol property. * * @param value * allowed object is * {@link String } * */ public void setTCol(String value) { this.tCol = value; } /** * Gets the value of the tRow property. * * @return * possible object is * {@link String } * */ public String getTRow() { return tRow; } /** * Sets the value of the tRow property. * * @param value * allowed object is * {@link String } * */ public void setTRow(String value) { this.tRow = value; } /** * Gets the value of the targetCategory property. * * @return * possible object is * {@link String } * */ public String getTargetCategory() { return targetCategory; } /** * Sets the value of the targetCategory property. * * @param value * allowed object is * {@link String } * */ public void setTargetCategory(String value) { this.targetCategory = value; } /** * Gets the value of the value property. * */ public double getValue() { return value; } /** * Sets the value of the value property. * */ public void setValue(double value) { this.value = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/PCovMatrix.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for PCovMatrix element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="PCovMatrix"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}PCovCell" maxOccurs="unbounded"/> * &lt;/sequence> * &lt;attribute name="type"> * &lt;simpleType> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"> * &lt;enumeration value="model"/> * &lt;enumeration value="robust"/> * &lt;/restriction> * &lt;/simpleType> * &lt;/attribute> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "pCovCell" }) @XmlRootElement(name = "PCovMatrix") public class PCovMatrix { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "PCovCell", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<PCovCell> pCovCell; @XmlAttribute protected String type; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the pCovCell property. * * <p> * 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 <CODE>set</CODE> method for the pCovCell property. * * <p> * For example, to add a new item, do as follows: * <pre> * getPCovCell().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link PCovCell } * * */ public List<PCovCell> getPCovCell() { if (pCovCell == null) { pCovCell = new ArrayList<PCovCell>(); } return this.pCovCell; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/PMML.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElements; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for PMML element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="PMML"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Header"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}MiningBuildTask" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}DataDictionary"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}TransformationDictionary" minOccurs="0"/> * &lt;sequence maxOccurs="unbounded" minOccurs="0"> * &lt;group ref="{http://www.dmg.org/PMML-4_1}MODEL-ELEMENT"/> * &lt;/sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="version" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "header", "miningBuildTask", "dataDictionary", "transformationDictionary", "associationModelOrBaselineModelOrClusteringModel", "extension" }) @XmlRootElement(name = "PMML") public class PMML { @XmlElement(name = "Header", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected Header header; @XmlElement(name = "MiningBuildTask", namespace = "http://www.dmg.org/PMML-4_1") protected MiningBuildTask miningBuildTask; @XmlElement(name = "DataDictionary", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected DataDictionary dataDictionary; @XmlElement(name = "TransformationDictionary", namespace = "http://www.dmg.org/PMML-4_1") protected TransformationDictionary transformationDictionary; @XmlElements({ @XmlElement(name = "TreeModel", namespace = "http://www.dmg.org/PMML-4_1", required = true, type = TreeModel.class), @XmlElement(name = "AssociationModel", namespace = "http://www.dmg.org/PMML-4_1", required = true, type = AssociationModel.class), @XmlElement(name = "SupportVectorMachineModel", namespace = "http://www.dmg.org/PMML-4_1", required = true, type = SupportVectorMachineModel.class), @XmlElement(name = "TimeSeriesModel", namespace = "http://www.dmg.org/PMML-4_1", required = true, type = TimeSeriesModel.class), @XmlElement(name = "ClusteringModel", namespace = "http://www.dmg.org/PMML-4_1", required = true, type = ClusteringModel.class), @XmlElement(name = "TextModel", namespace = "http://www.dmg.org/PMML-4_1", required = true, type = TextModel.class), @XmlElement(name = "NeuralNetwork", namespace = "http://www.dmg.org/PMML-4_1", required = true, type = NeuralNetwork.class), @XmlElement(name = "BaselineModel", namespace = "http://www.dmg.org/PMML-4_1", required = true, type = BaselineModel.class), @XmlElement(name = "GeneralRegressionModel", namespace = "http://www.dmg.org/PMML-4_1", required = true, type = GeneralRegressionModel.class), @XmlElement(name = "NearestNeighborModel", namespace = "http://www.dmg.org/PMML-4_1", required = true, type = NearestNeighborModel.class), @XmlElement(name = "NaiveBayesModel", namespace = "http://www.dmg.org/PMML-4_1", required = true, type = NaiveBayesModel.class), @XmlElement(name = "MiningModel", namespace = "http://www.dmg.org/PMML-4_1", required = true, type = MiningModel.class), @XmlElement(name = "SequenceModel", namespace = "http://www.dmg.org/PMML-4_1", required = true, type = SequenceModel.class), @XmlElement(name = "Scorecard", namespace = "http://www.dmg.org/PMML-4_1", required = true, type = Scorecard.class), @XmlElement(name = "RuleSetModel", namespace = "http://www.dmg.org/PMML-4_1", required = true, type = RuleSetModel.class), @XmlElement(name = "RegressionModel", namespace = "http://www.dmg.org/PMML-4_1", required = true, type = RegressionModel.class) }) protected List<Object> associationModelOrBaselineModelOrClusteringModel; @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlAttribute(required = true) protected String version; /** * Gets the value of the header property. * * @return * possible object is * {@link Header } * */ public Header getHeader() { return header; } /** * Sets the value of the header property. * * @param value * allowed object is * {@link Header } * */ public void setHeader(Header value) { this.header = value; } /** * Gets the value of the miningBuildTask property. * * @return * possible object is * {@link MiningBuildTask } * */ public MiningBuildTask getMiningBuildTask() { return miningBuildTask; } /** * Sets the value of the miningBuildTask property. * * @param value * allowed object is * {@link MiningBuildTask } * */ public void setMiningBuildTask(MiningBuildTask value) { this.miningBuildTask = value; } /** * Gets the value of the dataDictionary property. * * @return * possible object is * {@link DataDictionary } * */ public DataDictionary getDataDictionary() { return dataDictionary; } /** * Sets the value of the dataDictionary property. * * @param value * allowed object is * {@link DataDictionary } * */ public void setDataDictionary(DataDictionary value) { this.dataDictionary = value; } /** * Gets the value of the transformationDictionary property. * * @return * possible object is * {@link TransformationDictionary } * */ public TransformationDictionary getTransformationDictionary() { return transformationDictionary; } /** * Sets the value of the transformationDictionary property. * * @param value * allowed object is * {@link TransformationDictionary } * */ public void setTransformationDictionary(TransformationDictionary value) { this.transformationDictionary = value; } /** * Gets the value of the associationModelOrBaselineModelOrClusteringModel property. * * <p> * 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 <CODE>set</CODE> method for the associationModelOrBaselineModelOrClusteringModel property. * * <p> * For example, to add a new item, do as follows: * <pre> * getAssociationModelOrBaselineModelOrClusteringModel().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link TreeModel } * {@link AssociationModel } * {@link SupportVectorMachineModel } * {@link TimeSeriesModel } * {@link ClusteringModel } * {@link TextModel } * {@link NeuralNetwork } * {@link BaselineModel } * {@link GeneralRegressionModel } * {@link NearestNeighborModel } * {@link NaiveBayesModel } * {@link MiningModel } * {@link SequenceModel } * {@link Scorecard } * {@link RuleSetModel } * {@link RegressionModel } * * */ public List<Object> getAssociationModelOrBaselineModelOrClusteringModels() { if (associationModelOrBaselineModelOrClusteringModel == null) { associationModelOrBaselineModelOrClusteringModel = new ArrayList<Object>(); } return this.associationModelOrBaselineModelOrClusteringModel; } public void addAssociationModelOrBaselineModelOrClusteringModes(Object object) { if (associationModelOrBaselineModelOrClusteringModel == null) { associationModelOrBaselineModelOrClusteringModel = new ArrayList<Object>(); } this.associationModelOrBaselineModelOrClusteringModel.add(object); } /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the version property. * * @return * possible object is * {@link String } * */ public String getVersion() { return version; } /** * Sets the value of the version property. * * @param value * allowed object is * {@link String } * */ public void setVersion(String value) { this.version = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/PPCell.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for PPCell element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="PPCell"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="parameterName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="predictorName" use="required" type="{http://www.dmg.org/PMML-4_1}FIELD-NAME" /> * &lt;attribute name="targetCategory" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension" }) @XmlRootElement(name = "PPCell") public class PPCell { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlAttribute(required = true) protected String parameterName; @XmlAttribute(required = true) protected String predictorName; @XmlAttribute protected String targetCategory; @XmlAttribute(required = true) protected String value; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the parameterName property. * * @return * possible object is * {@link String } * */ public String getParameterName() { return parameterName; } /** * Sets the value of the parameterName property. * * @param value * allowed object is * {@link String } * */ public void setParameterName(String value) { this.parameterName = value; } /** * Gets the value of the predictorName property. * * @return * possible object is * {@link String } * */ public String getPredictorName() { return predictorName; } /** * Sets the value of the predictorName property. * * @param value * allowed object is * {@link String } * */ public void setPredictorName(String value) { this.predictorName = value; } /** * Gets the value of the targetCategory property. * * @return * possible object is * {@link String } * */ public String getTargetCategory() { return targetCategory; } /** * Sets the value of the targetCategory property. * * @param value * allowed object is * {@link String } * */ public void setTargetCategory(String value) { this.targetCategory = value; } /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/PPMatrix.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for PPMatrix element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="PPMatrix"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}PPCell" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "ppCell" }) @XmlRootElement(name = "PPMatrix") public class PPMatrix { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "PPCell", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<PPCell> ppCell; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the ppCell property. * * <p> * 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 <CODE>set</CODE> method for the ppCell property. * * <p> * For example, to add a new item, do as follows: * <pre> * getPPCell().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link PPCell } * * */ public List<PPCell> getPPCell() { if (ppCell == null) { ppCell = new ArrayList<PPCell>(); } return this.ppCell; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/PairCounts.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for PairCounts element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="PairCounts"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}TargetValueCounts"/> * &lt;/sequence> * &lt;attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "targetValueCounts" }) @XmlRootElement(name = "PairCounts") public class PairCounts { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "TargetValueCounts", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected TargetValueCounts targetValueCounts; @XmlAttribute(required = true) protected String value; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the targetValueCounts property. * * @return * possible object is * {@link TargetValueCounts } * */ public TargetValueCounts getTargetValueCounts() { return targetValueCounts; } /** * Sets the value of the targetValueCounts property. * * @param value * allowed object is * {@link TargetValueCounts } * */ public void setTargetValueCounts(TargetValueCounts value) { this.targetValueCounts = value; } /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/ParamMatrix.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for ParamMatrix element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="ParamMatrix"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}PCell" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "pCell" }) @XmlRootElement(name = "ParamMatrix") public class ParamMatrix { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "PCell", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<PCell> pCell; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the pCell property. * * <p> * 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 <CODE>set</CODE> method for the pCell property. * * <p> * For example, to add a new item, do as follows: * <pre> * getPCell().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link PCell } * * */ public List<PCell> getPCell() { if (pCell == null) { pCell = new ArrayList<PCell>(); } return this.pCell; } public void addPCell(PCell cell) { if (pCell == null) { pCell = new ArrayList<PCell>(); } this.pCell.add(cell); } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/Parameter.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for Parameter element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="Parameter"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="label" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="referencePoint" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" default="0" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension" }) @XmlRootElement(name = "Parameter") public class Parameter { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlAttribute protected String label; @XmlAttribute(required = true) protected String name; @XmlAttribute protected Double referencePoint; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the label property. * * @return * possible object is * {@link String } * */ public String getLabel() { return label; } /** * Sets the value of the label property. * * @param value * allowed object is * {@link String } * */ public void setLabel(String value) { this.label = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the referencePoint property. * * @return * possible object is * {@link Double } * */ public double getReferencePoint() { if (referencePoint == null) { return 0.0D; } else { return referencePoint; } } /** * Sets the value of the referencePoint property. * * @param value * allowed object is * {@link Double } * */ public void setReferencePoint(Double value) { this.referencePoint = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/ParameterField.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for ParameterField element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="ParameterField"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;attribute name="dataType" type="{http://www.dmg.org/PMML-4_1}DATATYPE" /> * &lt;attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="optype" type="{http://www.dmg.org/PMML-4_1}OPTYPE" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "ParameterField") public class ParameterField { @XmlAttribute protected DATATYPE dataType; @XmlAttribute(required = true) protected String name; @XmlAttribute protected OPTYPE optype; /** * Gets the value of the dataType property. * * @return * possible object is * {@link DATATYPE } * */ public DATATYPE getDataType() { return dataType; } /** * Sets the value of the dataType property. * * @param value * allowed object is * {@link DATATYPE } * */ public void setDataType(DATATYPE value) { this.dataType = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the optype property. * * @return * possible object is * {@link OPTYPE } * */ public OPTYPE getOptype() { return optype; } /** * Sets the value of the optype property. * * @param value * allowed object is * {@link OPTYPE } * */ public void setOptype(OPTYPE value) { this.optype = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/ParameterList.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for ParameterList element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="ParameterList"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Parameter" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "parameter" }) @XmlRootElement(name = "ParameterList") public class ParameterList { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "Parameter", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Parameter> parameter; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the parameter property. * * <p> * 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 <CODE>set</CODE> method for the parameter property. * * <p> * For example, to add a new item, do as follows: * <pre> * getParameter().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Parameter } * * */ public List<Parameter> getParameter() { if (parameter == null) { parameter = new ArrayList<Parameter>(); } return this.parameter; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/Partition.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for Partition element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="Partition"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}PartitionFieldStats" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="size" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "partitionFieldStats" }) @XmlRootElement(name = "Partition") public class Partition { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "PartitionFieldStats", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<PartitionFieldStats> partitionFieldStats; @XmlAttribute(required = true) protected String name; @XmlAttribute protected Double size; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the partitionFieldStats property. * * <p> * 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 <CODE>set</CODE> method for the partitionFieldStats property. * * <p> * For example, to add a new item, do as follows: * <pre> * getPartitionFieldStats().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link PartitionFieldStats } * * */ public List<PartitionFieldStats> getPartitionFieldStats() { if (partitionFieldStats == null) { partitionFieldStats = new ArrayList<PartitionFieldStats>(); } return this.partitionFieldStats; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the size property. * * @return * possible object is * {@link Double } * */ public Double getSize() { return size; } /** * Sets the value of the size property. * * @param value * allowed object is * {@link Double } * */ public void setSize(Double value) { this.size = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/PartitionFieldStats.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for PartitionFieldStats element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="PartitionFieldStats"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Counts" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}NumericInfo" minOccurs="0"/> * &lt;group ref="{http://www.dmg.org/PMML-4_1}FrequenciesType" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="field" use="required" type="{http://www.dmg.org/PMML-4_1}FIELD-NAME" /> * &lt;attribute name="weighted" default="0"> * &lt;simpleType> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"> * &lt;enumeration value="0"/> * &lt;enumeration value="1"/> * &lt;/restriction> * &lt;/simpleType> * &lt;/attribute> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "counts", "numericInfo", "numarray" }) @XmlRootElement(name = "PartitionFieldStats") public class PartitionFieldStats { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "Counts", namespace = "http://www.dmg.org/PMML-4_1") protected Counts counts; @XmlElement(name = "NumericInfo", namespace = "http://www.dmg.org/PMML-4_1") protected NumericInfo numericInfo; @XmlElement(name = "Array", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<ArrayType> numarray; @XmlAttribute(required = true) protected String field; @XmlAttribute protected String weighted; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the counts property. * * @return * possible object is * {@link Counts } * */ public Counts getCounts() { return counts; } /** * Sets the value of the counts property. * * @param value * allowed object is * {@link Counts } * */ public void setCounts(Counts value) { this.counts = value; } /** * Gets the value of the numericInfo property. * * @return * possible object is * {@link NumericInfo } * */ public NumericInfo getNumericInfo() { return numericInfo; } /** * Sets the value of the numericInfo property. * * @param value * allowed object is * {@link NumericInfo } * */ public void setNumericInfo(NumericInfo value) { this.numericInfo = value; } /** * Gets the value of the numarray property. * * <p> * 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 <CODE>set</CODE> method for the numarray property. * * <p> * For example, to add a new item, do as follows: * <pre> * getNUMARRAY().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link ArrayType } * * */ public List<ArrayType> getNUMARRAY() { if (numarray == null) { numarray = new ArrayList<ArrayType>(); } return this.numarray; } /** * Gets the value of the field property. * * @return * possible object is * {@link String } * */ public String getField() { return field; } /** * Sets the value of the field property. * * @param value * allowed object is * {@link String } * */ public void setField(String value) { this.field = value; } /** * Gets the value of the weighted property. * * @return * possible object is * {@link String } * */ public String getWeighted() { if (weighted == null) { return "0"; } else { return weighted; } } /** * Sets the value of the weighted property. * * @param value * allowed object is * {@link String } * */ public void setWeighted(String value) { this.weighted = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/PoissonDistribution.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for PoissonDistribution element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="PoissonDistribution"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="mean" use="required" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension" }) @XmlRootElement(name = "PoissonDistribution") public class PoissonDistribution { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlAttribute(required = true) protected double mean; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the mean property. * */ public double getMean() { return mean; } /** * Sets the value of the mean property. * */ public void setMean(double value) { this.mean = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/PolynomialKernelType.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for PolynomialKernelType element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="PolynomialKernelType"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="coef0" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" default="1" /> * &lt;attribute name="degree" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" default="1" /> * &lt;attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="gamma" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" default="1" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension" }) @XmlRootElement(name = "PolynomialKernelType") public class PolynomialKernelType { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlAttribute protected Double coef0; @XmlAttribute protected Double degree; @XmlAttribute protected String description; @XmlAttribute protected Double gamma; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the coef0 property. * * @return * possible object is * {@link Double } * */ public double getCoef0() { if (coef0 == null) { return 1.0D; } else { return coef0; } } /** * Sets the value of the coef0 property. * * @param value * allowed object is * {@link Double } * */ public void setCoef0(Double value) { this.coef0 = value; } /** * Gets the value of the degree property. * * @return * possible object is * {@link Double } * */ public double getDegree() { if (degree == null) { return 1.0D; } else { return degree; } } /** * Sets the value of the degree property. * * @param value * allowed object is * {@link Double } * */ public void setDegree(Double value) { this.degree = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the gamma property. * * @return * possible object is * {@link Double } * */ public double getGamma() { if (gamma == null) { return 1.0D; } else { return gamma; } } /** * Sets the value of the gamma property. * * @param value * allowed object is * {@link Double } * */ public void setGamma(Double value) { this.gamma = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/PredictiveModelQuality.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for PredictiveModelQuality element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="PredictiveModelQuality"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}ConfusionMatrix" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}LiftData" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}ROC" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="AIC" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="AICc" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="BIC" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="adj-r-squared" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="dataName" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="dataUsage" default="training"> * &lt;simpleType> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"> * &lt;enumeration value="training"/> * &lt;enumeration value="test"/> * &lt;enumeration value="validation"/> * &lt;/restriction> * &lt;/simpleType> * &lt;/attribute> * &lt;attribute name="degreesOfFreedom" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="fStatistic" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="meanAbsoluteError" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="meanError" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="meanSquaredError" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="numOfPredictors" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="numOfRecords" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="numOfRecordsWeighted" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="r-squared" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="rootMeanSquaredError" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="sumSquaredError" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="sumSquaredRegression" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;attribute name="targetField" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "confusionMatrix", "liftData", "roc" }) @XmlRootElement(name = "PredictiveModelQuality") public class PredictiveModelQuality { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "ConfusionMatrix", namespace = "http://www.dmg.org/PMML-4_1") protected ConfusionMatrix confusionMatrix; @XmlElement(name = "LiftData", namespace = "http://www.dmg.org/PMML-4_1") protected LiftData liftData; @XmlElement(name = "ROC", namespace = "http://www.dmg.org/PMML-4_1") protected ROC roc; @XmlAttribute(name = "AIC") protected Double aic; @XmlAttribute(name = "AICc") protected Double aiCc; @XmlAttribute(name = "BIC") protected Double bic; @XmlAttribute(name = "adj-r-squared") protected Double adjRSquared; @XmlAttribute protected String dataName; @XmlAttribute protected String dataUsage; @XmlAttribute protected Double degreesOfFreedom; @XmlAttribute protected Double fStatistic; @XmlAttribute protected Double meanAbsoluteError; @XmlAttribute protected Double meanError; @XmlAttribute protected Double meanSquaredError; @XmlAttribute protected Double numOfPredictors; @XmlAttribute protected Double numOfRecords; @XmlAttribute protected Double numOfRecordsWeighted; @XmlAttribute(name = "r-squared") protected Double rSquared; @XmlAttribute protected Double rootMeanSquaredError; @XmlAttribute protected Double sumSquaredError; @XmlAttribute protected Double sumSquaredRegression; @XmlAttribute(required = true) protected String targetField; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the confusionMatrix property. * * @return * possible object is * {@link ConfusionMatrix } * */ public ConfusionMatrix getConfusionMatrix() { return confusionMatrix; } /** * Sets the value of the confusionMatrix property. * * @param value * allowed object is * {@link ConfusionMatrix } * */ public void setConfusionMatrix(ConfusionMatrix value) { this.confusionMatrix = value; } /** * Gets the value of the liftData property. * * @return * possible object is * {@link LiftData } * */ public LiftData getLiftData() { return liftData; } /** * Sets the value of the liftData property. * * @param value * allowed object is * {@link LiftData } * */ public void setLiftData(LiftData value) { this.liftData = value; } /** * Gets the value of the roc property. * * @return * possible object is * {@link ROC } * */ public ROC getROC() { return roc; } /** * Sets the value of the roc property. * * @param value * allowed object is * {@link ROC } * */ public void setROC(ROC value) { this.roc = value; } /** * Gets the value of the aic property. * * @return * possible object is * {@link Double } * */ public Double getAIC() { return aic; } /** * Sets the value of the aic property. * * @param value * allowed object is * {@link Double } * */ public void setAIC(Double value) { this.aic = value; } /** * Gets the value of the aiCc property. * * @return * possible object is * {@link Double } * */ public Double getAICc() { return aiCc; } /** * Sets the value of the aiCc property. * * @param value * allowed object is * {@link Double } * */ public void setAICc(Double value) { this.aiCc = value; } /** * Gets the value of the bic property. * * @return * possible object is * {@link Double } * */ public Double getBIC() { return bic; } /** * Sets the value of the bic property. * * @param value * allowed object is * {@link Double } * */ public void setBIC(Double value) { this.bic = value; } /** * Gets the value of the adjRSquared property. * * @return * possible object is * {@link Double } * */ public Double getAdjRSquared() { return adjRSquared; } /** * Sets the value of the adjRSquared property. * * @param value * allowed object is * {@link Double } * */ public void setAdjRSquared(Double value) { this.adjRSquared = value; } /** * Gets the value of the dataName property. * * @return * possible object is * {@link String } * */ public String getDataName() { return dataName; } /** * Sets the value of the dataName property. * * @param value * allowed object is * {@link String } * */ public void setDataName(String value) { this.dataName = value; } /** * Gets the value of the dataUsage property. * * @return * possible object is * {@link String } * */ public String getDataUsage() { if (dataUsage == null) { return "training"; } else { return dataUsage; } } /** * Sets the value of the dataUsage property. * * @param value * allowed object is * {@link String } * */ public void setDataUsage(String value) { this.dataUsage = value; } /** * Gets the value of the degreesOfFreedom property. * * @return * possible object is * {@link Double } * */ public Double getDegreesOfFreedom() { return degreesOfFreedom; } /** * Sets the value of the degreesOfFreedom property. * * @param value * allowed object is * {@link Double } * */ public void setDegreesOfFreedom(Double value) { this.degreesOfFreedom = value; } /** * Gets the value of the fStatistic property. * * @return * possible object is * {@link Double } * */ public Double getFStatistic() { return fStatistic; } /** * Sets the value of the fStatistic property. * * @param value * allowed object is * {@link Double } * */ public void setFStatistic(Double value) { this.fStatistic = value; } /** * Gets the value of the meanAbsoluteError property. * * @return * possible object is * {@link Double } * */ public Double getMeanAbsoluteError() { return meanAbsoluteError; } /** * Sets the value of the meanAbsoluteError property. * * @param value * allowed object is * {@link Double } * */ public void setMeanAbsoluteError(Double value) { this.meanAbsoluteError = value; } /** * Gets the value of the meanError property. * * @return * possible object is * {@link Double } * */ public Double getMeanError() { return meanError; } /** * Sets the value of the meanError property. * * @param value * allowed object is * {@link Double } * */ public void setMeanError(Double value) { this.meanError = value; } /** * Gets the value of the meanSquaredError property. * * @return * possible object is * {@link Double } * */ public Double getMeanSquaredError() { return meanSquaredError; } /** * Sets the value of the meanSquaredError property. * * @param value * allowed object is * {@link Double } * */ public void setMeanSquaredError(Double value) { this.meanSquaredError = value; } /** * Gets the value of the numOfPredictors property. * * @return * possible object is * {@link Double } * */ public Double getNumOfPredictors() { return numOfPredictors; } /** * Sets the value of the numOfPredictors property. * * @param value * allowed object is * {@link Double } * */ public void setNumOfPredictors(Double value) { this.numOfPredictors = value; } /** * Gets the value of the numOfRecords property. * * @return * possible object is * {@link Double } * */ public Double getNumOfRecords() { return numOfRecords; } /** * Sets the value of the numOfRecords property. * * @param value * allowed object is * {@link Double } * */ public void setNumOfRecords(Double value) { this.numOfRecords = value; } /** * Gets the value of the numOfRecordsWeighted property. * * @return * possible object is * {@link Double } * */ public Double getNumOfRecordsWeighted() { return numOfRecordsWeighted; } /** * Sets the value of the numOfRecordsWeighted property. * * @param value * allowed object is * {@link Double } * */ public void setNumOfRecordsWeighted(Double value) { this.numOfRecordsWeighted = value; } /** * Gets the value of the rSquared property. * * @return * possible object is * {@link Double } * */ public Double getRSquared() { return rSquared; } /** * Sets the value of the rSquared property. * * @param value * allowed object is * {@link Double } * */ public void setRSquared(Double value) { this.rSquared = value; } /** * Gets the value of the rootMeanSquaredError property. * * @return * possible object is * {@link Double } * */ public Double getRootMeanSquaredError() { return rootMeanSquaredError; } /** * Sets the value of the rootMeanSquaredError property. * * @param value * allowed object is * {@link Double } * */ public void setRootMeanSquaredError(Double value) { this.rootMeanSquaredError = value; } /** * Gets the value of the sumSquaredError property. * * @return * possible object is * {@link Double } * */ public Double getSumSquaredError() { return sumSquaredError; } /** * Sets the value of the sumSquaredError property. * * @param value * allowed object is * {@link Double } * */ public void setSumSquaredError(Double value) { this.sumSquaredError = value; } /** * Gets the value of the sumSquaredRegression property. * * @return * possible object is * {@link Double } * */ public Double getSumSquaredRegression() { return sumSquaredRegression; } /** * Sets the value of the sumSquaredRegression property. * * @param value * allowed object is * {@link Double } * */ public void setSumSquaredRegression(Double value) { this.sumSquaredRegression = value; } /** * Gets the value of the targetField property. * * @return * possible object is * {@link String } * */ public String getTargetField() { return targetField; } /** * Sets the value of the targetField property. * * @param value * allowed object is * {@link String } * */ public void setTargetField(String value) { this.targetField = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/Predictor.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for Predictor element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="Predictor"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Categories" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Matrix" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="contrastMatrixType" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="name" use="required" type="{http://www.dmg.org/PMML-4_1}FIELD-NAME" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "categories", "matrix" }) @XmlRootElement(name = "Predictor") public class Predictor { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "Categories", namespace = "http://www.dmg.org/PMML-4_1") protected Categories categories; @XmlElement(name = "Matrix", namespace = "http://www.dmg.org/PMML-4_1") protected Matrix matrix; @XmlAttribute protected String contrastMatrixType; @XmlAttribute(required = true) protected String name; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the categories property. * * @return * possible object is * {@link Categories } * */ public Categories getCategories() { return categories; } /** * Sets the value of the categories property. * * @param value * allowed object is * {@link Categories } * */ public void setCategories(Categories value) { this.categories = value; } /** * Gets the value of the matrix property. * * @return * possible object is * {@link Matrix } * */ public Matrix getMatrix() { return matrix; } /** * Sets the value of the matrix property. * * @param value * allowed object is * {@link Matrix } * */ public void setMatrix(Matrix value) { this.matrix = value; } /** * Gets the value of the contrastMatrixType property. * * @return * possible object is * {@link String } * */ public String getContrastMatrixType() { return contrastMatrixType; } /** * Sets the value of the contrastMatrixType property. * * @param value * allowed object is * {@link String } * */ public void setContrastMatrixType(String value) { this.contrastMatrixType = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/PredictorTerm.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for PredictorTerm element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="PredictorTerm"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}FieldRef" maxOccurs="unbounded"/> * &lt;/sequence> * &lt;attribute name="coefficient" use="required" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" /> * &lt;attribute name="name" type="{http://www.dmg.org/PMML-4_1}FIELD-NAME" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension", "fieldRef" }) @XmlRootElement(name = "PredictorTerm") public class PredictorTerm { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlElement(name = "FieldRef", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<FieldRef> fieldRef; @XmlAttribute(required = true) protected double coefficient; @XmlAttribute protected String name; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the fieldRef property. * * <p> * 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 <CODE>set</CODE> method for the fieldRef property. * * <p> * For example, to add a new item, do as follows: * <pre> * getFieldRef().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link FieldRef } * * */ public List<FieldRef> getFieldRef() { if (fieldRef == null) { fieldRef = new ArrayList<FieldRef>(); } return this.fieldRef; } /** * Gets the value of the coefficient property. * */ public double getCoefficient() { return coefficient; } /** * Sets the value of the coefficient property. * */ public void setCoefficient(double value) { this.coefficient = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/Quantile.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.math.BigDecimal; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for Quantile element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="Quantile"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="quantileLimit" use="required" type="{http://www.dmg.org/PMML-4_1}PERCENTAGE-NUMBER" /> * &lt;attribute name="quantileValue" use="required" type="{http://www.dmg.org/PMML-4_1}NUMBER" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension" }) @XmlRootElement(name = "Quantile") public class Quantile { @XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", required = true) protected List<Extension> extension; @XmlAttribute(required = true) protected BigDecimal quantileLimit; @XmlAttribute(required = true) protected double quantileValue; /** * Gets the value of the extension property. * * <p> * 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 <CODE>set</CODE> method for the extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List<Extension> getExtension() { if (extension == null) { extension = new ArrayList<Extension>(); } return this.extension; } /** * Gets the value of the quantileLimit property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getQuantileLimit() { return quantileLimit; } /** * Sets the value of the quantileLimit property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setQuantileLimit(BigDecimal value) { this.quantileLimit = value; } /** * Gets the value of the quantileValue property. * */ public double getQuantileValue() { return quantileValue; } /** * Sets the value of the quantileValue property. * */ public void setQuantileValue(double value) { this.quantileValue = value; } }
0
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml
java-sources/ai/libs/thirdparty/interruptible-weka/0.1.6/weka/core/pmml/jaxbbindings/REALSparseArray.java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.12.20 at 12:48:21 PM GMT // package weka.core.pmml.jaxbbindings; import java.math.BigInteger; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlList; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for REAL-SparseArray element declaration. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;element name="REAL-SparseArray"> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Indices" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}REAL-Entries" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="defaultValue" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" default="0" /> * &lt;attribute name="n" type="{http://www.dmg.org/PMML-4_1}INT-NUMBER" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "indices", "realEntries" }) @XmlRootElement(name = "REAL-SparseArray") public class REALSparseArray { @XmlList @XmlElement(name = "Indices", namespace = "http://www.dmg.org/PMML-4_1", type = Integer.class) protected List<Integer> indices; @XmlList @XmlElement(name = "REAL-Entries", namespace = "http://www.dmg.org/PMML-4_1", type = Double.class) protected List<Double> realEntries; @XmlAttribute protected Double defaultValue; @XmlAttribute protected BigInteger n; /** * Gets the value of the indices property. * * <p> * 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 <CODE>set</CODE> method for the indices property. * * <p> * For example, to add a new item, do as follows: * <pre> * getIndices().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Integer } * * */ public List<Integer> getIndices() { if (indices == null) { indices = new ArrayList<Integer>(); } return this.indices; } /** * Gets the value of the realEntries property. * * <p> * 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 <CODE>set</CODE> method for the realEntries property. * * <p> * For example, to add a new item, do as follows: * <pre> * getREALEntries().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Double } * * */ public List<Double> getREALEntries() { if (realEntries == null) { realEntries = new ArrayList<Double>(); } return this.realEntries; } /** * Gets the value of the defaultValue property. * * @return * possible object is * {@link Double } * */ public double getDefaultValue() { if (defaultValue == null) { return 0.0D; } else { return defaultValue; } } /** * Sets the value of the defaultValue property. * * @param value * allowed object is * {@link Double } * */ public void setDefaultValue(Double value) { this.defaultValue = value; } /** * Gets the value of the n property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getN() { return n; } /** * Sets the value of the n property. * * @param value * allowed object is * {@link BigInteger } * */ public void setN(BigInteger value) { this.n = value; } }