org.dmg.pmml.Aggregate 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.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlTransient;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import com.sun.xml.bind.Locatable;
import com.sun.xml.bind.annotation.XmlLocation;
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"/>
* </sequence>
* <attribute name="field" use="required" type="{http://www.dmg.org/PMML-4_2}FIELD-NAME" />
* <attribute name="function" use="required">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="count"/>
* <enumeration value="sum"/>
* <enumeration value="average"/>
* <enumeration value="min"/>
* <enumeration value="max"/>
* <enumeration value="multiset"/>
* </restriction>
* </simpleType>
* </attribute>
* <attribute name="groupField" type="{http://www.dmg.org/PMML-4_2}FIELD-NAME" />
* <attribute name="sqlWhere" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"extensions"
})
@XmlRootElement(name = "Aggregate")
public class Aggregate
extends Expression
implements Locatable, HasExtensions
{
@XmlElement(name = "Extension")
protected List extensions;
@XmlAttribute(name = "field", required = true)
@XmlJavaTypeAdapter(FieldNameAdapter.class)
protected FieldName field;
@XmlAttribute(name = "function", required = true)
protected Aggregate.Function function;
@XmlAttribute(name = "groupField")
@XmlJavaTypeAdapter(FieldNameAdapter.class)
protected FieldName groupField;
@XmlAttribute(name = "sqlWhere")
protected String sqlWhere;
@XmlLocation
@XmlTransient
protected Locator locator;
public Aggregate() {
super();
}
public Aggregate(final FieldName field, final Aggregate.Function function) {
super();
this.field = field;
this.function = function;
}
/**
* 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 field property.
*
* @return
* possible object is
* {@link String }
*
*/
public FieldName getField() {
return field;
}
/**
* Sets the value of the field property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setField(FieldName value) {
this.field = value;
}
/**
* Gets the value of the function property.
*
* @return
* possible object is
* {@link Aggregate.Function }
*
*/
public Aggregate.Function getFunction() {
return function;
}
/**
* Sets the value of the function property.
*
* @param value
* allowed object is
* {@link Aggregate.Function }
*
*/
public void setFunction(Aggregate.Function value) {
this.function = value;
}
/**
* Gets the value of the groupField property.
*
* @return
* possible object is
* {@link String }
*
*/
public FieldName getGroupField() {
return groupField;
}
/**
* Sets the value of the groupField property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGroupField(FieldName value) {
this.groupField = value;
}
/**
* Gets the value of the sqlWhere property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSqlWhere() {
return sqlWhere;
}
/**
* Sets the value of the sqlWhere property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSqlWhere(String value) {
this.sqlWhere = value;
}
public Aggregate withExtensions(Extension... values) {
if (values!= null) {
for (Extension value: values) {
getExtensions().add(value);
}
}
return this;
}
public Aggregate withExtensions(Collection values) {
if (values!= null) {
getExtensions().addAll(values);
}
return this;
}
public Aggregate withField(FieldName value) {
setField(value);
return this;
}
public Aggregate withFunction(Aggregate.Function value) {
setFunction(value);
return this;
}
public Aggregate withGroupField(FieldName value) {
setGroupField(value);
return this;
}
public Aggregate withSqlWhere(String value) {
setSqlWhere(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))&&(iJava class for null.
*
* The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="count"/>
* <enumeration value="sum"/>
* <enumeration value="average"/>
* <enumeration value="min"/>
* <enumeration value="max"/>
* <enumeration value="multiset"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "")
@XmlEnum
public enum Function {
@XmlEnumValue("count")
COUNT("count"),
@XmlEnumValue("sum")
SUM("sum"),
@XmlEnumValue("average")
AVERAGE("average"),
@XmlEnumValue("min")
MIN("min"),
@XmlEnumValue("max")
MAX("max"),
@XmlEnumValue("multiset")
MULTISET("multiset");
private final String value;
Function(String v) {
value = v;
}
public String value() {
return value;
}
public static Aggregate.Function fromValue(String v) {
for (Aggregate.Function c: Aggregate.Function.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}
}