Interface TfsResult
-
- All Superinterfaces:
Result
- All Known Implementing Classes:
InterpolationTfsResult,TfsResultImpl
public interface TfsResult extends Result
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetColumnCount()java.util.List<java.lang.Double>getDoubleData(MadxVariable resultVariable)returns one Column of Data as double-values.java.util.List<java.lang.Double>getDoubleData(java.lang.String key)returns one Column of Data ad double-valuesjava.lang.IntegergetElementIndex(java.lang.String elementName)java.util.List<java.lang.String>getKeys()java.util.List<java.lang.String>getStringData(MadxVariable resultVariable)returns one Column of Data as String-values.java.util.List<java.lang.String>getStringData(java.lang.String key)returns the Data-Column for the given Key asArrayListTfsSummarygetSummary()MadxVarTypegetVarType(MadxVariable var)returns the type of Data for a given ResultVariableMadxVarTypegetVarType(java.lang.String key)returns the type of Data for the given key-
Methods inherited from interface cern.accsoft.steering.jmad.domain.result.Result
getResultType
-
-
-
-
Method Detail
-
getColumnCount
int getColumnCount()
- Returns:
- the amount of data-columns (amount of variables)
-
getSummary
TfsSummary getSummary()
- Returns:
- the summary parameters
-
getDoubleData
java.util.List<java.lang.Double> getDoubleData(MadxVariable resultVariable)
returns one Column of Data as double-values.- Parameters:
resultVariable- the ResultVariable for which to get the Data.- Returns:
- the Values
-
getDoubleData
java.util.List<java.lang.Double> getDoubleData(java.lang.String key)
returns one Column of Data ad double-values- Parameters:
key- the key for the data- Returns:
- the values
-
getStringData
java.util.List<java.lang.String> getStringData(MadxVariable resultVariable)
returns one Column of Data as String-values.- Parameters:
resultVariable- the ResultVariable for which to get the Data.- Returns:
- the Values
-
getStringData
java.util.List<java.lang.String> getStringData(java.lang.String key)
returns the Data-Column for the given Key asArrayList- Parameters:
key- the key for which to get the data.- Returns:
- the Double values
-
getKeys
java.util.List<java.lang.String> getKeys()
- Returns:
- the available keys.
-
getElementIndex
java.lang.Integer getElementIndex(java.lang.String elementName)
- Parameters:
elementName- the name of the element for which one wants to retrieve the index.- Returns:
- the index of Element in a list of values.
-
getVarType
MadxVarType getVarType(java.lang.String key)
returns the type of Data for the given key- Parameters:
key- the key for which to get the DataType- Returns:
- the Data-Type
-
getVarType
MadxVarType getVarType(MadxVariable var)
returns the type of Data for a given ResultVariable- Parameters:
var- the ResultVariable- Returns:
- the VarType
-
-