Class Condition


  • public class Condition
    extends java.lang.Object
    This class represents the condition which should be fulfilled to execute the IfThenElse then functions. If the condition is not fulfilled IfThenElse else will be executed.
    • Constructor Detail

      • Condition

        public Condition()
      • Condition

        public Condition​(java.lang.String combinedWith,
                         java.util.List<ACondition> conditions)
        Constructor for Condition
        Parameters:
        combinedWith - Combination of the different conditions (AND or OR)
        conditions - List of conditions
    • Method Detail

      • getCombinedWith

        public java.lang.String getCombinedWith()
        Getter and Setter
      • setCombinedWith

        public void setCombinedWith​(java.lang.String combinedWith)
      • getConditions

        public java.util.List<ACondition> getConditions()
      • setConditions

        public void setConditions​(java.util.List<ACondition> conditions)
      • getAdditionalProperties

        public java.util.Map<java.lang.String,​java.lang.Object> getAdditionalProperties()
      • setAdditionalProperty

        public void setAdditionalProperty​(java.lang.String name,
                                          java.lang.Object value)