Class StoExHelper
- java.lang.Object
-
- org.palladiosimulator.analyzer.quality.util.StoExHelper
-
public class StoExHelper extends Object
Class with helper function for StoEx processing.
-
-
Constructor Summary
Constructors Constructor Description StoExHelper()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static String
stoExMax(String leftSpecification, String rightSpecification)
StoEx for the mathematical function max(leftSpecification,rightSpecification).static String
stoExMin(String leftSpecification, String rightSpecification)
StoEx for the mathematical function min(leftSpecification,rightSpecification).static String
stoExMinus(String leftSpecification, String rightSpecification)
StoEx for the mathematical function (leftSpecification - rightSpecification).static String
stoExMul(String leftSpecification, String rightSpecification)
StoEx for the mathematical function (leftSpecification * rightSpecification).static String
stoExPlus(String leftSpecification, String rightSpecification)
StoEx for the mathematical function (leftSpecification + rightSpecification).
-
-
-
Method Detail
-
stoExMax
public static String stoExMax(String leftSpecification, String rightSpecification)
StoEx for the mathematical function max(leftSpecification,rightSpecification).- Parameters:
leftSpecification
- Left specification.rightSpecification
- Right specification.- Returns:
- StoEx specification for the function.
-
stoExMin
public static String stoExMin(String leftSpecification, String rightSpecification)
StoEx for the mathematical function min(leftSpecification,rightSpecification).- Parameters:
leftSpecification
- Left specification.rightSpecification
- Right specification.- Returns:
- StoEx specification for the function.
-
stoExMinus
public static String stoExMinus(String leftSpecification, String rightSpecification)
StoEx for the mathematical function (leftSpecification - rightSpecification).- Parameters:
leftSpecification
- Left specification.rightSpecification
- Right specification.- Returns:
- StoEx specification for the function.
-
stoExPlus
public static String stoExPlus(String leftSpecification, String rightSpecification)
StoEx for the mathematical function (leftSpecification + rightSpecification).- Parameters:
leftSpecification
- Left specification.rightSpecification
- Right specification.- Returns:
- StoEx specification for the function.
-
stoExMul
public static String stoExMul(String leftSpecification, String rightSpecification)
StoEx for the mathematical function (leftSpecification * rightSpecification).- Parameters:
leftSpecification
- Left specification.rightSpecification
- Right specification.- Returns:
- StoEx specification for the function.
-
-