weka.core.pmml.jaxbbindings.RESULTFEATURE Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weka-dev Show documentation
Show all versions of weka-dev Show documentation
The Waikato Environment for Knowledge Analysis (WEKA), a machine
learning workbench. This version represents the developer version, the
"bleeding edge" of development, you could say. New functionality gets added
to this version.
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs
// See http://java.sun.com/xml/jaxb
// 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;
/**
* Java class for RESULT-FEATURE.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="RESULT-FEATURE">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="predictedValue"/>
* <enumeration value="predictedDisplayValue"/>
* <enumeration value="transformedValue"/>
* <enumeration value="decision"/>
* <enumeration value="probability"/>
* <enumeration value="affinity"/>
* <enumeration value="residual"/>
* <enumeration value="standardError"/>
* <enumeration value="clusterId"/>
* <enumeration value="clusterAffinity"/>
* <enumeration value="entityId"/>
* <enumeration value="entityAffinity"/>
* <enumeration value="warning"/>
* <enumeration value="ruleValue"/>
* <enumeration value="reasonCode"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlEnum
public enum RESULTFEATURE {
@XmlEnumValue("affinity")
AFFINITY("affinity"),
@XmlEnumValue("clusterAffinity")
CLUSTER_AFFINITY("clusterAffinity"),
@XmlEnumValue("clusterId")
CLUSTER_ID("clusterId"),
@XmlEnumValue("decision")
DECISION("decision"),
@XmlEnumValue("entityAffinity")
ENTITY_AFFINITY("entityAffinity"),
@XmlEnumValue("entityId")
ENTITY_ID("entityId"),
@XmlEnumValue("predictedDisplayValue")
PREDICTED_DISPLAY_VALUE("predictedDisplayValue"),
@XmlEnumValue("predictedValue")
PREDICTED_VALUE("predictedValue"),
@XmlEnumValue("probability")
PROBABILITY("probability"),
@XmlEnumValue("reasonCode")
REASON_CODE("reasonCode"),
@XmlEnumValue("residual")
RESIDUAL("residual"),
@XmlEnumValue("ruleValue")
RULE_VALUE("ruleValue"),
@XmlEnumValue("standardError")
STANDARD_ERROR("standardError"),
@XmlEnumValue("transformedValue")
TRANSFORMED_VALUE("transformedValue"),
@XmlEnumValue("warning")
WARNING("warning");
private final String value;
RESULTFEATURE(String v) {
value = v;
}
public String value() {
return value;
}
public static RESULTFEATURE fromValue(String v) {
for (RESULTFEATURE c: RESULTFEATURE.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v.toString());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy