edu.stanford.nlp.dcoref
Class CorefCoreAnnotations.CorefGraphAnnotation

java.lang.Object
  extended by edu.stanford.nlp.dcoref.CorefCoreAnnotations.CorefGraphAnnotation
All Implemented Interfaces:
CoreAnnotation<java.util.List<Pair<IntTuple,IntTuple>>>, TypesafeMap.Key<CoreMap,java.util.List<Pair<IntTuple,IntTuple>>>
Enclosing class:
CorefCoreAnnotations

public static class CorefCoreAnnotations.CorefGraphAnnotation
extends java.lang.Object
implements CoreAnnotation<java.util.List<Pair<IntTuple,IntTuple>>>

This stores the entire set of coreference links for one document. Each link is stored as a pair of pointers (source and destination), where each pointer stores a sentence offset and a token offset. All offsets start at 0.


Constructor Summary
CorefCoreAnnotations.CorefGraphAnnotation()
           
 
Method Summary
 java.lang.Class<java.util.List<Pair<IntTuple,IntTuple>>> getType()
          Returns the type associated with this annotation.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CorefCoreAnnotations.CorefGraphAnnotation

public CorefCoreAnnotations.CorefGraphAnnotation()
Method Detail

getType

public java.lang.Class<java.util.List<Pair<IntTuple,IntTuple>>> getType()
Description copied from interface: CoreAnnotation
Returns the type associated with this annotation. This method must return the same class type as its value type parameter. It feels like one should be able to get away without this method, but because Java erases the generic type signature, that info disappears at runtime.

Specified by:
getType in interface CoreAnnotation<java.util.List<Pair<IntTuple,IntTuple>>>


Stanford NLP Group