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