
public class DoubleDoublePair extends Object implements Comparable<DoubleDoublePair>, PairInterface<Double,Double>
CPair
 generic.| Modifier and Type | Field and Description | 
|---|---|
static Comparator<DoubleDoublePair> | 
BYFIRST_COMPARATOR
Comparator to compare by second component only 
 | 
static Comparator<DoubleDoublePair> | 
BYSECOND_COMPARATOR
Comparator to compare by second component only 
 | 
double | 
first
first value 
 | 
double | 
second
second value 
 | 
static Comparator<DoubleDoublePair> | 
SWAPPED_COMPARATOR
Comparator to compare by swapped components 
 | 
| Constructor and Description | 
|---|
DoubleDoublePair(double first,
                double second)
Constructor 
 | 
DoubleDoublePair(DoubleDoublePair other)
Clone constructor. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
int | 
compareSwappedTo(DoubleDoublePair other)
Implementation of comparableSwapped interface, sorting by second then
 first. 
 | 
int | 
compareTo(DoubleDoublePair other)
Implementation of comparable interface, sorting by first then second. 
 | 
boolean | 
equals(Object obj)
Trivial equals implementation 
 | 
Double | 
getFirst()
Deprecated. 
 
use pair.first to avoid boxing! 
 | 
Double | 
getSecond()
Deprecated. 
 
use pair.first to avoid boxing! 
 | 
int | 
hashCode()
Trivial hashCode implementation mixing the two integers. 
 | 
void | 
setFirst(double first)
Set first value 
 | 
void | 
setSecond(double second)
Set second value 
 | 
String | 
toString()  | 
public double first
public double second
public static final Comparator<DoubleDoublePair> BYFIRST_COMPARATOR
public static final Comparator<DoubleDoublePair> BYSECOND_COMPARATOR
public static final Comparator<DoubleDoublePair> SWAPPED_COMPARATOR
public DoubleDoublePair(double first,
                double second)
first - First valuesecond - Second valuepublic DoubleDoublePair(DoubleDoublePair other)
other - Existing pair.public boolean equals(Object obj)
public final int hashCode()
public int compareTo(DoubleDoublePair other)
compareTo in interface Comparable<DoubleDoublePair>other - Object to compare topublic int compareSwappedTo(DoubleDoublePair other)
other - Object to compare to@Deprecated public final Double getFirst()
PairInterfacegetFirst in interface PairInterface<Double,Double>public final void setFirst(double first)
first - new value@Deprecated public final Double getSecond()
PairInterfacegetSecond in interface PairInterface<Double,Double>public final void setSecond(double second)
second - new value