oracle.dmt.odm.result
Class MiningTestResult

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

public abstract class MiningTestResult
extends MiningResult

An instance of MiningTestResult represents the result of mining test operation. It is the common superclass of test results.

Since:
9.0.1
See Also:
Serialized Form

Method Summary
TypeMethod
static java.lang.String[] listContents(Connection dmsConn)
          Returns an array of mining test result names that are persisted in the schema location.
static java.lang.String[] listContents(Connection dmsConn, java.util.Date start, java.util.Date end)
          Returns an array of mining test result names that are persisted in the schema location for the given start date and end date.
static java.lang.String[] listContents(Connection dmsConn, java.util.Date start, java.util.Date end, java.lang.String modelName)
          Returns an array of mining test result names that are persisted in the schema location for the given model name, start date, and end date.
 
Methods inherited from class oracle.dmt.odm.result.MiningResult
getCompletionTimestamp, getDurationTime, getExecutionDuration, getInputMiningData, getMiningModel, getName, getStartingTimestamp
 
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

listContents

public static java.lang.String[] listContents(Connection dmsConn)
                                       throws java.sql.SQLException
Returns an array of mining test result names that are persisted in the schema location.
Parameters:
dmsConn - Connection instance of the DMS server
Returns:
array of the mining test result names
Throws:
SQLException
- unable to obtain a mining test result record from the DMS server

listContents

public static java.lang.String[] listContents(Connection dmsConn,
                                              java.util.Date start,
                                              java.util.Date end)
                                       throws java.sql.SQLException
Returns an array of mining test result names that are persisted in the schema location for the given start date and end date.
Parameters:
dmsConn - Connection instance of the DMS server
start - starting time
end - completion time
Returns:
array of the mining test result names
Throws:
SQLException
- unable to obtain a mining test result record from the DMS server

listContents

public static java.lang.String[] listContents(Connection dmsConn,
                                              java.util.Date start,
                                              java.util.Date end,
                                              java.lang.String modelName)
                                       throws java.lang.Exception
Returns an array of mining test result names that are persisted in the schema location for the given model name, start date, and end date.
Parameters:
dmsConn - Connection instance of the DMS server
start - starting time
end - completion time
modelName - mining model name
Returns:
array of the mining test result names
Throws:
SQLException
- modelName is null
- modelName length > 64 characters
- unable to obtain a mining test result record from the DMS server