oracle.dmt.odm
Class MiningTaskType
java.lang.Object
  |
  +--oracle.dmt.odm.Enum
        |
        +--oracle.dmt.odm.MiningTaskType
- All Implemented Interfaces:
 
- java.io.Serializable
 
- public class MiningTaskType
 
- extends Enum
 
The enumeration class MiningTaskType is used to represent the types of a mining task. The semantics of the value are as follows:
- build - mining model build task
 
- test - mining model test task
 
- lift - mining model lift task
 
- crossValidate - mining model cross validate task
 
- apply - mining model apply task
 
- modelImport - mining model import task
 
- modelExport - mining model export task
 
- modelSeeker - model seeker task
 
- internal_ms - model seeker internal task
 
- Since:
 
- ODM 9.2.0
 
- See Also:
 
- Serialized Form
 
 
 
  
 
 
| Method Summary | 
static MiningTaskType | 
getInstance(int id) 
          Returns an instance of MiningTaskType enumeration that corresponds to the specified identifier. | 
static MiningTaskType | 
getInstance(java.lang.String name) 
          Returns an instance of MiningTaskType enumeration that corresponds to the specified name. | 
static MiningTaskType[] | 
list() 
          Returns the list of all MiningTaskType enumerations defined. | 
static java.lang.String[] | 
listNames() 
          Returns the list of names of all MiningTaskType enumerations defined. | 
 
 
| Methods inherited from class java.lang.Object | 
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
 
 
build
public static final MiningTaskType build
 
test
public static final MiningTaskType test
 
lift
public static final MiningTaskType lift
 
crossValidate
public static final MiningTaskType crossValidate
 
apply
public static final MiningTaskType apply
 
modelImport
public static final MiningTaskType modelImport
 
modelExport
public static final MiningTaskType modelExport
 
modelSeeker
public static final MiningTaskType modelSeeker
 
internal_ms
public static final MiningTaskType internal_ms
 
 
listNames
public static java.lang.String[] listNames()
- Returns the list of names of all 
MiningTaskType enumerations defined. 
- 
- Returns:
 
- array of names for the 
MiningTaskType enumeration 
 
 
list
public static MiningTaskType[] list()
- Returns the list of all 
MiningTaskType enumerations defined. 
- 
- Returns:
 
- array of enumeration values for the 
MiningTaskType enumeration 
 
 
getInstance
public static MiningTaskType getInstance(java.lang.String name)
- Returns an instance of 
MiningTaskType enumeration that corresponds to the specified name. 
- 
- Parameters:
 
name - The value of the enumeration (one of associationRules, classification, attributeImportance, modelSeeker and clustering) 
- Returns:
 
- an instance of 
MiningTaskType which contains a value that matches to the specified name. 
 
 
getInstance
public static MiningTaskType getInstance(int id)
- Returns an instance of 
MiningTaskType enumeration that corresponds to the specified identifier. 
- 
- Parameters:
 
id - The identifier of the enumeration (one of 0, 1, 2, 3, 4 and 5) 
- Returns:
 
- an instance of 
MiningTaskType which contains a value that matches to the specified identifier.