Uses of Interface
org.dashbuilder.dataset.DataSet
-
Packages that use DataSet Package Description org.dashbuilder.dataprovider org.dashbuilder.dataset org.dashbuilder.dataset.def org.dashbuilder.dataset.impl org.dashbuilder.dataset.json -
-
Uses of DataSet in org.dashbuilder.dataprovider
Methods in org.dashbuilder.dataprovider that return DataSet Modifier and Type Method Description DataSetDataSetProvider. lookupDataSet(DataSetDef def, DataSetLookup lookup)Fetch a data set and optionally apply several operations (filter, sort, group, ...) on top of it. -
Uses of DataSet in org.dashbuilder.dataset
Methods in org.dashbuilder.dataset that return DataSet Modifier and Type Method Description DataSetDataSet. addColumn(String id, ColumnType type)Add a brand new column.DataSetDataSet. addColumn(String id, ColumnType type, List values)Add a brand new column populated with the given values.DataSetDataSet. addColumn(DataColumn column)Add a brand new column.DataSetDataSet. addEmptyRowAt(int row)Add an empty row at the given position.DataSetDataSet. addValues(Object... values)Add a row at the end of the data set.DataSetDataSet. addValuesAt(int row, Object... values)Add a row at the given position.DataSetDataSetBuilder. buildDataSet()Build and get the resulting DataSet instance.DataSetDataSetGenerator. buildDataSet(Map<String,String> params)Build and get a DataSet instance.DataSetDataSet. cloneEmpty()Build a data set with the same structure as this but containing no data.DataSetDataSet. cloneInstance()Build a data set with the same structure and content.DataSetDataSetManager. createDataSet(String uuid)Create a brand new data set instance.DataSetDataSetOpEngine. execute(String uuid, List<DataSetOp> opList)Apply a sequence of operations on the specified data set.DataSetDataSetOpEngine. execute(DataSet dataSet, List<DataSetOp> opList)Apply a sequence of operations on the specified data set.DataSetDataColumn. getDataSet()DataSetDataSetManager. getDataSet(String uuid)Retrieve (load if required) a data set.DataSetDataSetManager. lookupDataSet(DataSetLookup lookup)Load a data set and apply several operations (filter, sort, group, ...) on top of it.DataSet[]DataSetManager. lookupDataSets(DataSetLookup[] lookup)Process multiple data set lookup request in a single shot.static DataSetDataSetFactory. newEmptyDataSet()DataSetDataSet. removeColumn(String id)Removes an existing column.DataSetDataSetManager. removeDataSet(String uuid)Removes the specified data set instance.DataSetDataSet. setValueAt(int row, int column, Object value)Set the value at a given cell.DataSetDataSet. setValuesAt(int row, Object... values)Set all the values for a given row.DataSetDataSet. trim(int offset, int rows)Returns a data set containing only the specified row sub set.DataSetDataSet. trim(List<Integer> rows)Returns a data set containing only the specified row sub set.Methods in org.dashbuilder.dataset with parameters of type DataSet Modifier and Type Method Description ValidationErrorDataSetConstraints. check(DataSet dataSet)DataSetDataSetOpEngine. execute(DataSet dataSet, List<DataSetOp> opList)Apply a sequence of operations on the specified data set.voidDataSetManager. registerDataSet(DataSet dataSet)Registers the specified data set instance.voidDataSetManager. registerDataSet(DataSet dataSet, List<DataSetPreprocessor> preprocessors)Registers the specified data set instance with a list of preprocessors -
Uses of DataSet in org.dashbuilder.dataset.def
Fields in org.dashbuilder.dataset.def declared as DataSet Modifier and Type Field Description protected DataSetStaticDataSetDef. dataSetMethods in org.dashbuilder.dataset.def that return DataSet Modifier and Type Method Description DataSetStaticDataSetDef. getDataSet()Methods in org.dashbuilder.dataset.def with parameters of type DataSet Modifier and Type Method Description voidDataSetPostProcessor. postProcess(DataSetLookup lookup, DataSet dataSet)voidStaticDataSetDef. setDataSet(DataSet dataSet) -
Uses of DataSet in org.dashbuilder.dataset.impl
Classes in org.dashbuilder.dataset.impl that implement DataSet Modifier and Type Class Description classDataSetImplFields in org.dashbuilder.dataset.impl declared as DataSet Modifier and Type Field Description protected DataSetDataSetBuilderImpl. dataSetMethods in org.dashbuilder.dataset.impl that return DataSet Modifier and Type Method Description DataSetDataSetImpl. addColumn(String id, ColumnType type)DataSetDataSetImpl. addColumn(String id, ColumnType type, List values)DataSetDataSetImpl. addColumn(DataColumn column)DataSetDataSetImpl. addEmptyRowAt(int row)DataSetDataSetImpl. addValueAt(int row, int column, Object value)DataSetDataSetImpl. addValueAt(int column, Object value)DataSetDataSetImpl. addValues(Object... values)DataSetDataSetImpl. addValuesAt(int row, Object... values)DataSetDataSetBuilderImpl. buildDataSet()DataSetDataSetImpl. removeColumn(String id)DataSetDataSetImpl. setValueAt(int row, int column, Object value)DataSetDataSetImpl. setValuesAt(int row, Object... values)DataSetDataSetImpl. trim(int offset, int rows)DataSetDataSetImpl. trim(List<Integer> rows) -
Uses of DataSet in org.dashbuilder.dataset.json
Methods in org.dashbuilder.dataset.json that return DataSet Modifier and Type Method Description DataSetDataSetJSONMarshaller. fromJson(String jsonString)DataSetDataSetJSONMarshaller. fromJson(org.dashbuilder.json.JsonObject dataSetJson)Methods in org.dashbuilder.dataset.json with parameters of type DataSet Modifier and Type Method Description org.dashbuilder.json.JsonObjectDataSetJSONMarshaller. toJson(DataSet dataSet)
-