|
Oracle Data Mining Java API Reference 10g Release 1 (10.1) B12276-01 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--oracle.dmt.odm.Enum | +--oracle.dmt.odm.MiningTaskState
The enumeration class MiningTaskState
is used to represent the states of a mining task. The semantics of the value are as follows:
Field Summary | |
static MiningTaskState |
error If the task execution fails. |
static MiningTaskState |
executing Task is getting excuted in the DMS. |
static MiningTaskState |
initiated Task is dequeued and initiated to execute in the DMS. |
static MiningTaskState |
queued In this state task is in the queue of the DMS. |
static MiningTaskState |
ready Ready to execute, a task will come to this state only after storing the task in the DMS |
static MiningTaskState |
success If the task execution succeeds. |
static MiningTaskState |
terminated Task is terminated. |
static MiningTaskState |
terminating Task is in the process of terminating. |
Method Summary | |
static MiningTaskState |
getInstance(int id) Returns MiningTaskState enumeration object corresponding to the specified ID. |
static MiningTaskState |
getInstance(java.lang.String name) Returns MiningTaskState enumeration object corresponding to the specified name. |
static MiningTaskState[] |
list() Returns the list of all MiningTaskState enumerations defined. |
static java.lang.String[] |
listNames() Returns the list of names of all MiningTaskState enumerations defined. |
Methods inherited from class oracle.dmt.odm.Enum |
getEnum, getID, isEqual |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public static final MiningTaskState ready
public static final MiningTaskState queued
public static final MiningTaskState initiated
public static final MiningTaskState executing
public static final MiningTaskState terminating
public static final MiningTaskState terminated
public static final MiningTaskState success
public static final MiningTaskState error
Method Detail |
public static java.lang.String[] listNames()
MiningTaskState
enumerations defined.MiningTaskState
enumerationpublic static MiningTaskState[] list()
MiningTaskState
enumerations defined.MiningTaskState
enumerationpublic static MiningTaskState getInstance(java.lang.String name)
MiningTaskState
enumeration object corresponding to the specified name.name
- of the mining taskname
, null if there is no enumeration for this name.public static MiningTaskState getInstance(int id)
MiningTaskState
enumeration object corresponding to the specified ID.id
- of the mining task enumerationMiningTaskState
enumeration object corresponding to the given id
, null if there is no enumeration for id.
|
| |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |