|
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.SQLClause
SQLClause represents a Structured Query Language (SQL)
statement clause. This class is the superclass for all Data Definition Language
(DDL) and Data Manipulation Language (DML) statement
clause classes.
DDLClause - Data Definition Language statement clauses.DMLClause - Data Manipulation Language statement clauses.DDLClause and DMLClause
statement clause classes for the specific SQL statement clauses supported..
SQLClause class is declared abstract and cannot be instantiated.
DDLClause,
DMLClause,
Serialized Form| Field Summary |
| Fields inherited from class com.jdc.lang.Object |
string |
| Constructor Summary | |
SQLClause()
Constructs a new SQLClause object. |
|
| Method Summary | |
protected boolean |
contains()
Returns true if the SQL clause value
contains the SQL clause keyword. |
String |
getKeyword()
Returns the SQL clause keyword. |
String |
getValue()
Returns the SQL clause value. |
void |
setKeyword(String keyword)
Sets the SQL clause keyword. |
void |
setValue(String value)
Sets the SQL clause value. |
String |
toString()
Returns a String representation of this SQLClause object. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
public SQLClause()
SQLClause object.
| Method Detail |
protected boolean contains()
true if the SQL clause value
contains the SQL clause keyword.
True if the clause value contains the clause keyword. False if the clause value does not contain the clause keyword.public String getKeyword()
SQL clause keyword.
SQL clause keyword.public String getValue()
SQL clause value.
SQL clause value.public void setKeyword(String keyword)
SQL clause keyword.
SQLInvalidException - No SQL clause keyword is
specified or the keyword is changed.public void setValue(String value)
SQL clause value.
SQLInvalidException - No SQL clause value is specified.public String toString()
String representation of this SQLClause object.
toString in interface ClausetoString in class ObjectString representation of this SQLClause object.
|
2004.04.29 |
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||