- 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 StepExpression
getLhs()
Returns the left-hand side of thisStepBinaryOperation
object.StepExpression
getRhs()
Returns the right-hand side of thisStepBinaryOperation
object.-
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 thisStepBinaryOperation
object.- Returns:
- the left-hand side of this
StepBinaryOperation
object - Since:
- 1.0.0
-
getRhs
public StepExpression getRhs()
Returns the right-hand side of thisStepBinaryOperation
object.- Returns:
- the right-hand side of this
StepBinaryOperation
object - Since:
- 1.0.0
-
-