Package org.maltparserx.core.feature.value

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


  protected Pattern separatorsPattern;
 
  public SplitFeature(DataFormatInstance dataFormatInstance) throws MaltChainedException {
    super();
    setDataFormatInstance(dataFormatInstance);
    multipleFeatureValue = new MultipleFeatureValue(this);
  }
View Full Code Here


  protected int suffixLength;

  public SuffixFeature(DataFormatInstance dataFormatInstance) throws MaltChainedException {
    super();
    setDataFormatInstance(dataFormatInstance);
    multipleFeatureValue = new MultipleFeatureValue(this);
  }
View Full Code Here

  protected int prefixLength;

  public PrefixFeature(DataFormatInstance dataFormatInstance) throws MaltChainedException {
    super();
    setDataFormatInstance(dataFormatInstance);
    multipleFeatureValue = new MultipleFeatureValue(this);
  }
View Full Code Here

TOP

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

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.