Package org.tmatesoft.sqljet.core.schema
Interface ISqlJetBinaryExpression
- All Superinterfaces:
ISqlJetExpression
- All Known Implementing Classes:
SqlJetBinaryExpression
Binary expression.
Binary expression is compound expression which consists from two expressions
combined by one operation ISqlJetBinaryExpression.Operation
.
Format:
<leftExpression> <operation> <rightExpression>
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic enum
Operation which combine expressions in binary expressionISqlJetBinaryExpression
. -
Method Summary
Modifier and TypeMethodDescriptionLeft expression.Operation.Right expression.Methods inherited from interface org.tmatesoft.sqljet.core.schema.ISqlJetExpression
getValue
-
Method Details
-
getOperation
ISqlJetBinaryExpression.Operation getOperation()Operation.- Returns:
- operation
-
getLeftExpression
ISqlJetExpression getLeftExpression()Left expression.- Returns:
- left expression
-
getRightExpression
ISqlJetExpression getRightExpression()Right expression.- Returns:
- right expression
-