Class StoExHelper


  • public class StoExHelper
    extends Object
    Class with helper function for StoEx processing.
    • Constructor Detail

      • StoExHelper

        public StoExHelper()
    • 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.