|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<CompareFunctionType>
org.android.activityminer.pmml.model.CompareFunctionType
public enum CompareFunctionType
The compare function types for fields
Enum Constant Summary | |
---|---|
absDiff
absolute difference: c(x,y) = |x-y| |
|
delta
c(x,y) = 0 if x=y, 1 else |
|
equal
c(x,y) = 1 if x=y, 0 else |
|
gaussSim
gaussian similarity: c(x,y) = exp(-ln(2)*z*z/(s*s)) where z=x-y, and s is the value of attribute similarityScale (required in this case) in the ClusteringField |
|
similarity
similarity measure type |
|
table
c(x,y) = lookup in similarity matrix |
Method Summary | |
---|---|
static CompareFunctionType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static CompareFunctionType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final CompareFunctionType absDiff
public static final CompareFunctionType gaussSim
public static final CompareFunctionType delta
public static final CompareFunctionType equal
public static final CompareFunctionType table
public static final CompareFunctionType similarity
Method Detail |
---|
public static CompareFunctionType[] values()
for (CompareFunctionType c : CompareFunctionType.values()) System.out.println(c);
public static CompareFunctionType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |