- java.lang.Object
-
- org.mal_lang.langspec.step.StepExpression
-
- org.mal_lang.langspec.step.StepBinaryOperation
-
- Direct Known Subclasses:
StepCollect,StepDifference,StepIntersection,StepUnion
public abstract class StepBinaryOperation extends StepExpression
Immutable class representing a binary operation step in a MAL language.- Since:
- 1.0.0
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StepExpressiongetLhs()Returns the left-hand side of thisStepBinaryOperationobject.StepExpressiongetRhs()Returns the right-hand side of thisStepBinaryOperationobject.-
Methods inherited from class org.mal_lang.langspec.step.StepExpression
fromBuilder, getSourceAsset, getTargetAsset, toJson
-
-
-
-
Method Detail
-
getLhs
public StepExpression getLhs()
Returns the left-hand side of thisStepBinaryOperationobject.- Returns:
- the left-hand side of this
StepBinaryOperationobject - Since:
- 1.0.0
-
getRhs
public StepExpression getRhs()
Returns the right-hand side of thisStepBinaryOperationobject.- Returns:
- the right-hand side of this
StepBinaryOperationobject - Since:
- 1.0.0
-
-