List of usage examples for org.apache.lucene.util BytesRefBuilder copyChars
public void copyChars(char[] text, int off, int len)
From source file:org.apache.solr.codecs.onsql.ONSQLUtil.java
License:Apache License
public static void write(DataOutput out, String s, BytesRefBuilder scratch) throws IOException { scratch.copyChars(s, 0, s.length()); write(out, scratch.get());//from www. j a v a 2 s .c o m }