Oracle Data Mining Java API Reference
10g Release 1 (10.1)

B12276-01

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, RegressionTestResult

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
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, getMiningModelID, getName, getStartingTimestamp, remove, rename

 

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.
Returns:
array of the mining test result names
Throws:
SQLException
- unable to obtain a mining test result record from the DMS server
java.sql.SQLException

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.
Returns:
array of the mining test result names
Throws:
SQLException
- unable to obtain a mining test result record from the DMS server
java.sql.SQLException

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.
Returns:
array of the mining test result names
Throws:
SQLException
- modelName is null
- modelName length exceeds the limit - unable to obtain a mining test result record from the DMS server
java.lang.Exception

Copyright © 2003 Oracle Corporation. All Rights Reserved.