javax.datamining.supervised.regression
Class RegressionCapability

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

public class RegressionCapability
extends Enum

The enumeration RegressionCapability enumerates a list of the capabilities of the regression function being supported in a particular implementation.

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

Field Summary
static RegressionCapability automatedDataPreparation
           
static RegressionCapability logicalAttributeUsage
           
static RegressionCapability logicalData
           
static RegressionCapability outlierTreatment
           
static RegressionCapability supplementaryAttributes
           
static RegressionCapability weightAttribute
           
static RegressionCapability weightedAttributes
           
 
Method Summary
static void addExtension(java.lang.String name)
          Adds a vendor extension name to RegressionCapability.
static RegressionCapability valueOf(java.lang.String name)
          Returns an instance of RegressionCapability corresponding to the specified name.
static RegressionCapability[] values()
          Returns a list of all RegressionCapability 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

automatedDataPreparation

public static final RegressionCapability automatedDataPreparation

logicalAttributeUsage

public static final RegressionCapability logicalAttributeUsage

logicalData

public static final RegressionCapability logicalData

outlierTreatment

public static final RegressionCapability outlierTreatment

supplementaryAttributes

public static final RegressionCapability supplementaryAttributes

weightAttribute

public static final RegressionCapability weightAttribute

weightedAttributes

public static final RegressionCapability weightedAttributes
Method Detail

addExtension

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

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

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

values

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

Returns:
RegressionCapability[]