edu.stanford.nlp.dcoref
Class CorefCoreAnnotations.CorefClusterIdAnnotation

java.lang.Object
  extended by edu.stanford.nlp.dcoref.CorefCoreAnnotations.CorefClusterIdAnnotation
All Implemented Interfaces:
CoreAnnotation<java.lang.Integer>, TypesafeMap.Key<java.lang.Integer>
Enclosing class:
CorefCoreAnnotations

public static class CorefCoreAnnotations.CorefClusterIdAnnotation
extends java.lang.Object
implements CoreAnnotation<java.lang.Integer>

An integer representing a document-level unique cluster of coreferent entities. In other words, if two entities have the same CorefClusterIdAnnotation, they are coreferent. This annotation is typically attached to tokens (CoreLabel).


Constructor Summary
CorefCoreAnnotations.CorefClusterIdAnnotation()
           
 
Method Summary
 java.lang.Class<java.lang.Integer> 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.CorefClusterIdAnnotation

public CorefCoreAnnotations.CorefClusterIdAnnotation()
Method Detail

getType

public java.lang.Class<java.lang.Integer> 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.lang.Integer>


Stanford NLP Group