|
Oracle Data Mining Java API Reference 10g Release 1 (10.1) B12276-01 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--oracle.dmt.odm.Enum | +--oracle.dmt.odm.ClusteringStoppingCriterion
The enumeration class ClusteringStoppingCriterion
is used to represent the stopping criteria used by clustering models.
The semantics of the value are as follows:
Field Summary | |
static ClusteringStoppingCriterion |
error Specifies the error stopping criterion. |
static ClusteringStoppingCriterion |
errorAndIterations Specifies the errorAndIterations stopping criterion. |
static ClusteringStoppingCriterion |
iterations Specifies the iterations stopping criterion. |
Method Summary | |
static ClusteringStoppingCriterion |
getInstance(int id) Returns ClusteringStoppingCriterion enumeration object corresponding to the specified ID. |
static ClusteringStoppingCriterion |
getInstance(java.lang.String name) Returns ClusteringStoppingCriterion enumeration object corresponding to the specified name. |
static ClusteringStoppingCriterion[] |
list() Returns the list of all ClusteringStoppingCriterion enumerations defined. |
static java.lang.String[] |
listNames() Returns the list of names of all ClusteringStoppingCriterion enumerations defined. |
Methods inherited from class oracle.dmt.odm.Enum |
getEnum, getID, isEqual |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public static final ClusteringStoppingCriterion iterations
iterations
stopping criterion.public static final ClusteringStoppingCriterion error
error
stopping criterion.public static final ClusteringStoppingCriterion errorAndIterations
errorAndIterations
stopping criterion.Method Detail |
public static java.lang.String[] listNames()
ClusteringStoppingCriterion
enumerations defined.ClusteringStoppingCriterion
enumerationpublic static ClusteringStoppingCriterion[] list()
ClusteringStoppingCriterion
enumerations defined.ClusteringStoppingCriterion
enumerationpublic static ClusteringStoppingCriterion getInstance(java.lang.String name)
ClusteringStoppingCriterion
enumeration object corresponding to the specified name.name
- Clustering stopping criterion name (error
, errorAndIterations
, or iterations
)ClusteringStoppingCriterion
enumeration object corresponding to the given name
, null if there is no enumeration for this name.public static ClusteringStoppingCriterion getInstance(int id)
ClusteringStoppingCriterion
enumeration object corresponding to the specified ID.id
- Clustering stopping criterion IDClusteringStoppingCriterion
enumeration object corresponding to the given id
, null if there is no enumeration for id.
|
| |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |