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 java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
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