javax.datamining.clustering
Class ClusteringApplyContent

java.lang.Object
  |
  +--javax.datamining.Enum
        |
        +--javax.datamining.clustering.ClusteringApplyContent
All Implemented Interfaces:
java.lang.Comparable, java.io.Serializable

public class ClusteringApplyContent
extends Enum

The enumeration ClusteringApplyContent designates the types of generated value to appear in the apply output of a clustering model. The types vary based on the type of the model being applied.

Author:
JSR-73 Java Data Mining Expert Group
See Also:
Serialized Form

Field Summary
static ClusteringApplyContent clusterIdentifier
           
static ClusteringApplyContent distance
           
static ClusteringApplyContent probability
           
static ClusteringApplyContent qualityOfFit
           
 
Method Summary
static void addExtension(java.lang.String name)
          Adds a vendor extension name to ClusteringApplyContent.
static ClusteringApplyContent valueOf(java.lang.String name)
          Returns an instance of ClusteringApplyContent corresponding to the specified name.
static ClusteringApplyContent[] values()
          Returns a list of all ClusteringApplyContent enumerations defined.
 
Methods inherited from class javax.datamining.Enum
compareTo, equals, name
 
Methods inherited from class java.lang.Object
getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

clusterIdentifier

public static final ClusteringApplyContent clusterIdentifier

distance

public static final ClusteringApplyContent distance

probability

public static final ClusteringApplyContent probability

qualityOfFit

public static final ClusteringApplyContent qualityOfFit
Method Detail

addExtension

public static void addExtension(java.lang.String name)
                         throws JDMException
Adds a vendor extension name to ClusteringApplyContent.

Parameters:
name - The name of the unique vendor extension
Throws:
JDMException - When name is an invalid string or redundant to existing standard enums.

valueOf

public static ClusteringApplyContent valueOf(java.lang.String name)
                                      throws JDMException
Returns an instance of ClusteringApplyContent corresponding to the specified name.

Parameters:
name - The name of the enumeration value
Returns:
ClusteringApplyContent - The instance of the specified enumeration.
Throws:
JDMException - When name is not valid.

values

public static ClusteringApplyContent[] values()
Returns a list of all ClusteringApplyContent enumerations defined.

Returns:
ClusteringApplyContent[]