All Downloads are FREE. Search and download functionalities are using the official Maven repository.

weka.core.pmml.jaxbbindings.COMPAREFUNCTION Maven / Gradle / Ivy

//
// 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 COMPARE-FUNCTION. * *

The following schema fragment specifies the expected content contained within this class. *

*

 * <simpleType name="COMPARE-FUNCTION">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="absDiff"/>
 *     <enumeration value="gaussSim"/>
 *     <enumeration value="delta"/>
 *     <enumeration value="equal"/>
 *     <enumeration value="table"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlEnum public enum COMPAREFUNCTION { @XmlEnumValue("absDiff") ABS_DIFF("absDiff"), @XmlEnumValue("delta") DELTA("delta"), @XmlEnumValue("equal") EQUAL("equal"), @XmlEnumValue("gaussSim") GAUSS_SIM("gaussSim"), @XmlEnumValue("table") TABLE("table"); private final String value; COMPAREFUNCTION(String v) { value = v; } public String value() { return value; } public static COMPAREFUNCTION fromValue(String v) { for (COMPAREFUNCTION c: COMPAREFUNCTION.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v.toString()); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy