T - the input entity typeFIRST - the type of the first operand, an expressionV - the type of the second operand, a constant valuepublic interface BinaryObjExpression<T,FIRST extends Expression<T>,V> extends Expression<T>
Expression that has two operands, one is another
Expression and the other is a primitive int.
Equality is determined by looking at first(),
second() and operator().
| Modifier and Type | Interface and Description |
|---|---|
static class |
BinaryObjExpression.Operator
Operator types that could be returned by
operator(). |
| Modifier and Type | Method and Description |
|---|---|
FIRST |
first()
Returns the first operand, an inner expression.
|
BinaryObjExpression.Operator |
operator()
Returns the binary operator that this expression represents.
|
V |
second()
Returns the second operand, a constant value.
|
expressionTypeFIRST first()
V second()
BinaryObjExpression.Operator operator()
Copyright © 2019 Speedment, Inc.. All rights reserved.