|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Condition | |
|---|---|
| org.castor.cpa.persistence.sql.query | |
| org.castor.cpa.persistence.sql.query.condition | |
| Uses of Condition in org.castor.cpa.persistence.sql.query |
|---|
| Methods in org.castor.cpa.persistence.sql.query that return Condition | |
|---|---|
Condition |
Update.getCondition()
Get condition that specifies which records to update. |
Condition |
Select.getCondition()
Get condition that specifies which records to select. |
Condition |
Delete.getCondition()
Get condition that specifies which records to delete. |
| Methods in org.castor.cpa.persistence.sql.query with parameters of type Condition | |
|---|---|
void |
Update.setCondition(Condition condition)
Set condition that specifies which records to update. |
void |
Select.setCondition(Condition condition)
Set condition that specifies which records to select. |
void |
Delete.setCondition(Condition condition)
Set condition that specifies which records to delete. |
| Uses of Condition in org.castor.cpa.persistence.sql.query.condition |
|---|
| Subclasses of Condition in org.castor.cpa.persistence.sql.query.condition | |
|---|---|
class |
AndCondition
Represents a list of conditions that are concatenated by an AND operator. |
class |
Compare
Compare 2 conditions with an operator. |
class |
CompoundCondition
Compound condition is the abstract base class for AndCondition and OrCondition. |
class |
IsNullPredicate
Predicate that checks expressions for being null or not null. |
class |
OrCondition
Represents a list of conditions that are concatenated by an OR operator. |
class |
Predicate
Abstract base class for all predicates. |
| Methods in org.castor.cpa.persistence.sql.query.condition that return Condition | |
|---|---|
Condition |
Condition.and(Condition condition)
Builder method to concatenate the given condition with all others that have previously been added with an AND operator. |
Condition |
AndCondition.and(Condition condition)
|
Condition |
Predicate.not()
|
Condition |
OrCondition.not()
|
abstract Condition |
Condition.not()
Builder method to invert a condition. |
Condition |
Compare.not()
|
Condition |
AndCondition.not()
|
Condition |
OrCondition.or(Condition condition)
|
Condition |
Condition.or(Condition condition)
Builder method to concatenate the given condition with all others that have previously been added with an OR operator. |
| Methods in org.castor.cpa.persistence.sql.query.condition that return types with arguments of type Condition | |
|---|---|
Iterator<Condition> |
CompoundCondition.iterator()
Returns an iterator over the elements in this list in proper sequence. |
| Methods in org.castor.cpa.persistence.sql.query.condition with parameters of type Condition | |
|---|---|
Condition |
Condition.and(Condition condition)
Builder method to concatenate the given condition with all others that have previously been added with an AND operator. |
Condition |
AndCondition.and(Condition condition)
|
protected void |
OrCondition.append(Condition condition)
|
protected void |
CompoundCondition.append(Condition condition)
Appends the specified condition to end of this list of conditions. |
protected void |
AndCondition.append(Condition condition)
|
protected void |
CompoundCondition.insert(Condition condition)
Inserts the specified condition at begin of this list of conditions. |
Condition |
OrCondition.or(Condition condition)
|
Condition |
Condition.or(Condition condition)
Builder method to concatenate the given condition with all others that have previously been added with an OR operator. |
| Constructors in org.castor.cpa.persistence.sql.query.condition with parameters of type Condition | |
|---|---|
AndCondition(Condition condition1,
Condition condition2)
Constructor for a compound condition that concatenates the 2 given conditions with an AND operator. |
|
OrCondition(Condition condition1,
Condition condition2)
Constructor for a compound condition that concatenates the 2 given conditions with an OR operator. |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||