public static enum OPTICS.ExtractionMethod extends Enum<OPTICS.ExtractionMethod>
Enum Constant and Description |
---|
THRESHHOLD
Forms clusters in the reachability plot by drawing a line across it,
and using the separations to mark clusters
|
THRESHHOLD_FIXUP
Forms clusters in the reachability plot by drawing a line across it,
and using the separations to mark clusters.
|
XI_STEEP_ORIGINAL
Uses the original clustering method proposed in the OPTICS paper.
NOTE: Implementation not yet complete |
Modifier and Type | Method and Description |
---|---|
static OPTICS.ExtractionMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OPTICS.ExtractionMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OPTICS.ExtractionMethod XI_STEEP_ORIGINAL
public static final OPTICS.ExtractionMethod THRESHHOLD
public static final OPTICS.ExtractionMethod THRESHHOLD_FIXUP
public static OPTICS.ExtractionMethod[] values()
for (OPTICS.ExtractionMethod c : OPTICS.ExtractionMethod.values()) System.out.println(c);
public static OPTICS.ExtractionMethod 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 © 2017. All rights reserved.