Package adams.core
Interface ArrayProvider
-
- All Known Subinterfaces:
ArrayProvider
- All Known Implementing Classes:
AbstractArrayProvider
,AbstractArrayProvider
,AbstractConditionalIdSupplier
,AbstractDatabaseIdSupplier
,AbstractDataContainerFileReader
,AbstractDbArrayProvider
,AbstractDbArrayProvider
,AbstractIdSupplier
,AbstractInstrumentSupplier
,AbstractInteractiveArrayProvider
,AbstractListTables
,AbstractReportFileReader
,AbstractSelectObjects
,AccessDatabaseInfo
,ArrayHistogramRanges
,BinaryFileReader
,BoofCVMultiImageOperation
,BoofCVTransformer
,BufferedImageMultiImageOperation
,BufferedImageTransformer
,ColorProvider
,ControlChart
,DirectoryLister
,DirectorySupplier
,EmailFileReader
,FileSupplier
,FileSystemSearch
,ForLoop
,FTPLister
,GetImageObjectIndices
,GetImageObjects
,GetJsonKeys
,GetJsonValue
,GetMapKeys
,GetProperties
,GetPropertyNames
,GetPropertyValue
,GroupByRegExp
,IntegerRange
,LargeObjectDbReader
,ListCallableActors
,ListEnvironmentVariables
,ListStorageNames
,ListSystemProperties
,ListTables
,ListVariables
,LocateObjects
,Mat5ArrayInfo
,Mat5FileInfo
,Mat5StructInfo
,MatchReportFields
,MultiMat5MatrixOperation
,OpenCVMultiImageOperation
,OpenCVTransformer
,PDFInfo
,PrepareFileBasedDataset
,RandomNumberGenerator
,ReportField
,ReportFileReader
,SelectFile
,SelectObjects
,SpreadSheetCellFinder
,SpreadSheetColumnIterator
,SpreadSheetExtractArray
,SpreadSheetFileReader
,SpreadSheetGetCell
,SpreadSheetHistogramRanges
,SpreadSheetInfo
,SpreadSheetPlotGenerator
,SpreadSheetRowToTimeseries
,SpreadSheetToTimeseries
,SQLIdSupplier
,StringArraySplit
,StringConstants
,StringJoin
,TimeseriesFileReader
,TimeseriesSplit
,URLSupplier
,ViaAnnotationsToReports
,WekaAttributeIterator
,WekaEvaluationPostProcessor
,WekaGeneticAlgorithm
,WekaInstanceFileReader
,WekaInstancesHistogramRanges
,WekaInstancesInfo
,WekaRandomSplit
,WekaSelectDataset
,WekaSelectObjects
,WekaSplitGenerator
public interface ArrayProvider
For classes that can generate data either as an array or one-by-one.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getOutputArray()
Returns whether to generate the as array or as single objects.String
outputArrayTipText()
Returns the tip text for this property.void
setOutputArray(boolean value)
Sets whether to generate data as array or as single objects.
-
-
-
Method Detail
-
setOutputArray
void setOutputArray(boolean value)
Sets whether to generate data as array or as single objects.- Parameters:
value
- true if output is an array
-
getOutputArray
boolean getOutputArray()
Returns whether to generate the as array or as single objects.- Returns:
- true if output is an array
-
outputArrayTipText
String outputArrayTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-