Uses of Interface
anl.aida.data.Dataset

Packages that use Dataset
anl.aida.data   
anl.aida.formula   
 

Uses of Dataset in anl.aida.data
 

Classes in anl.aida.data that implement Dataset
 class AbstractDataset
          Abstract base class for datasets.
 

Fields in anl.aida.data declared as Dataset
protected  Dataset DefaultVariable.dataset
           
 

Fields in anl.aida.data with type parameters of type Dataset
private  java.util.Map<java.lang.String,Dataset> DataManager.datasets
           
protected  java.util.List<Dataset> AbstractDataFrame.datasets
           
private  java.util.Set<Dataset> DataFrameBuilder.sets
           
 

Methods in anl.aida.data that return Dataset
 Dataset DataManager.addDataset(Dataset dataset)
          Adds the specified dataset to the list managed by this data manager.
 Dataset DataManager.createDataset(java.lang.String className)
          Creates a DataSet from a classname of a class that implements Dataset.
 Dataset Variable.getDataset()
          Gets the dataset in which this variable appears.
 Dataset DefaultVariable.getDataset()
          Gets the dataset in which this variable appears.
 Dataset DataManager.getDataset(java.lang.String alias)
          Gets the dataset with the specified alias.
 

Methods in anl.aida.data that return types with arguments of type Dataset
 java.util.List<Dataset> DataFrame.getDataset()
          Gets the dataset that produced this DataFrame.
 java.util.List<Dataset> AbstractDataFrame.getDataset()
          Gets the dataset that produced this DataFrame.
 java.util.List<Dataset> DataManager.getDatasets()
          Gets the datasets managed by this data manager.
 

Methods in anl.aida.data with parameters of type Dataset
 Dataset DataManager.addDataset(Dataset dataset)
          Adds the specified dataset to the list managed by this data manager.
 DataFrameBuilder DataFrameBuilder.addDataset(Dataset set)
          Adds a Dataset to the frame that this builder is creating.
(package private)  void DataFrameBuilder.BuilderDataFrame.addDataset(Dataset set)
           
 

Method parameters in anl.aida.data with type arguments of type Dataset
 DataFrameBuilder DataFrameBuilder.addDataset(java.util.Collection<Dataset> sets)
          Adds the specified Datasets to the frame that this builder is creating.
 void DataManager.replaceAliases(java.util.Map<Dataset,java.lang.String> aliasMap)
          Replaces the specified datasets current alias with the new one.
 

Constructors in anl.aida.data with parameters of type Dataset
DefaultVariable(java.lang.String name, java.lang.String description, javax.measure.unit.Unit<?> unit, Dataset dataset)
           
 

Uses of Dataset in anl.aida.formula
 

Fields in anl.aida.formula declared as Dataset
private  Dataset FormulaVariable.dataset
           
 

Methods in anl.aida.formula that return Dataset
 Dataset FormulaVariable.getDataset()