public interface ISqlJetBinaryExpression extends ISqlJetExpression
Binary expression.
Binary expression is compound expression which consists from two expressions
combined by one operation ISqlJetBinaryExpression.Operation.
Format:
<leftExpression> <operation> <rightExpression>
| Modifier and Type | Interface and Description |
|---|---|
static class |
ISqlJetBinaryExpression.Operation
Operation which combine expressions in binary expression
ISqlJetBinaryExpression. |
| Modifier and Type | Method and Description |
|---|---|
ISqlJetExpression |
getLeftExpression()
Left expression.
|
ISqlJetBinaryExpression.Operation |
getOperation()
Operation.
|
ISqlJetExpression |
getRightExpression()
Right expression.
|
getValueISqlJetBinaryExpression.Operation getOperation()
ISqlJetExpression getLeftExpression()
ISqlJetExpression getRightExpression()