javax.datamining.supervised.classification
Class ClassificationApplyContent

java.lang.Object
  |
  +--javax.datamining.Enum
        |
        +--javax.datamining.supervised.classification.ClassificationApplyContent
All Implemented Interfaces:
java.lang.Comparable, java.io.Serializable

public class ClassificationApplyContent
extends Enum

The enumeration ClassificationApplyContent designates the types of generated value to appear in the apply output of a classification 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 ClassificationApplyContent cost
           
static ClassificationApplyContent nodeId
           
static ClassificationApplyContent predictedCategory
           
static ClassificationApplyContent probability
           
 
Method Summary
static void addExtension(java.lang.String name)
          Adds a vendor extension name to ClassificationApplyContent.
static ClassificationApplyContent valueOf(java.lang.String name)
          Returns an instance of ClassificationApplyContent corresponding to the specified name.
static ClassificationApplyContent[] values()
          Returns a list of all ClassificationApplyContent 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

cost

public static final ClassificationApplyContent cost

nodeId

public static final ClassificationApplyContent nodeId

predictedCategory

public static final ClassificationApplyContent predictedCategory

probability

public static final ClassificationApplyContent probability
Method Detail

addExtension

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

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 ClassificationApplyContent valueOf(java.lang.String name)
                                          throws JDMException
Returns an instance of ClassificationApplyContent corresponding to the specified name.

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

values

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

Returns:
ClassificationApplyContent[]