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