Method Summary |
|
public void | addCondition(WhereConditionGroup where) Adds the collection of where condition to this collection. |
public void | addCondition(WhereCondition where) Adds a where condition to this collection. |
public void | addCondition(ColumnRef Col1, int i) Adds a where condition from the given parameters using the default
comparison operator. |
public void | addCondition(ColumnRef Col1, String sOperator, int i) Adds a where condition from the given parameters using the specified
comparison operator. |
public void | addCondition(ColumnRef Col1, Object obj) Adds a where condition from the given parameters using the default
comparison operator. |
public void | addCondition(ColumnRef Col1, String sOperator, Object obj) Adds a where condition from the given parameters using the specified
comparison operator. |
public void | addCondition(ColumnRef Col1, List vals) Adds a where condition from the given parameters using the default
comparison operator. |
public void | addCondition(ColumnRef Col1, String sOperator, List vals) Adds a where condition from the given parameters using the specified
comparison operator. |
public void | empty() Removes all conditions from this collection. |
public String | getColumnName(int index) Returns the column name for the column reference of the condition
at the specified index. |
public List | getColumnRefs() Returns the full list of column references contained in this
collection of where conditions. |
public Object | getCondition(int index) Returns the condition, either a WhereCondition or a
WhereConditions , at the specified position in this collection. |
public String | getFullColumnRef(int index) Returns the full string representation of the column reference for
the condition at the specified index. |
public String | getOperator(int index) Returns the comparison operator of the condition at the specified
index. |
public String | getStringingOperator() Returns the stringing operator for this collection of where conditions. |
public List | getTableList() Returns the list of all tables included in this collection of
where conditions. |
public String | getTableName(int index) Returns the table name for the column reference of the condition
at the specified index. |
public List | getValues(int index) Returns the list of conditional values for the condition at the
specified index. |
public boolean | isWhereConditionsLeaf(int index) Returns true if the condition object at the specified position
is a WhereCondition rather than a WhereConditions object. |
public void | setStringingOperator(String sOp) Sets the stringing operator for this collection of where conditions. |
public int | size() Returns the number of conditions in this collection, not including
those conditions contained in WhereConditions which have been
added to this collection as a condition. |