Uses of Class
org.anchoranalysis.feature.results.ResultsVector
| Package | Description |
|---|---|
| org.anchoranalysis.feature.calculate |
Sub-feature units of calculation that can be cached.
|
| org.anchoranalysis.feature.calculate.bound |
Interfaces like
FeatureCalculator but bound to
particular features. |
| org.anchoranalysis.feature.results |
Results from one or more feature calculations.
|
-
Uses of ResultsVector in org.anchoranalysis.feature.calculate
Methods in org.anchoranalysis.feature.calculate that return ResultsVector Modifier and Type Method Description ResultsVectorFeatureCalculationInput. 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 ResultsVector Modifier and Type Method Description ResultsVectorFeatureCalculatorMulti. calculate(T input)Calculate 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.ResultsVectorFeatureCalculatorMulti. calculate(T input, FeatureList<T> featuresSubset)Calculates the results of a subset of the features with a particular input.ResultsVectorFeatureCalculatorMultiChangeInput. calculate(T input)ResultsVectorFeatureCalculatorMultiChangeInput. calculate(T input, FeatureList<T> featuresSubset)ResultsVectorFeatureCalculatorMulti. calculateSuppressErrors(T input, ErrorReporter errorReporter)Calculates the results for aninputrecording the error to anErrorReporterif anything goes wrong, but throwing no exception.ResultsVectorFeatureCalculatorMultiChangeInput. calculateSuppressErrors(T input, ErrorReporter errorReporter) -
Uses of ResultsVector in org.anchoranalysis.feature.results
Methods in org.anchoranalysis.feature.results that return ResultsVector Modifier and Type Method Description ResultsVectorResultsVectorList. get(int index)Gets aResultsVectorat a particular position i nthe list.Methods in org.anchoranalysis.feature.results that return types with arguments of type ResultsVector Modifier and Type Method Description Iterator<ResultsVector>ResultsVectorList. iterator()Stream<ResultsVector>ResultsVectorList. stream()A stream ofResultsVectors.Methods in org.anchoranalysis.feature.results with parameters of type ResultsVector Modifier and Type Method Description voidResultsVectorList. 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 ResultsVector Constructor Description ResultsVectorList(ResultsVector results)Creates with the list containing a single item.