edu.stanford.nlp.ie.machinereading.structure
Class MachineReadingAnnotations.RelationMentionsAnnotation

java.lang.Object
  extended by edu.stanford.nlp.ie.machinereading.structure.MachineReadingAnnotations.RelationMentionsAnnotation
All Implemented Interfaces:
CoreAnnotation<java.util.List<RelationMention>>, TypesafeMap.Key<CoreMap,java.util.List<RelationMention>>
Enclosing class:
MachineReadingAnnotations

public static class MachineReadingAnnotations.RelationMentionsAnnotation
extends java.lang.Object
implements CoreAnnotation<java.util.List<RelationMention>>

The CoreMap key for getting the relation mentions corresponding to a sentence. This key is typically set on sentence annotations.


Constructor Summary
MachineReadingAnnotations.RelationMentionsAnnotation()
           
 
Method Summary
 java.lang.Class<java.util.List<RelationMention>> 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

MachineReadingAnnotations.RelationMentionsAnnotation

public MachineReadingAnnotations.RelationMentionsAnnotation()
Method Detail

getType

public java.lang.Class<java.util.List<RelationMention>> 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<RelationMention>>


Stanford NLP Group