edu.stanford.nlp.ling
Class CoreAnnotations.AfterAnnotation

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

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

Annotation for the whitespace characters appear after this word. This can be filled in by the tokenizer so that the original text string can be reconstructed.


Constructor Summary
CoreAnnotations.AfterAnnotation()
           
 
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.AfterAnnotation

public CoreAnnotations.AfterAnnotation()
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