Uses of Class
kieker.analysis.generic.clustering.mtree.query.Query
Package | Description |
---|---|
kieker.analysis.generic.clustering.mtree |
Copyright 2022 Kieker Project (http://kieker-monitoring.net)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
|
kieker.analysis.generic.clustering.mtree.query |
Copyright 2022 Kieker Project (http://kieker-monitoring.net)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
|
-
Uses of Query in kieker.analysis.generic.clustering.mtree
Methods in kieker.analysis.generic.clustering.mtree that return Query Modifier and Type Method Description Query<T>
MTree. getNearest(T queryData)
Performs a nearest-neighbor query on the M-Tree, without constraints.Query<T>
MTree. getNearest(T queryData, double range, int limit)
Performs a nearest-neighbor query on the M-Tree, constrained by distance and/or the number of neighbors.Query<T>
MTree. getNearestByLimit(T queryData, int limit)
Performs a nearest-neighbors query on the M-Tree, constrained by the number of neighbors.Query<T>
MTree. getNearestByRange(T queryData, double range)
Performs a nearest-neighbors query on the M-Tree, constrained by distance. -
Uses of Query in kieker.analysis.generic.clustering.mtree.query
Constructors in kieker.analysis.generic.clustering.mtree.query with parameters of type Query Constructor Description ResultsIterator(Query<T> query)