Examples of LanguageFS


Examples of org.apache.uima.alchemy.ts.language.LanguageFS

import org.apache.uima.jcas.JCas;

public class LanguageProcessor implements AlchemyOutputProcessor {

  public void process(JCas cas, Results results) throws Exception {
    LanguageFS languageFS = new LanguageFS(cas);
    Type type = languageFS.getType();
    LanguageDetectionResults languageDetectionResults = (LanguageDetectionResults) results;
    languageFS.setFeatureValueFromString(type.getFeatureByBaseName("language"),
            languageDetectionResults.getLanguage());
    languageFS.setFeatureValueFromString(type.getFeatureByBaseName("iso6391"),
            languageDetectionResults.getIso6391());
    languageFS.setFeatureValueFromString(type.getFeatureByBaseName("iso6392"),
            languageDetectionResults.getIso6392());
    languageFS.setFeatureValueFromString(type.getFeatureByBaseName("iso6393"),
            languageDetectionResults.getIso6393());
    languageFS.setFeatureValueFromString(type.getFeatureByBaseName("ethnologue"),
            languageDetectionResults.getEthnologue());
    languageFS.setFeatureValueFromString(type.getFeatureByBaseName("nativeSpeakers"),
            languageDetectionResults.getNativeSpeakers());
    languageFS.setFeatureValueFromString(type.getFeatureByBaseName("wikipedia"),
            languageDetectionResults.getWikipedia());
    languageFS.addToIndexes();
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.