Package io.adminshell.aas.v3.model
Interface Formula
-
- All Superinterfaces:
Constraint
- All Known Implementing Classes:
DefaultFormula
public interface Formula extends Constraint
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<Reference>getDependsOns()A formula may depend on referable or even external global elements - assumed that can be referenced and their value may be evaluated - that are used in the logical expression.voidsetDependsOns(java.util.List<Reference> dependsOns)A formula may depend on referable or even external global elements - assumed that can be referenced and their value may be evaluated - that are used in the logical expression.
-
-
-
Method Detail
-
getDependsOns
java.util.List<Reference> getDependsOns()
A formula may depend on referable or even external global elements - assumed that can be referenced and their value may be evaluated - that are used in the logical expression. More information under https://admin-shell.io/aas/3/0/RC01/Formula/dependsOn- Returns:
- Returns the List of References for the property dependsOns.
-
setDependsOns
void setDependsOns(java.util.List<Reference> dependsOns)
A formula may depend on referable or even external global elements - assumed that can be referenced and their value may be evaluated - that are used in the logical expression. More information under https://admin-shell.io/aas/3/0/RC01/Formula/dependsOn- Parameters:
dependsOns- desired value for the property dependsOns.
-
-