Package org.apache.lucene.util
Class GrowableByteArrayDataOutput
java.lang.Object
org.apache.lucene.store.DataOutput
org.apache.lucene.util.GrowableByteArrayDataOutput
A
DataOutput that can be used to build a byte[].-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionGrowableByteArrayDataOutput(int cp) Create aGrowableByteArrayDataOutputwith the given initial capacity. -
Method Summary
Modifier and TypeMethodDescriptionvoidwriteByte(byte b) Writes a single byte.voidwriteBytes(byte[] b, int off, int len) Writes an array of bytes.Methods inherited from class org.apache.lucene.store.DataOutput
copyBytes, writeBytes, writeInt, writeLong, writeShort, writeString, writeStringSet, writeStringStringMap, writeVInt, writeVLong
-
Field Details
-
bytes
public byte[] bytesThe bytes -
length
public int lengthThe length
-
-
Constructor Details
-
GrowableByteArrayDataOutput
public GrowableByteArrayDataOutput(int cp) Create aGrowableByteArrayDataOutputwith the given initial capacity.
-
-
Method Details
-
writeByte
public void writeByte(byte b) Description copied from class:DataOutputWrites a single byte.The most primitive data type is an eight-bit byte. Files are accessed as sequences of bytes. All other data types are defined as sequences of bytes, so file formats are byte-order independent.
- Specified by:
writeBytein classDataOutput- See Also:
-
writeBytes
public void writeBytes(byte[] b, int off, int len) Description copied from class:DataOutputWrites an array of bytes.- Specified by:
writeBytesin classDataOutput- Parameters:
b- the bytes to writeoff- the offset in the byte arraylen- the number of bytes to write- See Also:
-