Package org.renjin.sexp

Examples of org.renjin.sexp.AtomicVector$AtomicVectorBuilder


    return exp instanceof StringVector;
  }

  @Override
  public Object convertToJava(SEXP value) {
    AtomicVector vector = (AtomicVector)value;
    String[] array = new String[value.length()];
    for(int i=0;i!=value.length();++i) {
      array[i] = vector.getElementAsString(i);
    }
    return array;
  }
View Full Code Here

TOP

Related Classes of org.renjin.sexp.AtomicVector$AtomicVectorBuilder

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.