Interface DoubleObjectPair<T>
-
- All Superinterfaces:
java.lang.Comparable<DoubleObjectPair<T>>
,java.io.Serializable
- All Known Implementing Classes:
DoubleObjectPairImpl
public interface DoubleObjectPair<T> extends java.io.Serializable, java.lang.Comparable<DoubleObjectPair<T>>
An instance of this interface can be created by calling PrimitiveTuples.pair(double, Object).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double
getOne()
T
getTwo()
-
-
-
Method Detail
-
getOne
double getOne()
-
getTwo
T getTwo()
-
-