Package org.maltparserx.core.feature.value

Examples of org.maltparserx.core.feature.value.SingleFeatureValue


 
 
  public MergeFeature(DataFormatInstance dataFormatInstance) throws MaltChainedException {
    super();
    setDataFormatInstance(dataFormatInstance);
    singleFeatureValue = new SingleFeatureValue(this);
  }
View Full Code Here


public abstract class ColumnFeature implements FeatureFunction, Modifiable {
  protected ColumnDescription column;
  protected final SingleFeatureValue featureValue;
 
  public ColumnFeature() throws MaltChainedException {
    featureValue = new SingleFeatureValue(this);
  }
View Full Code Here

 
  public InputArcFeature(DataFormatInstance dataFormatInstance, SymbolTableHandler tableHandler) throws MaltChainedException {
    super();
    setDataFormatInstance(dataFormatInstance);
    setTableHandler(tableHandler);
    setFeatureValue(new SingleFeatureValue(this));
  }
View Full Code Here

  protected String normalizationString;
  protected Map<Integer,String> normalization;
 
  public NumOfFeature(SymbolTableHandler tableHandler) throws MaltChainedException {
    super();
    featureValue = new SingleFeatureValue(this);
    setTableHandler(tableHandler);
    normalization = new LinkedHashMap<Integer,String>();
  }
View Full Code Here

 
  public OutputArcFeature(DataFormatInstance dataFormatInstance, SymbolTableHandler tableHandler) throws MaltChainedException {
    super();
    setDataFormatInstance(dataFormatInstance);
    setTableHandler(tableHandler);
    setFeatureValue(new SingleFeatureValue(this));
  }
View Full Code Here

  protected SymbolTable table;
  protected SingleFeatureValue featureValue;
 
  public ArcDirFeature(SymbolTableHandler tableHandler) throws MaltChainedException {
    super();
    featureValue = new SingleFeatureValue(this);
    setTableHandler(tableHandler);
  }
View Full Code Here

  private final SingleFeatureValue singleFeatureValue;
 
  public Merge3Feature(DataFormatInstance dataFormatInstance) throws MaltChainedException {
    super();
    setDataFormatInstance(dataFormatInstance);
    singleFeatureValue = new SingleFeatureValue(this);
  }
View Full Code Here

  protected SymbolTable table;
  protected SingleFeatureValue featureValue;
 
  public ExistsFeature(SymbolTableHandler tableHandler) throws MaltChainedException {
    super();
    featureValue = new SingleFeatureValue(this);
    setTableHandler(tableHandler);
  }
View Full Code Here

  protected Map<Integer,String> normalization;
 
 
  public DistanceFeature(SymbolTableHandler tableHandler) throws MaltChainedException {
    super();
    featureValue = new SingleFeatureValue(this);
    setTableHandler(tableHandler);
    normalization = new LinkedHashMap<Integer,String>();
  }
View Full Code Here

 
  public InputArcDirFeature(DataFormatInstance dataFormatInstance, SymbolTableHandler tableHandler) throws MaltChainedException {
    super();
    setDataFormatInstance(dataFormatInstance);
    setTableHandler(tableHandler);
    setFeatureValue(new SingleFeatureValue(this));
  }
View Full Code Here

TOP

Related Classes of org.maltparserx.core.feature.value.SingleFeatureValue

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.