Package uk.ac.starlink.table.join
Class PairsRowLink
- java.lang.Object
-
- uk.ac.starlink.table.join.RowLink
-
- uk.ac.starlink.table.join.PairsRowLink
-
- All Implemented Interfaces:
java.lang.Comparable
public class PairsRowLink extends RowLink
RowLink implementation which stores a number of pair matches to a single reference RowRef.- Since:
- 3 Dec 2007
- Author:
- Mark Taylor
-
-
Constructor Summary
Constructors Constructor Description PairsRowLink(RowRef ref0, RowRef[] ref1s, double[] scores, boolean bestOnly)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
getScore(int i)
Returns the score associated with a given RowRef.
-
-
-
Constructor Detail
-
PairsRowLink
public PairsRowLink(RowRef ref0, RowRef[] ref1s, double[] scores, boolean bestOnly)
Constructor.- Parameters:
ref0
- reference RowRef, common to all pairsref1s
- array of RowRefs which are pair matched toref0
scores
- array of scores forref1s
, same number of elementsbestOnly
- true iff only the best match for each non-reference table should be retained
-
-