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

edu.stanford.nlp.trees.ConstituentFactory Maven / Gradle / Ivy

package edu.stanford.nlp.trees;

import edu.stanford.nlp.ling.Label;

/**
 * A ConstituentFactory is a factory for creating objects
 * of class Constituent, or some descendent class.
 * An interface.
 *
 * @author Christopher Manning
 */
public interface ConstituentFactory {

  /**
   * Build a constituent with this start and end.
   *
   * @param start Start position
   * @param end   End position
   */
  public Constituent newConstituent(int start, int end);

  /**
   * Build a constituent with this start and end.
   *
   * @param start Start position
   * @param end   End position
   * @param label Label
   * @param score Score
   */
  public Constituent newConstituent(int start, int end, Label label, double score);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy