Package org.apache.uima.jcas.cas

Examples of org.apache.uima.jcas.cas.DoubleArray


  public static DoubleArrayFS createDoubleArray(CAS aCas, double[] aArray) {
    return fillArrayFS(aCas.createDoubleArrayFS(aArray.length), aArray);
  }

  public static DoubleArrayFS createDoubleArray(JCas aJCas, Collection<Double> aCollection) {
    return fillArrayFS(new DoubleArray(aJCas, aCollection.size()), aCollection);
  }
View Full Code Here


  public static DoubleArrayFS createDoubleArray(JCas aJCas, Collection<Double> aCollection) {
    return fillArrayFS(new DoubleArray(aJCas, aCollection.size()), aCollection);
  }

  public static DoubleArrayFS createDoubleArray(JCas aJCas, double[] aArray) {
    return fillArrayFS(new DoubleArray(aJCas, aArray.length), aArray);
  }
View Full Code Here

TOP

Related Classes of org.apache.uima.jcas.cas.DoubleArray

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.