public enum COMPAREFUNCTION extends java.lang.Enum<COMPAREFUNCTION>
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>
Enum Constant and Description |
---|
ABS_DIFF |
DELTA |
EQUAL |
GAUSS_SIM |
TABLE |
Modifier and Type | Method and Description |
---|---|
static COMPAREFUNCTION |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static COMPAREFUNCTION |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static COMPAREFUNCTION[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final COMPAREFUNCTION ABS_DIFF
public static final COMPAREFUNCTION DELTA
public static final COMPAREFUNCTION EQUAL
public static final COMPAREFUNCTION GAUSS_SIM
public static final COMPAREFUNCTION TABLE
public static COMPAREFUNCTION[] values()
for (COMPAREFUNCTION c : COMPAREFUNCTION.values()) System.out.println(c);
public static COMPAREFUNCTION valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String value()
public static COMPAREFUNCTION fromValue(java.lang.String v)