javax.datamining.supervised.regression
Class RegressionApplyContent
java.lang.Object
|
+--javax.datamining.Enum
|
+--javax.datamining.supervised.regression.RegressionApplyContent
- All Implemented Interfaces:
- java.lang.Comparable, java.io.Serializable
- public class RegressionApplyContent
- extends Enum
The enumeration
RegressionApplyContent designates the
types of generated value to appear in the apply
output of a regression 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
|
Method Summary |
static void |
addExtension(java.lang.String name)
Adds a vendor extension name to RegressionApplyContent. |
static RegressionApplyContent |
valueOf(java.lang.String name)
Returns an instance of RegressionApplyContent corresponding to the specified name. |
static RegressionApplyContent[] |
values()
Returns a list of all RegressionApplyContent enumerations defined. |
| Methods inherited from class java.lang.Object |
getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
confidence
public static final RegressionApplyContent confidence
predictedValue
public static final RegressionApplyContent predictedValue
addExtension
public static void addExtension(java.lang.String name)
throws JDMException
- Adds a vendor extension
name to RegressionApplyContent.
- 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 RegressionApplyContent valueOf(java.lang.String name)
throws JDMException
- Returns an instance of
RegressionApplyContent corresponding to the specified name.
- Parameters:
name - The name of the enumeration value
- Returns:
RegressionApplyContent - The instance of the specified enumeration.
- Throws:
JDMException - When name is not valid.
values
public static RegressionApplyContent[] values()
- Returns a list of all
RegressionApplyContent enumerations defined.
- Returns:
RegressionApplyContent[]