|
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.BooleanOperator
The enumeration class BooleanOperator
is used to specify the boolean operator that is used in a CompoundPredicate
instance.
Currently, ODM supports only "AND". The semantics of the value are as follows:
Field Summary | |
static BooleanOperator |
and Specifies the AND boolean operator. |
Method Summary | |
static BooleanOperator |
getInstance(int id) Returns BooleanOperator enumeration object corresponding to the specified ID. |
static BooleanOperator |
getInstance(java.lang.String name) Returns BooleanOperator enumeration object corresponding to the specified name. |
static BooleanOperator[] |
list() Returns the list of all BooleanOperator enumerations defined. |
static java.lang.String[] |
listNames() Returns the list of names of all BooleanOperator 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 BooleanOperator and
Method Detail |
public static java.lang.String[] listNames()
BooleanOperator
enumerations defined.BooleanOperator
enumerationpublic static BooleanOperator[] list()
BooleanOperator
enumerations defined.BooleanOperator
enumerationpublic static BooleanOperator getInstance(java.lang.String name)
BooleanOperator
enumeration object corresponding to the specified name.name
- boolean operator name (and)BooleanOperator
enumeration object corresponding to the given name
, null if there is no enumeration for this name.public static BooleanOperator getInstance(int id)
BooleanOperator
enumeration object corresponding to the specified ID.id
- of the boolean operator enumerationBooleanOperator
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 |