Uses of Class
moa.clusterers.outliers.utils.mtree.utils.Pair
-
Packages that use Pair Package Description moa.clusterers.outliers.utils.mtree moa.clusterers.outliers.utils.mtree.utils -
-
Uses of Pair in moa.clusterers.outliers.utils.mtree
Fields in moa.clusterers.outliers.utils.mtree declared as Pair Modifier and Type Field Description Pair<Set<DATA>>
SplitFunction.SplitResult. partitions
A pair of partitions corresponding to thepromoted
data objects.Pair<DATA>
SplitFunction.SplitResult. promoted
A pair of promoted data objects.Methods in moa.clusterers.outliers.utils.mtree that return Pair Modifier and Type Method Description Pair<Set<DATA>>
PartitionFunction. process(Pair<DATA> promoted, Set<DATA> dataSet, DistanceFunction<? super DATA> distanceFunction)
Executes the partitioning.Pair<Set<DATA>>
PartitionFunctions.BalancedPartition. process(Pair<DATA> promoted, Set<DATA> dataSet, DistanceFunction<? super DATA> distanceFunction)
Processes the balanced partition.Pair<DATA>
PromotionFunction. process(Set<DATA> dataSet, DistanceFunction<? super DATA> distanceFunction)
Chooses (promotes) a pair of objects according to some criteria that is suitable for the application using the M-Tree.Pair<DATA>
PromotionFunctions.RandomPromotion. process(Set<DATA> dataSet, DistanceFunction<? super DATA> distanceFunction)
Methods in moa.clusterers.outliers.utils.mtree with parameters of type Pair Modifier and Type Method Description Pair<Set<DATA>>
PartitionFunction. process(Pair<DATA> promoted, Set<DATA> dataSet, DistanceFunction<? super DATA> distanceFunction)
Executes the partitioning.Pair<Set<DATA>>
PartitionFunctions.BalancedPartition. process(Pair<DATA> promoted, Set<DATA> dataSet, DistanceFunction<? super DATA> distanceFunction)
Processes the balanced partition.Constructors in moa.clusterers.outliers.utils.mtree with parameters of type Pair Constructor Description SplitResult(Pair<DATA> promoted, Pair<Set<DATA>> partitions)
The constructor for aSplitFunction.SplitResult
object. -
Uses of Pair in moa.clusterers.outliers.utils.mtree.utils
Methods in moa.clusterers.outliers.utils.mtree.utils that return Pair Modifier and Type Method Description static <T extends Comparable<T>>
Pair<T>Utils. minMax(Iterable<T> items)
Identifies the minimum and maximum elements from an iterable, according to the natural ordering of the elements.
-