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