| |
|
| java.lang.Object org.apache.ojb.jdo.jdoql.QueryTreeNode org.apache.ojb.jdo.jdoql.Expression org.apache.ojb.jdo.jdoql.BinaryExpression
OPERATOR_AND | final public static int OPERATOR_AND(Code) | | |
OPERATOR_BITWISE_AND | final public static int OPERATOR_BITWISE_AND(Code) | | |
OPERATOR_BITWISE_OR | final public static int OPERATOR_BITWISE_OR(Code) | | |
OPERATOR_BITWISE_XOR | final public static int OPERATOR_BITWISE_XOR(Code) | | |
OPERATOR_DIVIDE | final public static int OPERATOR_DIVIDE(Code) | | |
OPERATOR_EQUAL | final public static int OPERATOR_EQUAL(Code) | | |
OPERATOR_GREATER | final public static int OPERATOR_GREATER(Code) | | |
OPERATOR_GREATER_OR_EQUAL | final public static int OPERATOR_GREATER_OR_EQUAL(Code) | | |
OPERATOR_LOWER | final public static int OPERATOR_LOWER(Code) | | |
OPERATOR_LOWER_OR_EQUAL | final public static int OPERATOR_LOWER_OR_EQUAL(Code) | | |
OPERATOR_MINUS | final public static int OPERATOR_MINUS(Code) | | |
OPERATOR_MULTIPLY | final public static int OPERATOR_MULTIPLY(Code) | | |
OPERATOR_NOT_EQUAL | final public static int OPERATOR_NOT_EQUAL(Code) | | |
OPERATOR_OR | final public static int OPERATOR_OR(Code) | | |
OPERATOR_PLUS | final public static int OPERATOR_PLUS(Code) | | |
BinaryExpression | public BinaryExpression(Expression left, int operator, Expression right)(Code) | | Creates a new binary expression object.
Parameters: left - The left side of the expression Parameters: operator - The binary operator Parameters: right - The right side of the expression |
getLeftSide | public Expression getLeftSide()(Code) | | Returns the left side expression.
The left expression |
getOperator | public int getOperator()(Code) | | Returns the operator.
The operator |
getRightSide | public Expression getRightSide()(Code) | | Returns the right side expression.
The right expression |
setType | public void setType(Class type)(Code) | | Sets the type of this binary expression.
Parameters: type - The type |
|
|
|