T - the input entity typeFIRST - the type of the first operand, an expressionSECOND - the type of the second operand, an expressionpublic interface BinaryExpression<T,FIRST extends Expression<T>,SECOND extends Expression<T>> extends Expression<T>
Expression that has two operands, both are implementations of
Expression.
Equality is determined by looking at first(),
second() and operator().
| Modifier and Type | Interface and Description |
|---|---|
static class |
BinaryExpression.Operator
Operator types that could be returned by
operator(). |
| Modifier and Type | Method and Description |
|---|---|
FIRST |
first()
Returns the first operand, an inner expression.
|
BinaryExpression.Operator |
operator()
Returns the binary operator that this expression represents.
|
SECOND |
second()
Returns the second operand, an inner expression.
|
expressionTypeFIRST first()
SECOND second()
BinaryExpression.Operator operator()
Copyright © 2019 Speedment, Inc.. All rights reserved.