Package org.apache.lucene.store
Class GrowableByteArrayDataOutput
- java.lang.Object
-
- org.apache.lucene.store.DataOutput
-
- org.apache.lucene.store.GrowableByteArrayDataOutput
-
public final class GrowableByteArrayDataOutput extends DataOutput
ADataOutputthat can be used to build a byte[].- NOTE: This API is for internal purposes only and might change in incompatible ways in the next release.
-
-
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 byte[]getBytes()intgetPosition()voidreset()voidwriteByte(byte b)Writes a single byte.voidwriteBytes(byte[] b, int off, int len)Writes an array of bytes.voidwriteString(String string)Writes a string.-
Methods inherited from class org.apache.lucene.store.DataOutput
copyBytes, writeBytes, writeInt, writeLong, writeMapOfStrings, writeSetOfStrings, writeShort, writeVInt, writeVLong, writeZInt, writeZLong
-
-
-
-
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)
-
writeString
public void writeString(String string) throws IOException
Description copied from class:DataOutputWrites a string.Writes strings as UTF-8 encoded bytes. First the length, in bytes, is written as a
VInt, followed by the bytes.- Overrides:
writeStringin classDataOutput- Throws:
IOException- See Also:
DataInput.readString()
-
getBytes
public byte[] getBytes()
-
getPosition
public int getPosition()
-
reset
public void reset()
-
-