Class BranchConditionImpl

    • Constructor Detail

      • BranchConditionImpl

        public BranchConditionImpl()
        Default Constructor
      • BranchConditionImpl

        public BranchConditionImpl​(java.lang.Object data)
        Constructor.
        Parameters:
        data - TreeMap of attribute/value pairs
    • Method Detail

      • getLeftHand

        public java.lang.String getLeftHand()
        Specified by:
        getLeftHand in interface BranchCondition
        Returns:
        The left-hand side of the conditional expression.
      • setLeftHand

        public void setLeftHand​(java.lang.String str)
        Set the left-hand side of the conditional expression.
        Specified by:
        setLeftHand in interface BranchCondition
        Parameters:
        str - The left-hand side of the conditional expression.
      • getRightHand

        public java.lang.String getRightHand()
        Specified by:
        getRightHand in interface BranchCondition
        Returns:
        The right-hand side of the conditional expression.
      • setRightHand

        public void setRightHand​(java.lang.String str)
        Set the right-hand side of the conditional expression.
        Specified by:
        setRightHand in interface BranchCondition
        Parameters:
        str - The right-hand side of the conditional expression.
      • setCaseSensitive

        public void setCaseSensitive​(boolean cs)
        Set whether the condition (e.g. equality) is case sensitive.
        Specified by:
        setCaseSensitive in interface BranchCondition
        Parameters:
        cs - Whether the condition is case sensitive.
      • getNegate

        public boolean getNegate()
        Specified by:
        getNegate in interface BranchCondition
        Returns:
        Whether the condition is negated.
      • setNegate

        public void setNegate​(boolean negate)
        Set whether the condition is negated.
        Specified by:
        setNegate in interface BranchCondition
        Parameters:
        negate - Whether the condition is negated.
      • getMatchAny

        public boolean getMatchAny()
        Specified by:
        getMatchAny in interface BranchCondition
        Returns:
        The match any flag.
      • setMatchAny

        public void setMatchAny​(boolean matchAny)
        Sets the match any flag.
        Specified by:
        setMatchAny in interface BranchCondition
        Parameters:
        matchAny - The value of the match any flag.