Package org.yamcs.studio.data.formula
Class AbstractVBooleanVBooleanToVBooleanFormulaFunction
java.lang.Object
org.yamcs.studio.data.formula.AbstractVBooleanVBooleanToVBooleanFormulaFunction
- All Implemented Interfaces:
FormulaFunction
public abstract class AbstractVBooleanVBooleanToVBooleanFormulaFunction
extends Object
implements FormulaFunction
Abstract class for formula functions that take two
VBoolean
s as arguments and return a VBoolean
.
This class takes care of:
- extracting boolean value from
VBoolean
- null handling - returns null if one argument is null
- alarm handling - returns highest alarm
- time handling - returns latest time, or now if no time is available
- display handling - returns display none
-
Constructor Summary
ConstructorDescriptionAbstractVBooleanVBooleanToVBooleanFormulaFunction
(String name, String description, String arg1Name, String arg2Name) Creates a new function. -
Method Summary
Modifier and TypeMethodDescriptionabstract boolean
calculate
(boolean arg1, boolean arg2) Calculates the result based on the two arguments.Calculate the result of the function given the arguments.The ordered list of the argument names.The ordered list of the arguments type.Return the description of the function.getName()
Return the name of the function.Class<?>
The type of the function result.boolean
Whether the function takes a variable number of arguments.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.yamcs.studio.data.formula.FormulaFunction
highestSeverityOf, latestValidTimeOrNowOf
-
Constructor Details
-
AbstractVBooleanVBooleanToVBooleanFormulaFunction
public AbstractVBooleanVBooleanToVBooleanFormulaFunction(String name, String description, String arg1Name, String arg2Name) Creates a new function.- Parameters:
name
- function name; can't be nulldescription
- function description; can't be nullarg1Name
- first argument name; can't be nullarg2Name
- second argument name; can't be null
-
-
Method Details
-
getName
Description copied from interface:FormulaFunction
Return the name of the function.- Specified by:
getName
in interfaceFormulaFunction
- Returns:
- the function name
-
getDescription
Description copied from interface:FormulaFunction
Return the description of the function.- Specified by:
getDescription
in interfaceFormulaFunction
- Returns:
- the function description
-
isVarArgs
public boolean isVarArgs()Description copied from interface:FormulaFunction
Whether the function takes a variable number of arguments.Variable arguments can only be at the end of the argument list, and have the same type.
- Specified by:
isVarArgs
in interfaceFormulaFunction
- Returns:
- true if the function can accept a variable number of arguments
-
getArgumentTypes
Description copied from interface:FormulaFunction
The ordered list of the arguments type.- Specified by:
getArgumentTypes
in interfaceFormulaFunction
- Returns:
- the types of the arguments
-
getArgumentNames
Description copied from interface:FormulaFunction
The ordered list of the argument names.- Specified by:
getArgumentNames
in interfaceFormulaFunction
- Returns:
- the names of the names
-
getReturnType
Description copied from interface:FormulaFunction
The type of the function result.- Specified by:
getReturnType
in interfaceFormulaFunction
- Returns:
- the result type
-
calculate
Description copied from interface:FormulaFunction
Calculate the result of the function given the arguments.- Specified by:
calculate
in interfaceFormulaFunction
- Parameters:
args
- the argument list- Returns:
- the result of the function
-
calculate
public abstract boolean calculate(boolean arg1, boolean arg2) Calculates the result based on the two arguments. This is the only method one has to implement.- Parameters:
arg1
- the first argumentarg2
- the second argument- Returns:
- the result
-