Package org.apache.lucene.util
Class GrowableByteArrayDataOutput
- java.lang.Object
 - 
- org.apache.lucene.store.DataOutput
 - 
- org.apache.lucene.util.GrowableByteArrayDataOutput
 
 
 
- 
public final class GrowableByteArrayDataOutput extends DataOutput
ADataOutputthat can be used to build a byte[]. 
- 
- 
Constructor Summary
Constructors Constructor Description GrowableByteArrayDataOutput(int cp)Create aGrowableByteArrayDataOutputwith the given initial capacity. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidwriteByte(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 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
GrowableByteArrayDataOutput
public GrowableByteArrayDataOutput(int cp)
Create aGrowableByteArrayDataOutputwith the given initial capacity. 
 - 
 
- 
Method Detail
- 
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:
 DataInput.readByte()
 
- 
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:
 DataInput.readBytes(byte[],int,int)
 
 - 
 
 -