public static enum COP.DistanceDist extends Enum<COP.DistanceDist>
Enum Constant and Description |
---|
CHISQUARED
Use chi^2 for score normalization.
|
GAMMA
Use gamma distributions for score normalization.
|
Modifier and Type | Method and Description |
---|---|
static COP.DistanceDist |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static COP.DistanceDist[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final COP.DistanceDist CHISQUARED
public static final COP.DistanceDist GAMMA
public static COP.DistanceDist[] values()
for (COP.DistanceDist c : COP.DistanceDist.values()) System.out.println(c);
public static COP.DistanceDist 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 nullCopyright © 2015 ELKI Development Team, Lehr- und Forschungseinheit für Datenbanksysteme, Ludwig-Maximilians-Universität München. License information.