Package io.aether.common.expressions
Class BinOperator
- java.lang.Object
-
- io.aether.common.expressions.Expression
-
- io.aether.common.expressions.BinOperator
-
-
Field Summary
Fields Modifier and Type Field Description protected Expressionleftprotected Expressionright-
Fields inherited from class io.aether.common.expressions.Expression
calculate, ctx, NUMBER_TYPES, type, typeRaw
-
-
Constructor Summary
Constructors Constructor Description BinOperator()BinOperator(Expression left, Expression right)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ExpressiongetLeft()ExpressiongetRight()voidsetLeft(Expression left)voidsetRight(Expression right)-
Methods inherited from class io.aether.common.expressions.Expression
getCtx, prepareForContext, prepareForContext0
-
-
-
-
Field Detail
-
left
protected Expression left
-
right
protected Expression right
-
-
Constructor Detail
-
BinOperator
public BinOperator()
-
BinOperator
public BinOperator(Expression left, Expression right)
-
-
Method Detail
-
getLeft
public Expression getLeft()
-
setLeft
public void setLeft(Expression left)
-
getRight
public Expression getRight()
-
setRight
public void setRight(Expression right)
-
-