Java edu.stanford.nlp.ling CoreLabel fields, constructors, methods, implement or subclass

Example usage for Java edu.stanford.nlp.ling CoreLabel fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for edu.stanford.nlp.ling CoreLabel.

The text is from its open source code.

Field

MapgenericValues
StringTAG_SEPARATOR
Tag separator to use by default

Constructor

CoreLabel()
Default constructor, calls super()
CoreLabel(int capacity)
Initializes this CoreLabel, pre-allocating arrays to hold up to capacity key,value pairs.
CoreLabel(CoreLabel label)
Returns a new CoreLabel instance based on the contents of the given CoreLabel.
CoreLabel(CoreMap label)
Returns a new CoreLabel instance based on the contents of the given CoreMap.
CoreLabel(Label label)
Returns a new CoreLabel instance based on the contents of the given label.
CoreLabel(String[] keys, String[] values)
This constructor attempts to parse the String keys into Class keys.
CoreLabel(Class[] keys, String[] values)
This constructor attempts uses preparsed Class keys.

Method