|
2004.04.29 |
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Object
|
+--com.jdc.lang.Object
|
+--com.jdc.rdb.sql.dml.clause.Comparison
Comparison provides a list of enumerated types for
a Where clause comparison operator. Valid Where
clause comparison operators are:
= - Equal. <> - Not equal. < - Less than. > - Greater than. <= - Less than or equal. >= - Greater than or equal.
Where| Field Summary | |
static Comparison |
EQUAL
The Where clause equal comparison operator (=). |
static Comparison |
GREATER_THAN
The Where clause greater than comparison operator (>). |
static Comparison |
GREATER_THAN_OR_EQUAL
The Where clause greater than or equal comparison operator (>=). |
static Comparison |
LESS_THAN
The Where clause less than comparison operator (<). |
static Comparison |
LESS_THAN_OR_EQUAL
The Where clause less than or equal comparison operator (<=). |
static Comparison |
NOT_EQUAL
The Where clause not equal comparison operator (<>). |
| Fields inherited from class com.jdc.lang.Object |
string |
| Method Summary | |
boolean |
equals(Object object)
Compares this Comparison operator object to the specified object. |
String |
toString()
Returns a String representation of this Comparison object. |
static Comparison |
valueOf(String comparisonOperator)
Returns a Comparison operator representation of this String value. |
| Methods inherited from class java.lang.Object |
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
public static final Comparison EQUAL
Where clause equal comparison operator (=).
public static final Comparison NOT_EQUAL
Where clause not equal comparison operator (<>).
public static final Comparison LESS_THAN
Where clause less than comparison operator (<).
public static final Comparison GREATER_THAN
Where clause greater than comparison operator (>).
public static final Comparison LESS_THAN_OR_EQUAL
Where clause less than or equal comparison operator (<=).
public static final Comparison GREATER_THAN_OR_EQUAL
Where clause greater than or equal comparison operator (>=).
| Method Detail |
public boolean equals(Object object)
Comparison operator object to the specified object.
equals in class ObjectTrue if a specified object is equal to this Comparison operator object. False if the specified object is not equal to this Comparison operator object.public String toString()
String representation of this Comparison object.
toString in class ObjectString representation of this Comparison object.public static Comparison valueOf(String comparisonOperator)
Comparison operator representation of this String value.
Comparison operator representation of this String value.
|
2004.04.29 |
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||