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