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