All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.stanford.nlp.util.Factory Maven / Gradle / Ivy

Go to download

Stanford Parser processes raw text in English, Chinese, German, Arabic, and French, and extracts constituency parse trees.

There is a newer version: 3.9.2
Show newest version
package edu.stanford.nlp.util;

import java.io.Serializable;

/**
 * A generified factory class which creates instances of a particular type.
 *
 * @author dramage
 */
public interface Factory extends Serializable {

  /**
   * Creates and returns a new instance of the given type.
   *
   * @return A new instance of the type T
   */
  public T create();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy