|
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.ComparisonFunction
The enumeration class ComparisonFunction
is used to specify the comparison function for the Predicate
interface.
The semantics of the value are as follows:
Field Summary | |
static ComparisonFunction |
equal Specifies the equal comparison function. |
static ComparisonFunction |
ge Specifies the ge comparison function. |
static ComparisonFunction |
greaterThan Specifies the greaterThan comparison function. |
static ComparisonFunction |
in Specifies the in comparison function. |
static ComparisonFunction |
isNotIn Specifies the isNotIn comparison function. |
static ComparisonFunction |
le Specifies the le comparison function. |
static ComparisonFunction |
lessThan Specifies the lessThan comparison function. |
static ComparisonFunction |
notEqual Specifies the notEqual comparison function. |
Method Summary | |
static ComparisonFunction |
getInstance(int id) Returns an instance of ComparisonFunction enumeration that corresponds to the specified identifier. |
static ComparisonFunction |
getInstance(java.lang.String name) Returns ComparisonFunction enumeration object corresponding to the specified name. |
static ComparisonFunction[] |
list() Returns the list of all ComparisonFunction enumerations defined. |
static java.lang.String[] |
listNames() Returns the list of names of all ComparisonFunction 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 ComparisonFunction in
public static final ComparisonFunction equal
public static final ComparisonFunction ge
public static final ComparisonFunction le
public static final ComparisonFunction isNotIn
public static final ComparisonFunction notEqual
public static final ComparisonFunction lessThan
public static final ComparisonFunction greaterThan
Method Detail |
public static java.lang.String[] listNames()
ComparisonFunction
enumerations defined.ComparisonFunction
enumerationpublic static ComparisonFunction[] list()
ComparisonFunction
enumerations defined.ComparisonFunction
enumerationpublic static ComparisonFunction getInstance(java.lang.String name)
ComparisonFunction
enumeration object corresponding to the specified name.name
- The value of the enumeration (one of in, equal, greater_equal and less_equal)ComparisonFunction
enumeration object corresponding to the given name
, null if there is no enumeration for this name.public static ComparisonFunction getInstance(int id)
ComparisonFunction
enumeration that corresponds to the specified identifier.id
- The identifier of the enumeration (one of 0,1,2 and 3)ComparisonFunction
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 |