Example usage for org.apache.lucene.store DataOutput writeBytes

List of usage examples for org.apache.lucene.store DataOutput writeBytes

Introduction

In this page you can find the example usage for org.apache.lucene.store DataOutput writeBytes.

Prototype

public abstract void writeBytes(byte[] b, int offset, int length) throws IOException;

Source Link

Document

Writes an array of bytes.

Usage

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);
}