| |
|
| java.lang.Object org.jpox.store.expression.ScalarExpression org.jpox.store.expression.BooleanExpression
All known Subclasses: org.jpox.store.expression.NullComparisonExpression, org.jpox.store.expression.BooleanCharColumnExpression, org.jpox.store.expression.SubqueryExpression, org.jpox.store.expression.BooleanLiteral, org.jpox.store.expression.BooleanBitColumnExpression, org.jpox.store.expression.LikeExpression, org.jpox.store.expression.InExpression, org.jpox.store.expression.ExistsExpression,
BooleanExpression | public class BooleanExpression extends ScalarExpression (Code) | | Representation of a Boolean expression in a Query.
version: $Revision: 1.12 $ |
BooleanExpression | protected BooleanExpression(QueryExpression qs)(Code) | | Constructor
Parameters: qs - the QueryExpression |
BooleanExpression | public BooleanExpression(QueryExpression qs, JavaTypeMapping mapping, LogicSetExpression te)(Code) | | Parameters: qs - the QueryExpression Parameters: mapping - the mapping associated to this expression Parameters: te - the TableExpression where this expression refers to |
BooleanExpression | public BooleanExpression(MonadicOperator op, ScalarExpression operand)(Code) | | Perform a boolean operator op on a operand operand
Parameters: op - the operator Parameters: operand - the operand |
BooleanExpression | public BooleanExpression(ScalarExpression operand1, DyadicOperator op, ScalarExpression operand2)(Code) | | Perform a boolean operator op between two operands operand1 and operand2
Parameters: op - the operator Parameters: operand1 - the operand Parameters: operand2 - the operand |
|
|
|