edu.stanford.nlp.ling.Datum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stanford-parser Show documentation
Show all versions of stanford-parser Show documentation
Stanford Parser processes raw text in English, Chinese, German, Arabic, and French, and extracts constituency parse trees.
package edu.stanford.nlp.ling;
import java.io.Serializable;
/**
* Interface for Objects which can be described by their features.
* An Object is described by a Datum as a List of categorical features.
* (For features which have numeric values, see {@link RVFDatum}.
* These objects can also be Serialized (for insertion into a file database).
*
* @author Sepandar Kamvar ([email protected])
* @author Sarah Spikes ([email protected]) (Templatization)
*
* @param The type of the labels in the Datum
* @param The type of the features in the Datum
*/
public abstract interface Datum extends Serializable, Featurizable, Labeled {
}