Uses of Class
messif.objects.util.AggregationFunction

Packages that use AggregationFunction
messif.objects.util Various utilities for working with collections of objects. 
messif.objects.util.impl Implementation of simple function evaluator. 
messif.operations.query Implementation of data querying operations. 
 

Uses of AggregationFunction in messif.objects.util
 

Methods in messif.objects.util that return AggregationFunction
static AggregationFunction AggregationFunction.valueOf(java.lang.String string)
          Factory method for creating threshold functions from strings.
 

Methods in messif.objects.util that return types with arguments of type AggregationFunction
static java.lang.Class<? extends AggregationFunction> AggregationFunction.getFactoryClass()
          Returns the class currently set for the factory method valueOf(java.lang.String).
 

Method parameters in messif.objects.util with type arguments of type AggregationFunction
static void AggregationFunction.setFactoryClass(java.lang.Class<? extends AggregationFunction> factoryClass)
          Sets the class created by factory method valueOf(java.lang.String).
 

Uses of AggregationFunction in messif.objects.util.impl
 

Subclasses of AggregationFunction in messif.objects.util.impl
 class AggregationFunctionEvaluator
          Evaluator for basic arithmetic operators and functions applied on particular sub-distances.
 class ThresholdFunctionSimpleEvaluator
          Evaluator for basic arithmetic functions.
 

Uses of AggregationFunction in messif.operations.query
 

Fields in messif.operations.query declared as AggregationFunction
protected  AggregationFunction AggregationFunctionQueryOperation.aggregationFunction
          Threshold function for measuring the overall similarity
 

Methods in messif.operations.query that return AggregationFunction
 AggregationFunction AggregationFunctionQueryOperation.getThresholdFunction()
          Returns the threshold function for measuring the overall similarity.
 

Constructors in messif.operations.query with parameters of type AggregationFunction
AggregationFunctionQueryOperation(LocalAbstractObject queryObject, int k, AggregationFunction aggregationFunction)
          Creates a new instance of AggregationFunctionQueryOperation.
AggregationFunctionQueryOperation(LocalAbstractObject queryObject, int k, AggregationFunction aggregationFunction, AnswerType answerType, boolean storeMetaDistances)
          Creates a new instance of AggregationFunctionQueryOperation.
TopCombinedQueryOperation(LocalAbstractObject queryObject, int k, int numberOfInitialSA, boolean numberOfInitialSAProgressive, int numberOfRandomAccesses, java.lang.Class<? extends QueryOperation> initialSAQueryClass, AggregationFunction aggregationFunction)
          Creates a new instance of TopCombinedQueryOperation.