Uses of Interface
de.lmu.ifi.dbs.elki.utilities.pairs.PairInterface

Packages that use PairInterface
de.lmu.ifi.dbs.elki.algorithm.outlier Outlier detection algorithms 
de.lmu.ifi.dbs.elki.database.ids Database object identification and ID group handling API
de.lmu.ifi.dbs.elki.database.ids.integer Integer-based DBID implementation -- do not use directly - always use DBIDUtil
de.lmu.ifi.dbs.elki.database.query Database queries - computing distances, neighbors, similarities - API and general documentation. 
de.lmu.ifi.dbs.elki.evaluation.roc Evaluation of rankings using ROC AUC (Receiver Operation Characteristics - Area Under Curve) 
de.lmu.ifi.dbs.elki.index.tree.spatial Tree-based index structures for spatial indexing. 
de.lmu.ifi.dbs.elki.math Mathematical operations and utilities used throughout the framework. 
de.lmu.ifi.dbs.elki.utilities.datastructures.heap Heap structures and variations such as bounded priority heaps. 
de.lmu.ifi.dbs.elki.utilities.pairs Pairs and triples utility classes. 
 

Uses of PairInterface in de.lmu.ifi.dbs.elki.algorithm.outlier
 

Classes in de.lmu.ifi.dbs.elki.algorithm.outlier that implement PairInterface
private static class AggarwalYuEvolutionary.Individuum
          Individuum for the evolutionary search.
 

Uses of PairInterface in de.lmu.ifi.dbs.elki.database.ids
 

Subinterfaces of PairInterface in de.lmu.ifi.dbs.elki.database.ids
 interface DBIDPair
          Immutable pair of two DBIDs.
 

Uses of PairInterface in de.lmu.ifi.dbs.elki.database.ids.integer
 

Classes in de.lmu.ifi.dbs.elki.database.ids.integer that implement PairInterface
 class IntegerDBIDPair
          DBID pair using two ints for storage.
 

Uses of PairInterface in de.lmu.ifi.dbs.elki.database.query
 

Subinterfaces of PairInterface in de.lmu.ifi.dbs.elki.database.query
 interface DistanceResultPair<D extends Distance<?>>
          Class that consists of a pair (distance, object ID) commonly returned for kNN and range queries.
 

Classes in de.lmu.ifi.dbs.elki.database.query that implement PairInterface
 class DoubleDistanceResultPair
          Optimized DistanceResultPair that avoids/postpones an extra layer of boxing for double values.
 class GenericDistanceResultPair<D extends Distance<D>>
          Trivial implementation using a generic pair.
 

Uses of PairInterface in de.lmu.ifi.dbs.elki.evaluation.roc
 

Method parameters in de.lmu.ifi.dbs.elki.evaluation.roc with type arguments of type PairInterface
static
<C extends Comparable<? super C>,T>
List<DoubleDoublePair>
ROC.materializeROC(int size, Set<? super T> ids, Iterator<? extends PairInterface<C,T>> nei)
          Compute a ROC curve given a set of positive IDs and a sorted list of (comparable, ID)s, where the comparable object is used to decided when two objects are interchangeable.
 

Uses of PairInterface in de.lmu.ifi.dbs.elki.index.tree.spatial
 

Classes in de.lmu.ifi.dbs.elki.index.tree.spatial that implement PairInterface
 class SpatialPair<K,V extends SpatialComparable>
          Defines the requirements for objects that can be indexed by a Spatial Index, which are spatial nodes or data objects.
 

Uses of PairInterface in de.lmu.ifi.dbs.elki.math
 

Classes in de.lmu.ifi.dbs.elki.math that implement PairInterface
 class DoubleMinMax
          Class to find the minimum and maximum double values in data.
 class MinMax<T extends Comparable<? super T>>
          Class to find the minimum and maximum double values in data.
 

Uses of PairInterface in de.lmu.ifi.dbs.elki.utilities.datastructures.heap
 

Classes in de.lmu.ifi.dbs.elki.utilities.datastructures.heap that implement PairInterface
 class IntegerPriorityObject<O>
          Object for a priority queue with integer priority.
 

Uses of PairInterface in de.lmu.ifi.dbs.elki.utilities.pairs
 

Classes in de.lmu.ifi.dbs.elki.utilities.pairs that implement PairInterface
 class CPair<FIRST extends Comparable<? super FIRST>,SECOND extends Comparable<? super SECOND>>
          Pair with canonical comparison function derived from the components comparable interfaces.
 class DoubleDoublePair
          Pair storing two doubles.
 class DoubleIntPair
          Pair storing an integer and a double.
 class DoubleObjPair<O>
          Pair storing a native double value and an arbitrary object.
 class FCPair<FIRST extends Comparable<? super FIRST>,SECOND>
          Pair that can only be compared by it's first component.
 class IntDoublePair
          Pair storing an integer and a double.
 class IntIntPair
          Pair storing two integers.
 class Pair<FIRST,SECOND>
          Generic SimplePair class.
 class SCPair<FIRST,SECOND extends Comparable<? super SECOND>>
          Pair that can only be compared by it's second component.
 


Release 0.4.0 (2011-09-20_1324)