Package org.apache.lucene.store
Class GrowableByteArrayDataOutput
- java.lang.Object
-
- org.apache.lucene.store.DataOutput
-
- org.apache.lucene.store.GrowableByteArrayDataOutput
-
- All Implemented Interfaces:
Accountable
public final class GrowableByteArrayDataOutput extends DataOutput implements Accountable
ADataOutputthat can be used to build a byte[].
-
-
Field Summary
Fields Modifier and Type Field Description private byte[]bytesThe bytesprivate intlengthThe length(package private) static intMIN_UTF8_SIZE_TO_ENABLE_DOUBLE_PASS_ENCODINGMinimum utf8 byte size of a string over which double pass over string is to save memory during encodeprivate byte[]scratchBytes-
Fields inherited from interface org.apache.lucene.util.Accountable
NULL_ACCOUNTABLE
-
-
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()longramBytesUsed()Return the memory usage of this object in bytes.voidreset()voidwriteByte(byte b)Writes a single byte.voidwriteBytes(byte[] b, int off, int len)Writes an array of bytes.voidwriteString(java.lang.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
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.lucene.util.Accountable
getChildResources
-
-
-
-
Field Detail
-
MIN_UTF8_SIZE_TO_ENABLE_DOUBLE_PASS_ENCODING
static final int MIN_UTF8_SIZE_TO_ENABLE_DOUBLE_PASS_ENCODING
Minimum utf8 byte size of a string over which double pass over string is to save memory during encode- See Also:
- Constant Field Values
-
bytes
private byte[] bytes
The bytes
-
length
private int length
The length
-
scratchBytes
private byte[] scratchBytes
-
-
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(java.lang.String string) throws java.io.IOExceptionDescription 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:
java.io.IOException- See Also:
DataInput.readString()
-
getBytes
public byte[] getBytes()
-
getPosition
public int getPosition()
-
reset
public void reset()
-
ramBytesUsed
public long ramBytesUsed()
Description copied from interface:AccountableReturn the memory usage of this object in bytes. Negative values are illegal.- Specified by:
ramBytesUsedin interfaceAccountable
-
-