Uses of Interface
adams.data.binning.operation.Wrapping.BinValueExtractor
-
Packages that use Wrapping.BinValueExtractor Package Description adams.data.binning adams.data.binning.operation -
-
Uses of Wrapping.BinValueExtractor in adams.data.binning
Classes in adams.data.binning that implement Wrapping.BinValueExtractor Modifier and Type Class Description static classBinnableDataset.ClassValueBinValueExtractorUses the specified class value as bin value.static classBinnableDataset.GroupedClassValueBinValueExtractorUses the class value of the first data row in the group as bin value.static classBinnableInstances.ClassValueBinValueExtractorUses the class value as bin value.static classBinnableInstances.GroupedClassValueBinValueExtractorUses the class value of the first instance in the group as bin value. -
Uses of Wrapping.BinValueExtractor in adams.data.binning.operation
Classes in adams.data.binning.operation that implement Wrapping.BinValueExtractor Modifier and Type Class Description static classWrapping.IndexedBinValueExtractor<T>Simply keeps track of the number of objects encountered and returns that count as bin value.Methods in adams.data.binning.operation with parameters of type Wrapping.BinValueExtractor Modifier and Type Method Description static <T> List<Binnable<T>>Wrapping. wrap(Collection<T> values, Wrapping.BinValueExtractor<T> extractor)Wraps the collection in binnable objects, using the extractor to determine the value for the binnable object.static <T> List<Binnable<T>>Wrapping. wrap(T[] values, Wrapping.BinValueExtractor<T> extractor)Wraps the array in binnable objects, using the extractor to determine the value for the binnable object.static <T> List<Binnable<BinnableGroup<T>>>Wrapping. wrapGroups(Collection<BinnableGroup<T>> values, Wrapping.BinValueExtractor<T> extractor)Wraps the collection of binnable group objects in binnable objects, using the extractor to determine the value for the binnable object (uses first item of group).
-