org.dmg.pmml.ROC Maven / Gradle / Ivy
package org.dmg.pmml;
import java.util.ArrayList;
import java.util.Collection;
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.XmlTransient;
import javax.xml.bind.annotation.XmlType;
import com.sun.xml.bind.Locatable;
import com.sun.xml.bind.annotation.XmlLocation;
import org.jpmml.schema.Added;
import org.jpmml.schema.Version;
import org.xml.sax.Locator;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://www.dmg.org/PMML-4_2}Extension" maxOccurs="unbounded" minOccurs="0"/>
* <element ref="{http://www.dmg.org/PMML-4_2}ROCGraph"/>
* </sequence>
* <attribute name="positiveTargetFieldValue" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="positiveTargetFieldDisplayValue" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="negativeTargetFieldValue" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="negativeTargetFieldDisplayValue" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"extensions",
"rocGraph"
})
@XmlRootElement(name = "ROC")
@Added(Version.PMML_4_0)
public class ROC
extends PMMLObject
implements Locatable, HasExtensions
{
@XmlElement(name = "Extension")
protected List extensions;
@XmlElement(name = "ROCGraph", required = true)
protected ROCGraph rocGraph;
@XmlAttribute(name = "positiveTargetFieldValue", required = true)
protected String positiveTargetFieldValue;
@XmlAttribute(name = "positiveTargetFieldDisplayValue")
protected String positiveTargetFieldDisplayValue;
@XmlAttribute(name = "negativeTargetFieldValue")
protected String negativeTargetFieldValue;
@XmlAttribute(name = "negativeTargetFieldDisplayValue")
protected String negativeTargetFieldDisplayValue;
@XmlLocation
@XmlTransient
protected Locator locator;
public ROC() {
super();
}
public ROC(final ROCGraph rocGraph, final String positiveTargetFieldValue) {
super();
this.rocGraph = rocGraph;
this.positiveTargetFieldValue = positiveTargetFieldValue;
}
/**
* Gets the value of the extensions property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the extensions property.
*
*
* For example, to add a new item, do as follows:
*
* getExtensions().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Extension }
*
*
*/
public List getExtensions() {
if (extensions == null) {
extensions = new ArrayList();
}
return this.extensions;
}
/**
* Gets the value of the rocGraph property.
*
* @return
* possible object is
* {@link ROCGraph }
*
*/
public ROCGraph getROCGraph() {
return rocGraph;
}
/**
* Sets the value of the rocGraph property.
*
* @param value
* allowed object is
* {@link ROCGraph }
*
*/
public void setROCGraph(ROCGraph value) {
this.rocGraph = value;
}
/**
* Gets the value of the positiveTargetFieldValue property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPositiveTargetFieldValue() {
return positiveTargetFieldValue;
}
/**
* Sets the value of the positiveTargetFieldValue property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPositiveTargetFieldValue(String value) {
this.positiveTargetFieldValue = value;
}
/**
* Gets the value of the positiveTargetFieldDisplayValue property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPositiveTargetFieldDisplayValue() {
return positiveTargetFieldDisplayValue;
}
/**
* Sets the value of the positiveTargetFieldDisplayValue property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPositiveTargetFieldDisplayValue(String value) {
this.positiveTargetFieldDisplayValue = value;
}
/**
* Gets the value of the negativeTargetFieldValue property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNegativeTargetFieldValue() {
return negativeTargetFieldValue;
}
/**
* Sets the value of the negativeTargetFieldValue property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNegativeTargetFieldValue(String value) {
this.negativeTargetFieldValue = value;
}
/**
* Gets the value of the negativeTargetFieldDisplayValue property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNegativeTargetFieldDisplayValue() {
return negativeTargetFieldDisplayValue;
}
/**
* Sets the value of the negativeTargetFieldDisplayValue property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNegativeTargetFieldDisplayValue(String value) {
this.negativeTargetFieldDisplayValue = value;
}
public ROC withExtensions(Extension... values) {
if (values!= null) {
for (Extension value: values) {
getExtensions().add(value);
}
}
return this;
}
public ROC withExtensions(Collection values) {
if (values!= null) {
getExtensions().addAll(values);
}
return this;
}
public ROC withROCGraph(ROCGraph value) {
setROCGraph(value);
return this;
}
public ROC withPositiveTargetFieldValue(String value) {
setPositiveTargetFieldValue(value);
return this;
}
public ROC withPositiveTargetFieldDisplayValue(String value) {
setPositiveTargetFieldDisplayValue(value);
return this;
}
public ROC withNegativeTargetFieldValue(String value) {
setNegativeTargetFieldValue(value);
return this;
}
public ROC withNegativeTargetFieldDisplayValue(String value) {
setNegativeTargetFieldDisplayValue(value);
return this;
}
public Locator sourceLocation() {
return locator;
}
public void setSourceLocation(Locator newLocator) {
locator = newLocator;
}
@Override
public VisitorAction accept(Visitor visitor) {
VisitorAction status = visitor.visit(this);
for (int i = 0; (((status == VisitorAction.CONTINUE)&&(this.extensions!= null))&&(i