edu.illinois.cs.cogcomp.lbj.coref.decoders
Interface KeyDecoder<ST extends Solution>

Type Parameters:
ST - The type of solution produced by the decode method.
All Superinterfaces:
SolutionDecoder<ST>
All Known Implementing Classes:
CorefKeyDecoder, KeyChainDecoder

public interface KeyDecoder<ST extends Solution>
extends SolutionDecoder<ST>

Interface for decoders that extract the gold (true) values, or keys, from a document.

Author:
Eric Bengtson

Method Summary
 ST decode(Doc doc)
          Decodes a document.
 
Methods inherited from interface edu.illinois.cs.cogcomp.lbj.coref.decoders.SolutionDecoder
setOption
 

Method Detail

decode

ST decode(Doc doc)
Decodes a document.

Specified by:
decode in interface SolutionDecoder<ST extends Solution>
Parameters:
doc - The document to decode.
Returns:
A solution.