Package org.apache.uima.jcas.cas

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


  public static ShortArrayFS createShortArray(JCas aJCas, Collection<Short> aCollection) {
    return fillArrayFS(new ShortArray(aJCas, aCollection.size()), aCollection);
  }

  public static ShortArrayFS createShortArray(JCas aJCas, short[] aArray) {
    return fillArrayFS(new ShortArray(aJCas, aArray.length), aArray);
  }
View Full Code Here

TOP

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

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.