Class MutableDataset
- java.lang.Object
- 
- com.inductiveautomation.ignition.gateway.util.MutableDataset
 
- 
- All Implemented Interfaces:
- Dataset,- java.io.Serializable
 
 public class MutableDataset extends java.lang.Object implements Dataset An implementation of Dataset that is used by gateway-side functions for returning to clients. Doesn't implement binarySearch, but this shouldn't be important as this class won't be re-constituted on the client side - it will get parsed into a BasicDataset- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description MutableDataset(java.lang.String[] columns, java.lang.Class<?>[] types)MutableDataset(java.lang.String[] columns, java.lang.Class<?>[] types, int initialSize)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddRow(java.lang.Object... values)intbinarySearch(int column, java.lang.Object key)Performs a binary search on the specified column, looking for the specified key.intgetColumnCount()Returns the number of columns.intgetColumnIndex(java.lang.String name)Returns the index of the given column, case insensitivejava.lang.StringgetColumnName(int col)Returns the name of the given column.java.util.List<java.lang.String>getColumnNames()Returns an unmodifiable list of this dataset's column names, in order.java.lang.Class<?>getColumnType(int col)Returns the type of the given column.java.util.List<java.lang.Class<?>>getColumnTypes()Returns an unmodifiable list of this dataset's column types, in order.doublegetPrimitiveValueAt(int row, int col)If the given column is a numeric type or a Date, then the value will be returned as a double.QualityCodegetQualityAt(int row, int col)Returns the quality of the value at the given location.intgetRowCount()Return the number of rows in this datasetjava.lang.ObjectgetValueAt(int row, int col)Returns the value in the dataset at the given location.java.lang.ObjectgetValueAt(int row, java.lang.String colName)Returns the value at the given row and at a column named colName.- 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface com.inductiveautomation.ignition.common.DatasetgetColumnAsList, hasQualityData
 
- 
 
- 
- 
- 
Method Detail- 
addRowpublic void addRow(java.lang.Object... values) 
 - 
binarySearchpublic int binarySearch(int column, java.lang.Object key)Description copied from interface:DatasetPerforms a binary search on the specified column, looking for the specified key. Column MUST be sorted in ascending order. Dataset provides an inefficient default implementation of binary search that allocates a new array list for the entire column.- Specified by:
- binarySearchin interface- Dataset
- Returns:
- index of the search key, if it is contained in the list; otherwise, (-(insertion point) - 1). The insertion point is defined as the point at which the key would be inserted into the list: the index of the first element greater than the key, or list.size(), if all elements in the list are less than the specified key. Note that this guarantees the return value will be greater than or equal to 0, but only if the key is found.
 
 - 
getColumnCountpublic int getColumnCount() Description copied from interface:DatasetReturns the number of columns.- Specified by:
- getColumnCountin interface- Dataset
 
 - 
getColumnIndexpublic int getColumnIndex(java.lang.String name) Description copied from interface:DatasetReturns the index of the given column, case insensitive- Specified by:
- getColumnIndexin interface- Dataset
- Parameters:
- name- the name of the column to look up
- Returns:
- the index of the column
 
 - 
getColumnNamepublic java.lang.String getColumnName(int col) Description copied from interface:DatasetReturns the name of the given column.- Specified by:
- getColumnNamein interface- Dataset
 
 - 
getColumnNamespublic java.util.List<java.lang.String> getColumnNames() Description copied from interface:DatasetReturns an unmodifiable list of this dataset's column names, in order.- Specified by:
- getColumnNamesin interface- Dataset
 
 - 
getColumnTypepublic java.lang.Class<?> getColumnType(int col) Description copied from interface:DatasetReturns the type of the given column.- Specified by:
- getColumnTypein interface- Dataset
 
 - 
getColumnTypespublic java.util.List<java.lang.Class<?>> getColumnTypes() Description copied from interface:DatasetReturns an unmodifiable list of this dataset's column types, in order.- Specified by:
- getColumnTypesin interface- Dataset
 
 - 
getPrimitiveValueAtpublic double getPrimitiveValueAt(int row, int col)Description copied from interface:DatasetIf the given column is a numeric type or a Date, then the value will be returned as a double. (Charts uses this functionality to provide a seamless interface with certain optimized dataset implementations.- Specified by:
- getPrimitiveValueAtin interface- Dataset
 
 - 
getRowCountpublic int getRowCount() Description copied from interface:DatasetReturn the number of rows in this dataset- Specified by:
- getRowCountin interface- Dataset
 
 - 
getValueAtpublic java.lang.Object getValueAt(int row, int col)Description copied from interface:DatasetReturns the value in the dataset at the given location.- Specified by:
- getValueAtin interface- Dataset
 
 - 
getValueAtpublic java.lang.Object getValueAt(int row, java.lang.String colName)Description copied from interface:DatasetReturns the value at the given row and at a column named colName. Column name matching is case insensitive.- Specified by:
- getValueAtin interface- Dataset
 
 - 
getQualityAtpublic QualityCode getQualityAt(int row, int col) Description copied from interface:DatasetReturns the quality of the value at the given location.- Specified by:
- getQualityAtin interface- Dataset
 
 
- 
 
-