edu.stanford.nlp.ling
Class CoreAnnotations.ShapeAnnotation
java.lang.Object
edu.stanford.nlp.ling.CoreAnnotations.ShapeAnnotation
- All Implemented Interfaces:
- CoreAnnotation<String>, TypesafeMap.Key<CoreMap,String>
- Enclosing class:
- CoreAnnotations
public static class CoreAnnotations.ShapeAnnotation
- extends Object
- implements CoreAnnotation<String>
The standard key for the "shape" of a word: a String representing
the type of characters in a word, such as "Xx" for a capitalized word.
See edu.stanford.nlp.process.WordShapeClassifier
for functions
for making shape strings.
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
CoreAnnotations.ShapeAnnotation
public CoreAnnotations.ShapeAnnotation()
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