public enum NoiseHandling extends java.lang.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(java.lang.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(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 nullCopyright © 2019 ELKI Development Team. License information.