|
Oracle Data Mining Java API Reference 10g Release 1 (10.1) B12276-01 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--oracle.dmt.odm.Enum | +--oracle.dmt.odm.AttributeUsage
The enumeration class AttributeUsage
is used to specify how an attribute is used for a mining operation.
For supervised mining, the values active, predictor, target, inactive and supplemetal are used. For unsupervised mining, the values active, inactive and supplemental are used.
The semantics of the value are as follows:
Field Summary | |
static AttributeUsage |
active |
static AttributeUsage |
inactive |
static AttributeUsage |
predictor |
static AttributeUsage |
supplementary |
static AttributeUsage |
target |
Method Summary | |
static AttributeUsage |
getInstance(int id) Returns AttributeUsage enumeration object corresponding to the specified ID. |
static AttributeUsage |
getInstance(java.lang.String name) Returns AttributeUsage enumeration object corresponding to the specified name. |
static AttributeUsage[] |
list() Returns the list of all AttributeUsage enumerations defined. |
static java.lang.String[] |
listNames() Returns the list of names of all AttributeUsage 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 |
public static final AttributeUsage active
public static final AttributeUsage inactive
public static final AttributeUsage supplementary
public static final AttributeUsage target
public static final AttributeUsage predictor
Method Detail |
public static java.lang.String[] listNames()
AttributeUsage
enumerations defined.AttributeUsage
enumerationpublic static AttributeUsage[] list()
AttributeUsage
enumerations defined.AttributeUsage
enumerationpublic static AttributeUsage getInstance(java.lang.String name)
AttributeUsage
enumeration object corresponding to the specified name.name
- name of the attribute usage enumerationAttributeUsage
enumeration object corresponding to the given name
, null if there is no enumeration for this name.public static AttributeUsage getInstance(int id)
AttributeUsage
enumeration object corresponding to the specified ID.id
- of the attribute usage enumerationAttributeUsage
enumeration object corresponding to the given id
, null if there is no enumeration for id.
|
| |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |