org.dmg.pmml.naive_bayes.PairCounts Maven / Gradle / Ivy
package org.dmg.pmml.naive_bayes;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonRootName;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.dmg.pmml.Extension;
import org.dmg.pmml.HasExtensions;
import org.dmg.pmml.HasValue;
import org.dmg.pmml.Visitor;
import org.dmg.pmml.VisitorAction;
import org.dmg.pmml.adapters.ObjectAdapter;
import org.jpmml.model.MissingAttributeException;
import org.jpmml.model.MissingElementException;
import org.jpmml.model.annotations.ValueConstructor;
@XmlRootElement(name = "PairCounts", namespace = "http://www.dmg.org/PMML-4_4")
@XmlType(name = "", propOrder = {
"extensions",
"targetValueCounts"
})
@JsonRootName("PairCounts")
@JsonPropertyOrder({
"value",
"extensions",
"targetValueCounts"
})
public class PairCounts
extends org.dmg.pmml.PMMLObject
implements HasExtensions , HasValue
{
@XmlAttribute(name = "value", required = true)
@XmlJavaTypeAdapter(ObjectAdapter.class)
@XmlSchemaType(name = "anySimpleType")
@JsonProperty("value")
private Object value;
@XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_4")
@JsonProperty("Extension")
private List extensions;
@XmlElement(name = "TargetValueCounts", namespace = "http://www.dmg.org/PMML-4_4", required = true)
@JsonProperty("TargetValueCounts")
private TargetValueCounts targetValueCounts;
private final static long serialVersionUID = 67371270L;
public PairCounts() {
}
@ValueConstructor
public PairCounts(
@org.jpmml.model.annotations.Property("value")
Object value,
@org.jpmml.model.annotations.Property("targetValueCounts")
TargetValueCounts targetValueCounts) {
this.value = value;
this.targetValueCounts = targetValueCounts;
}
@Override
public Object requireValue() {
if (this.value == null) {
throw new MissingAttributeException(this, PMMLAttributes.PAIRCOUNTS_VALUE);
}
return this.value;
}
@Override
public Object getValue() {
return value;
}
@Override
public PairCounts setValue(
@org.jpmml.model.annotations.Property("value")
Object value) {
this.value = value;
return this;
}
@Override
public boolean hasExtensions() {
return ((this.extensions!= null)&&(!this.extensions.isEmpty()));
}
@Override
public List getExtensions() {
if (extensions == null) {
extensions = new ArrayList();
}
return this.extensions;
}
@Override
public PairCounts addExtensions(Extension... extensions) {
getExtensions().addAll(Arrays.asList(extensions));
return this;
}
public TargetValueCounts requireTargetValueCounts() {
if (this.targetValueCounts == null) {
throw new MissingElementException(this, PMMLElements.PAIRCOUNTS_TARGETVALUECOUNTS);
}
return this.targetValueCounts;
}
public TargetValueCounts getTargetValueCounts() {
return targetValueCounts;
}
public PairCounts setTargetValueCounts(
@org.jpmml.model.annotations.Property("targetValueCounts")
TargetValueCounts targetValueCounts) {
this.targetValueCounts = targetValueCounts;
return this;
}
@Override
public VisitorAction accept(Visitor visitor) {
VisitorAction status = visitor.visit(this);
if (status == VisitorAction.CONTINUE) {
visitor.pushParent(this);
if ((status == VisitorAction.CONTINUE)&&hasExtensions()) {
status = org.dmg.pmml.PMMLObject.traverse(visitor, getExtensions());
}
if (status == VisitorAction.CONTINUE) {
status = org.dmg.pmml.PMMLObject.traverse(visitor, getTargetValueCounts());
}
visitor.popParent();
}
if (status == VisitorAction.TERMINATE) {
return VisitorAction.TERMINATE;
}
return VisitorAction.CONTINUE;
}
}