|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Condition | |
org.acmsl.queryj |
Uses of Condition in org.acmsl.queryj |
Subclasses of Condition in org.acmsl.queryj | |
class |
AtomicCondition
Represents indivisible conditions in statements. |
protected static class |
ConditionFactory._AtomicConditionWrapper
Envelopes a condition surrounding it with appropiate prefix and suffix. |
protected static class |
ConditionFactory._ConditionWrapper
Envelopes a condition surrounding it with appropiate prefix and suffix. |
protected static class |
ConditionFactory._VariableConditionWrapper
Envelopes a variable condition surrounding it with appropiate prefix and suffix. |
class |
VariableCondition
Represents conditions in SQL statements. |
Methods in org.acmsl.queryj that return Condition | |
Condition |
ConditionFactory.createCondition(Field leftSideField,
ConditionOperator operator,
Field rightSideField)
Creates a condition |
Condition |
ConditionFactory.createCondition(Field leftSideField,
ConditionOperator operator,
int value)
Creates a condition |
Condition |
ConditionFactory.wrap(Condition condition,
java.lang.String prefix,
java.lang.String suffix)
Creates a wrapper condition. |
Condition |
ConditionFactory.wrap(AtomicCondition condition,
java.lang.String prefix,
java.lang.String suffix)
Creates a wrapper condition. |
Condition |
ConditionFactory._ConditionWrapper.getCondition()
Retrieves the wrapped condition. |
Condition |
ConditionFactory._ConditionWrapper.or(Condition condition)
Requests OR evaluation with given condition. |
Condition |
ConditionFactory._ConditionWrapper.and(Condition condition)
Requests AND evaluation with given condition. |
Condition |
IntField.equals(int value)
Retrieves the variable condition to be able to filter for equality. |
Condition |
IntField.notEquals(int value)
Retrieves the variable condition to be able to filter for non-equality. |
Condition |
IntField.greaterThan(int value)
Retrieves the variable condition to be able to filter for lower values. |
Condition |
IntField.lessThan(int value)
Retrieves the variable condition to be able to filter for higher values. |
protected Condition |
Condition.getInnerCondition()
Retrieves the inner condition. |
Condition |
Condition.or(Condition condition)
Requests OR evaluation with given condition. |
Condition |
Condition.and(Condition condition)
Requests AND evaluation with given condition. |
Condition |
Field.isNull()
Retrieves the variable condition to be able to filter for null values. |
Methods in org.acmsl.queryj with parameters of type Condition | |
void |
SelectQuery.where(Condition condition)
Indicates a query condition. |
Condition |
ConditionFactory.wrap(Condition condition,
java.lang.String prefix,
java.lang.String suffix)
Creates a wrapper condition. |
protected void |
ConditionFactory._ConditionWrapper.setCondition(Condition condition)
Specifies the condition to wrap. |
Condition |
ConditionFactory._ConditionWrapper.or(Condition condition)
Requests OR evaluation with given condition. |
Condition |
ConditionFactory._ConditionWrapper.and(Condition condition)
Requests AND evaluation with given condition. |
protected void |
Query.addCondition(Condition condition)
Adds a new condition. |
protected void |
Condition.setInnerCondition(Condition condition)
Specifies a new condition collection. |
Condition |
Condition.or(Condition condition)
Requests OR evaluation with given condition. |
Condition |
Condition.and(Condition condition)
Requests AND evaluation with given condition. |
Constructors in org.acmsl.queryj with parameters of type Condition | |
ConditionFactory._ConditionWrapper(Condition condition,
java.lang.String prefix,
java.lang.String suffix)
Creates a condition wrapper with given information. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |