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