javax.datamining
Class MiningFunction
java.lang.Object
|
+--javax.datamining.Enum
|
+--javax.datamining.MiningFunction
- All Implemented Interfaces:
- java.lang.Comparable, java.io.Serializable
- public class MiningFunction
- extends Enum
The enumeration MiningFunction lists
the types of the mining functions supported in
JDM.
- 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 MiningFunction. |
static MiningFunction |
valueOf(java.lang.String name)
Returns an instance of MiningFunction corresponding to the specified name. |
static MiningFunction[] |
values()
Returns a list of all MiningFunction enumerations defined. |
| Methods inherited from class java.lang.Object |
getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
association
public static final MiningFunction association
attributeImportance
public static final MiningFunction attributeImportance
classification
public static final MiningFunction classification
clustering
public static final MiningFunction clustering
regression
public static final MiningFunction regression
addExtension
public static void addExtension(java.lang.String name)
throws JDMException
- Adds a vendor extension
name to MiningFunction.
- 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 MiningFunction valueOf(java.lang.String name)
throws JDMException
- Returns an instance of
MiningFunction corresponding to the specified name.
- Parameters:
name - The name of the enumeration value
- Returns:
MiningFunction - The instance of the specified enumeration.
- Throws:
JDMException - When name is not valid.
values
public static MiningFunction[] values()
- Returns a list of all
MiningFunction enumerations defined.
- Returns:
MiningFunction[]