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