List of usage examples for org.apache.lucene.store DataOutput writeBytes
public abstract void writeBytes(byte[] b, int offset, int length) throws IOException;
From source file:org.apache.blur.lucene.fst.ByteArrayPrimitive.java
License:Apache License
@Override public void writeBytes(DataOutput out, int offset, int length) throws IOException { out.writeBytes(_bytes, offset, length); }