edu.stanford.nlp.util
Interface Pair<T1,T2>

All Known Implementing Classes:
MutablePair

public interface Pair<T1,T2>

Pair is an interface to objects that hold a pair of objects.

Author:
Daniel Cer (http://dmcer.net)

Method Summary
 T1 first()
           
 T2 second()
           
 

Method Detail

first

T1 first()

second

T2 second()


Stanford NLP Group