Package com.apama.dashboard.data
Interface IVariableData
-
public interface IVariableData
IVariableData is an interface to an instance of a class containing the current values of a set of dashboard variables.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double
getDoubleVar(java.lang.String varName)
Get the value of a variable as a double.int
getIntVar(java.lang.String varName)
Get the value of a variable as a int.java.lang.String
getStringVar(java.lang.String varName)
Get the value of a variable as a String.ITabularData
getTableVar(java.lang.String varName)
Get the value of a variable as TabularData.java.lang.String[]
getVarNames()
Get the variable names.int[]
getVarTypes()
Get the variable types.
-
-
-
Method Detail
-
getTableVar
ITabularData getTableVar(java.lang.String varName)
Get the value of a variable as TabularData.- Parameters:
varName
- Name of variable.- Returns:
- Value.
-
getDoubleVar
double getDoubleVar(java.lang.String varName)
Get the value of a variable as a double.- Parameters:
varName
- Name of variable.- Returns:
- Value.
-
getIntVar
int getIntVar(java.lang.String varName)
Get the value of a variable as a int.- Parameters:
varName
- Name of variable.- Returns:
- Value.
-
getStringVar
java.lang.String getStringVar(java.lang.String varName)
Get the value of a variable as a String.- Parameters:
varName
- Name of variable.- Returns:
- Value.
-
getVarNames
java.lang.String[] getVarNames()
Get the variable names.- Returns:
- Array of variable names.
-
getVarTypes
int[] getVarTypes()
Get the variable types.- Returns:
- Array of variable types.
-
-