Uses of Class
org.anchoranalysis.feature.results.ResultsVector
Packages that use ResultsVector
Package
Description
Sub-feature units of calculation that can be cached.
Interfaces like
FeatureCalculator but bound to
particular features.Results from one or more feature calculations.
-
Uses of ResultsVector in org.anchoranalysis.feature.calculate
Methods in org.anchoranalysis.feature.calculate that return ResultsVectorModifier and TypeMethodDescriptionFeatureCalculationInput.calculate(FeatureList<T> features) Calculates the results of several features using this input.default ResultsVectorFeatureCalculator.calculate(FeatureList<T> features, FeatureCalculationInput<T> input) Calculates results for a list of features with a particular input, throwing an exception if a calculation fails. -
Uses of ResultsVector in org.anchoranalysis.feature.calculate.bound
Methods in org.anchoranalysis.feature.calculate.bound that return ResultsVectorModifier and TypeMethodDescriptionCalculate the results of the features with a particular input.default ResultsVectorFeatureCalculatorMulti.calculate(T input, ErrorReporter errorReporter, boolean suppressErrors) Calculates the results for aninput, either callingFeatureCalculatorMulti.calculate(T)orFeatureCalculatorMulti.calculateSuppressErrors(T, org.anchoranalysis.core.log.error.ErrorReporter)depending on a flag.FeatureCalculatorMulti.calculate(T input, FeatureList<T> featuresSubset) Calculates the results of a subset of the features with a particular input.FeatureCalculatorMultiChangeInput.calculate(T input, FeatureList<T> featuresSubset) FeatureCalculatorMulti.calculateSuppressErrors(T input, ErrorReporter errorReporter) Calculates the results for aninputrecording the error to anErrorReporterif anything goes wrong, but throwing no exception.FeatureCalculatorMultiChangeInput.calculateSuppressErrors(T input, ErrorReporter errorReporter) -
Uses of ResultsVector in org.anchoranalysis.feature.results
Classes in org.anchoranalysis.feature.results that implement interfaces with type arguments of type ResultsVectorMethods in org.anchoranalysis.feature.results that return ResultsVectorModifier and TypeMethodDescriptionResultsVectorList.get(int index) Gets aResultsVectorat a particular position i nthe list.Methods in org.anchoranalysis.feature.results that return types with arguments of type ResultsVectorModifier and TypeMethodDescriptionResultsVectorList.iterator()ResultsVectorList.stream()A stream ofResultsVectors.Methods in org.anchoranalysis.feature.results with parameters of type ResultsVectorModifier and TypeMethodDescriptionvoidResultsVectorList.add(ResultsVector results) Add aResultsVectorto the list in the final position.voidResultsVector.copyFrom(int index, int length, ResultsVector source, int sourceIndex) Copies a contiguous subset of results from another vector.voidResultsVector.set(int startIndex, ResultsVector resultsToAssign) Assigns many results, starting at a particular position, and incrementing thereafter.Constructors in org.anchoranalysis.feature.results with parameters of type ResultsVectorModifierConstructorDescriptionResultsVectorList(ResultsVector results) Creates with the list containing a single item.