public abstract class BinaryLogicalExpression extends Object implements LogicalExpression
LogicalExpression implementations with two operands.
A BinaryLogicalExpression has two operands, left and
right (both Expressions). Both operands are evaluated,
their results combined using the operator the concrete expression
implements and then returned.
| Modifier and Type | Field and Description |
|---|---|
Expression |
left |
Expression |
right |
| Constructor and Description |
|---|
BinaryLogicalExpression(Expression left,
Expression right) |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitevalpublic final Expression left
public final Expression right
public BinaryLogicalExpression(Expression left, Expression right)
Copyright © 2017. All rights reserved.