edu.stanford.nlp.ling
Class CoreAnnotations.AntecedentAnnotation

java.lang.Object
  extended by edu.stanford.nlp.ling.CoreAnnotations.AntecedentAnnotation
All Implemented Interfaces:
CoreAnnotation<String>, TypesafeMap.Key<CoreMap,String>
Enclosing class:
CoreAnnotations

public static class CoreAnnotations.AntecedentAnnotation
extends Object
implements CoreAnnotation<String>

The CoreMap key identifying the annotation's antecedent. The intent of this annotation is to go with words that have been linked via coref to some other entity. For example, if "dog" is corefed to "cirrus" in the sentence "Cirrus, a small dog, ate an entire pumpkin pie", then "dog" would have the AntecedentAnnotation "cirrus". This annotation is currently used ONLY in the KBP slot filling project Generally, you want to use the usual coref graph annotations


Constructor Summary
CoreAnnotations.AntecedentAnnotation()
           
 
Method Summary
 Class<String> 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

CoreAnnotations.AntecedentAnnotation

public CoreAnnotations.AntecedentAnnotation()
Method Detail

getType

public Class<String> 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<String>


Stanford NLP Group