org.apache.commons.math3.stat.clustering
private static enum DBSCANClusterer.PointStatus extends Enum<DBSCANClusterer.PointStatus>
Enum Constant and Description |
---|
NOISE
The point has is considered to be noise.
|
PART_OF_CLUSTER
The point is already part of a cluster.
|
Modifier and Type | Method and Description |
---|---|
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.
|
public static final DBSCANClusterer.PointStatus NOISE
public static final DBSCANClusterer.PointStatus PART_OF_CLUSTER
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 nameNullPointerException
- if the argument is nullCopyright (c) 2003-2013 Apache Software Foundation