Package afcl.functions.objects
Class Condition
- java.lang.Object
-
- afcl.functions.objects.Condition
-
public class Condition extends java.lang.Object
This class represents the condition which should be fulfilled to execute theIfThenElse
then functions. If the condition is not fulfilledIfThenElse
else will be executed.
-
-
Constructor Summary
Constructors Constructor Description Condition()
Condition(java.lang.String combinedWith, java.util.List<ACondition> conditions)
Constructor for Condition
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Map<java.lang.String,java.lang.Object>
getAdditionalProperties()
java.lang.String
getCombinedWith()
Getter and Setterjava.util.List<ACondition>
getConditions()
void
setAdditionalProperty(java.lang.String name, java.lang.Object value)
void
setCombinedWith(java.lang.String combinedWith)
void
setConditions(java.util.List<ACondition> conditions)
-
-
-
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)
-
-