oracle.dmt.odm.result
Class MiningResult

java.lang.Object
  |
  +--oracle.dmt.odm.MiningObject
        |
        +--oracle.dmt.odm.LocatableObject
              |
              +--oracle.dmt.odm.result.MiningResult
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
MiningApplyResult, MiningBuildResult, MiningLiftResult, MiningTestResult, ModelSeekerResultEntry

public abstract class MiningResult
extends LocatableObject

The abstract class MiningResult is a common superclass for ODM result objects of mining operations (build, apply, test and compute lift). Since a mining result is a direct consequence of a mining operation, an instance of MiningResult cannot be created by a user.

Since:
9.0.1
See Also:
Serialized Form

Method Summary
TypeMethod
 java.util.Date getCompletionTimestamp()
          Returns the completion time of the mining operation that created this mining result.
 long getDurationTime()
          Deprecated. As of 9.2.0, replaced by getExecutionDuration method.
 long getExecutionDuration()
          Returns the duration of which the mining operation executed to create this mining result.
 Location getInputMiningData()
          Returns the location of the mining data from which this mining result was generated.
 java.lang.String getMiningModel()
          Returns the name of the mining model by which this mining result was generated.
 java.lang.String getName()
          Returns the name of the mining result.
 java.util.Date getStartingTimestamp()
          Returns the starting time of the mining operation that created this mining result.
 
Methods inherited from class oracle.dmt.odm.LocatableObject
deserialize, serialize
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getName

public java.lang.String getName()
Returns the name of the mining result.
Returns:
String - The result name

getStartingTimestamp

public java.util.Date getStartingTimestamp()
Returns the starting time of the mining operation that created this mining result.
Returns:
java.util.Date - The starting time

getCompletionTimestamp

public java.util.Date getCompletionTimestamp()
Returns the completion time of the mining operation that created this mining result.
Returns:
java.util.Date - The completion time

getDurationTime

public long getDurationTime()
                     throws java.lang.Exception
Deprecated. As of 9.2.0, replaced by getExecutionDuration method.

Returns the duration of which the mining operation executed to create this mining result.
Returns:
long - The execution duration in milliseconds

getExecutionDuration

public long getExecutionDuration()
Returns the duration of which the mining operation executed to create this mining result.
Returns:
long - The execution duration in milliseconds

getInputMiningData

public Location getInputMiningData()
Returns the location of the mining data from which this mining result was generated.
Returns:
Location - The location the mining data

getMiningModel

public java.lang.String getMiningModel()
Returns the name of the mining model by which this mining result was generated.
Returns:
String - The model name