|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<DBSCANClusterer.PointStatus>
org.apache.commons.math3.ml.clustering.DBSCANClusterer.PointStatus
private static enum DBSCANClusterer.PointStatus
Status of a point during the clustering process.
Enum Constant Summary | |
---|---|
NOISE
The point has is considered to be noise. |
|
PART_OF_CLUSTER
The point is already part of a cluster. |
Method Summary | |
---|---|
static DBSCANClusterer.PointStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static DBSCANClusterer.PointStatus[] |
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 DBSCANClusterer.PointStatus NOISE
public static final DBSCANClusterer.PointStatus PART_OF_CLUSTER
Method Detail |
---|
public static DBSCANClusterer.PointStatus[] values()
for (DBSCANClusterer.PointStatus c : DBSCANClusterer.PointStatus.values()) System.out.println(c);
public static DBSCANClusterer.PointStatus 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 |