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

B12276-01

oracle.dmt.odm
Class ABNModelBuildState

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

public class ABNModelBuildState
extends Enum

The enumeration class ABNModelBuildState is used to specify the AdaptiveBayesNetworkModel build state.

The semantics of the value are as follows:

Since:
9.2.0
See Also:
Serialized Form

Field Summary
static ABNModelBuildState CompleteMultiFeature
           
static ABNModelBuildState CompleteSingleFeature
           
static ABNModelBuildState IncompleteSingleFeature
           
static ABNModelBuildState NaiveBayes
           

 

Method Summary
static ABNModelBuildState getInstance(int id)
          Returns ABNModelBuildState enumeration object corresponding to the specified ID.
static ABNModelBuildState getInstance(java.lang.String name)
          Returns ABNModelBuildState enumeration object corresponding to the specified name.
static ABNModelBuildState[] list()
          Returns the list of all ABNModelBuildState enumerations defined.
static java.lang.String[] listNames()
          Returns the list of names of all ABNModelBuildState enumerations defined.

 

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

NaiveBayes

public static final ABNModelBuildState NaiveBayes

IncompleteSingleFeature

public static final ABNModelBuildState IncompleteSingleFeature

CompleteSingleFeature

public static final ABNModelBuildState CompleteSingleFeature

CompleteMultiFeature

public static final ABNModelBuildState CompleteMultiFeature
Method Detail

listNames

public static java.lang.String[] listNames()
Returns the list of names of all ABNModelBuildState enumerations defined.
Returns:
array of names for the ABNModelBuildState enumeration

list

public static ABNModelBuildState[] list()
Returns the list of all ABNModelBuildState enumerations defined.
Returns:
array of enumeration values for the ABNModelBuildState enumeration

getInstance

public static ABNModelBuildState getInstance(java.lang.String name)
Returns ABNModelBuildState enumeration object corresponding to the specified name.
Parameters:
name - model build state (Naive Bayes, Incomplete Single Feature, Complete Single Feature, Complete Multi Feature)
Returns:
instance of the ABNModelBuildState enumeration object corresponding to the given name, null if there is no enumeration for this name.

getInstance

public static ABNModelBuildState getInstance(int id)
Returns ABNModelBuildState enumeration object corresponding to the specified ID.
Parameters:
id - (0, 1, 2, 3)
Returns:
instance of the ABNModelBuildState enumeration object corresponding to the given id, null if there is no enumeration for id.

Copyright © 2003 Oracle Corporation. All Rights Reserved.