Class SOperationImpl
- java.lang.Object
-
- org.bonitasoft.engine.core.operation.model.impl.SOperationImpl
-
- All Implemented Interfaces:
java.io.Serializable,SOperation
public class SOperationImpl extends java.lang.Object implements SOperation
- Author:
- Elias Ricken de Medeiros, Baptiste Mesta
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SOperationImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)SLeftOperandgetLeftOperand()java.lang.StringgetOperator()SExpressiongetRightOperand()SOperatorTypegetType()inthashCode()voidsetLeftOperand(SLeftOperand leftOperand)voidsetOperator(java.lang.String operator)voidsetRightOperand(SExpression rightOperand)voidsetType(SOperatorType type)java.lang.StringtoString()
-
-
-
Method Detail
-
setLeftOperand
public void setLeftOperand(SLeftOperand leftOperand)
-
setOperator
public void setOperator(java.lang.String operator)
-
setType
public void setType(SOperatorType type)
-
setRightOperand
public void setRightOperand(SExpression rightOperand)
-
getLeftOperand
public SLeftOperand getLeftOperand()
- Specified by:
getLeftOperandin interfaceSOperation
-
getType
public SOperatorType getType()
- Specified by:
getTypein interfaceSOperation
-
getOperator
public java.lang.String getOperator()
- Specified by:
getOperatorin interfaceSOperation
-
getRightOperand
public SExpression getRightOperand()
- Specified by:
getRightOperandin interfaceSOperation
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-