All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.dmg.pmml.CompoundPredicate Maven / Gradle / Ivy
package org.dmg.pmml;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElements;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonRootName;
import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import org.jpmml.model.annotations.ValueConstructor;
@XmlRootElement(name = "CompoundPredicate", namespace = "http://www.dmg.org/PMML-4_4")
@XmlType(name = "", propOrder = {
"extensions",
"predicates"
})
@JsonRootName("CompoundPredicate")
@JsonPropertyOrder({
"booleanOperator",
"extensions",
"predicates"
})
public class CompoundPredicate
extends org.dmg.pmml.Predicate
implements HasExtensions
{
@XmlAttribute(name = "booleanOperator", required = true)
@JsonProperty("booleanOperator")
private CompoundPredicate.BooleanOperator booleanOperator;
@XmlElement(name = "Extension", namespace = "http://www.dmg.org/PMML-4_4")
@JsonProperty("Extension")
private List extensions;
@XmlElements({
@XmlElement(name = "SimplePredicate", namespace = "http://www.dmg.org/PMML-4_4", type = org.dmg.pmml.SimplePredicate.class),
@XmlElement(name = "CompoundPredicate", namespace = "http://www.dmg.org/PMML-4_4", type = CompoundPredicate.class),
@XmlElement(name = "SimpleSetPredicate", namespace = "http://www.dmg.org/PMML-4_4", type = org.dmg.pmml.SimpleSetPredicate.class),
@XmlElement(name = "True", namespace = "http://www.dmg.org/PMML-4_4", type = org.dmg.pmml.True.class),
@XmlElement(name = "False", namespace = "http://www.dmg.org/PMML-4_4", type = org.dmg.pmml.False.class)
})
@JsonProperty("Predicate")
@JsonTypeInfo(include = JsonTypeInfo.As.WRAPPER_OBJECT, use = JsonTypeInfo.Id.NAME)
@JsonSubTypes({
@JsonSubTypes.Type(name = "SimplePredicate", value = org.dmg.pmml.SimplePredicate.class),
@JsonSubTypes.Type(name = "CompoundPredicate", value = org.dmg.pmml.CompoundPredicate.class),
@JsonSubTypes.Type(name = "SimpleSetPredicate", value = org.dmg.pmml.SimpleSetPredicate.class),
@JsonSubTypes.Type(name = "True", value = org.dmg.pmml.True.class),
@JsonSubTypes.Type(name = "False", value = org.dmg.pmml.False.class)
})
private List predicates;
private final static long serialVersionUID = 67371268L;
public CompoundPredicate() {
}
@ValueConstructor
public CompoundPredicate(
@org.jpmml.model.annotations.Property("booleanOperator")
CompoundPredicate.BooleanOperator booleanOperator,
@org.jpmml.model.annotations.Property("predicates")
List predicates) {
this.booleanOperator = booleanOperator;
this.predicates = predicates;
}
public CompoundPredicate.BooleanOperator getBooleanOperator() {
return booleanOperator;
}
public CompoundPredicate setBooleanOperator(
@org.jpmml.model.annotations.Property("booleanOperator")
CompoundPredicate.BooleanOperator booleanOperator) {
this.booleanOperator = booleanOperator;
return this;
}
@Override
public boolean hasExtensions() {
return ((this.extensions!= null)&&(this.extensions.size()> 0));
}
@Override
public List getExtensions() {
if (extensions == null) {
extensions = new ArrayList();
}
return this.extensions;
}
@Override
public CompoundPredicate addExtensions(Extension... extensions) {
getExtensions().addAll(Arrays.asList(extensions));
return this;
}
public boolean hasPredicates() {
return ((this.predicates!= null)&&(this.predicates.size()> 0));
}
public List getPredicates() {
if (predicates == null) {
predicates = new ArrayList();
}
return this.predicates;
}
public CompoundPredicate addPredicates(org.dmg.pmml.Predicate... predicates) {
getPredicates().addAll(Arrays.asList(predicates));
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 = PMMLObject.traverse(visitor, getExtensions());
}
if ((status == VisitorAction.CONTINUE)&&hasPredicates()) {
status = PMMLObject.traverse(visitor, getPredicates());
}
visitor.popParent();
}
if (status == VisitorAction.TERMINATE) {
return VisitorAction.TERMINATE;
}
return VisitorAction.CONTINUE;
}
@XmlType(name = "")
@XmlEnum
public enum BooleanOperator
implements StringValue
{
@XmlEnumValue("or")
@JsonProperty("or")
OR("or"),
@XmlEnumValue("and")
@JsonProperty("and")
AND("and"),
@XmlEnumValue("xor")
@JsonProperty("xor")
XOR("xor"),
@XmlEnumValue("surrogate")
@JsonProperty("surrogate")
SURROGATE("surrogate");
private final String value;
BooleanOperator(String v) {
value = v;
}
@Override
public String value() {
return value;
}
public static CompoundPredicate.BooleanOperator fromValue(String v) {
for (CompoundPredicate.BooleanOperator c: CompoundPredicate.BooleanOperator.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
@Override
public String toString() {
return value();
}
}
}