public enum COMPAREFUNCTION extends 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(String v) |
String |
value() |
static COMPAREFUNCTION |
valueOf(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 GAUSS_SIM
public static final COMPAREFUNCTION DELTA
public static final COMPAREFUNCTION EQUAL
public static final COMPAREFUNCTION TABLE
public static COMPAREFUNCTION[] values()
for (COMPAREFUNCTION c : COMPAREFUNCTION.values()) System.out.println(c);
public static COMPAREFUNCTION valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String value()
public static COMPAREFUNCTION fromValue(String v)
Copyright © 2001–2017 JBoss by Red Hat. All rights reserved.