oracle.dmt.odm
Class MiningFunction

java.lang.Object
  |
  +--oracle.dmt.odm.Enum
        |
        +--oracle.dmt.odm.MiningFunction
All Implemented Interfaces:
java.io.Serializable

public class MiningFunction
extends Enum

The enumeration class MiningFunction specifies the type of mining function to be used to build a mining model.

See Also:
MiningAlgorithmsSettings, Serialized Form

Field Summary
TypeField
static MiningFunction associationRules
          Specifies the Association Rules mining function.
static MiningFunction attributeImportance
          Specifies the Attribute Importance function.
static MiningFunction classification
          Specifies the Classification mining function.
static MiningFunction clustering
          Specifies the Clustering mining function.
 
Method Summary
TypeMethod
static MiningFunction getInstance(int id)
          Returns an instance of MiningFunction enumeration that corresponds to the specified identifier.
static MiningFunction getInstance(java.lang.String name)
          Returns an instance of MiningFunction enumeration that corresponds to the specified name.
static MiningFunction[] list()
          Returns a list of all instances of MiningFunction enumerations.
static java.lang.String[] listNames()
          Returns a list of the values available in enumeration MiningFunction.
 
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

associationRules

public static final MiningFunction associationRules
Specifies the Association Rules mining function.

classification

public static final MiningFunction classification
Specifies the Classification mining function.

attributeImportance

public static final MiningFunction attributeImportance
Specifies the Attribute Importance function.

clustering

public static final MiningFunction clustering
Specifies the Clustering mining function.
Method Detail

listNames

public static java.lang.String[] listNames()
Returns a list of the values available in enumeration MiningFunction.
Returns:
String[] - The values of the enumeration

list

public static MiningFunction[] list()
Returns a list of all instances of MiningFunction enumerations.
Returns:
MiningFunction[] - The instances of MiningFunction

getInstance

public static MiningFunction getInstance(java.lang.String name)
Returns an instance of MiningFunction enumeration that corresponds to the specified name.
Parameters:
name - The value of the enumeration (one of associationRules, classification, attributeImportance, modelSeeker and clustering)
Returns:
MiningFunction - An instance of MiningFunction which contains a value that matches to the specified name.

getInstance

public static MiningFunction getInstance(int id)
Returns an instance of MiningFunction enumeration that corresponds to the specified identifier.
Parameters:
id - The identifier of the enumeration (one of 0, 1, 2, 3, 4 and 5)
Returns:
MiningFunction - An instance of MiningFunction which contains a value that matches to the specified identifier.