public enum NoiseHandling extends Enum<NoiseHandling>
Enum Constant and Description |
---|
IGNORE_NOISE
Ignore all noise points
|
MERGE_NOISE
Merge all noise into a cluster
|
TREAT_NOISE_AS_SINGLETONS
Consider each noise point a separate cluster
|
Modifier and Type | Method and Description |
---|---|
static NoiseHandling |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NoiseHandling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NoiseHandling MERGE_NOISE
public static final NoiseHandling TREAT_NOISE_AS_SINGLETONS
public static final NoiseHandling IGNORE_NOISE
public static NoiseHandling[] values()
for (NoiseHandling c : NoiseHandling.values()) System.out.println(c);
public static NoiseHandling 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.