Class ByteStringBuilder
- java.lang.Object
-
- org.forgerock.opendj.ldap.ByteStringBuilder
-
- All Implemented Interfaces:
Comparable<ByteSequence>
,ByteSequence
public final class ByteStringBuilder extends Object implements ByteSequence
A mutable sequence of bytes backed by a byte array.
-
-
Field Summary
Fields Modifier and Type Field Description static int
MAX_COMPACT_SIZE
Maximum size in bytes of a compact encoded value.-
Fields inherited from interface org.forgerock.opendj.ldap.ByteSequence
COMPARATOR
-
-
Constructor Summary
Constructors Constructor Description ByteStringBuilder()
Creates a new byte string builder with an initial capacity of 32 bytes.ByteStringBuilder(int capacity)
Creates a new byte string builder with the specified initial capacity.ByteStringBuilder(ByteSequence bs)
Creates a new byte string builder with the content of the provided ByteSequence.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ByteStringBuilder
appendBerLength(int length)
Appends the ASN.1 BER length encoding representation of the provided integer to this byte string builder.ByteStringBuilder
appendByte(int b)
Appends the provided byte to this byte string builder.ByteStringBuilder
appendBytes(byte[] bytes)
Appends the provided byte array to this byte string builder.ByteStringBuilder
appendBytes(byte[] bytes, int offset, int length)
Appends the provided byte array to this byte string builder.void
appendBytes(DataInput stream, int length)
Appends the providedDataInput
to this byte string builder.int
appendBytes(InputStream stream, int length)
Appends the providedInputStream
to this byte string builder.ByteStringBuilder
appendBytes(ByteBuffer buffer)
Appends the providedByteBuffer
to this byte string builder.ByteStringBuilder
appendBytes(ByteBuffer buffer, int length)
Appends the providedByteBuffer
to this byte string builder.ByteStringBuilder
appendBytes(ByteSequence bytes)
Appends the providedByteSequence
to this byte string builder.ByteStringBuilder
appendBytes(ByteSequenceReader reader, int length)
Appends the providedByteSequenceReader
to this byte string builder.ByteStringBuilder
appendCompactUnsigned(long value)
Appends the compact encoded bytes of the provided unsigned long to this byte string builder.ByteStringBuilder
appendInt(int i)
Appends the big-endian encoded bytes of the provided integer to this byte string builder.ByteStringBuilder
appendLong(long l)
Appends the big-endian encoded bytes of the provided long to this byte string builder.ByteStringBuilder
appendObject(Object o)
Appends the byte string representation of the provided object to this byte string builder.ByteStringBuilder
appendShort(int i)
Appends the big-endian encoded bytes of the provided short to this byte string builder.ByteStringBuilder
appendUtf8(char[] chars)
Appends the UTF-8 encoded bytes of the provided char array to this byte string builder.ByteStringBuilder
appendUtf8(String s)
Appends the UTF-8 encoded bytes of the provided string to this byte string builder.OutputStream
asOutputStream()
Returns anOutputStream
whose write operations append data to this byte string builder.ByteSequenceReader
asReader()
Returns aByteSequenceReader
which can be used to incrementally read and decode data from this byte string builder.byte
byteAt(int index)
Returns the byte value at the specified index.int
capacity()
Returns the current capacity of this byte string builder.ByteStringBuilder
clear()
Sets the length of this byte string builder to zero.ByteStringBuilder
clearAndTruncate(int thresholdCapacity, int newCapacity)
Sets the length of this byte string builder to zero, and resets the capacity to the specified size if above provided threshold.ByteStringBuilder
compact(int index)
Compacts this byte string builder so that all the bytes betweenindex
and the end of the builder are relocated to the front of the builder.ByteStringBuilder
compact(int index, int length)
Compacts this byte string builder so thatlength
bytes beginning at indexindex
are relocated to the front of the builder.int
compareTo(byte[] bytes, int offset, int length)
Compares this byte sequence with the specified byte array subsequence for order.int
compareTo(ByteSequence o)
Compares this byte sequence with the specified byte sequence for order.byte[]
copyTo(byte[] bytes)
Copies the contents of this byte sequence to the provided byte array.byte[]
copyTo(byte[] bytes, int offset)
Copies the contents of this byte sequence to the specified location in the provided byte array.OutputStream
copyTo(OutputStream stream)
Copies the entire contents of this byte sequence to the providedOutputStream
.ByteBuffer
copyTo(ByteBuffer byteBuffer)
Appends the content of this byte sequence to the providedByteBuffer
starting at it's current position.int
copyTo(WritableByteChannel channel)
Copies the entire contents of this byte string to the providedWritableByteChannel
.boolean
copyTo(CharBuffer charBuffer, CharsetDecoder decoder)
Appends the content of this byte sequence decoded using provided charset decoder to the providedCharBuffer
starting at it's current position.ByteStringBuilder
copyTo(ByteStringBuilder builder)
Appends the entire contents of this byte sequence to the providedByteStringBuilder
.ByteStringBuilder
ensureAdditionalCapacity(int size)
Ensures that the specified number of additional bytes will fit in this byte string builder and resizes it if necessary.boolean
equals(byte[] bytes, int offset, int length)
Indicates whether the provided byte array subsequence is equal to this byte sequence.boolean
equals(Object o)
Indicates whether the provided object is equal to this byte string builder.byte[]
getBackingArray()
Returns the byte array that backs this byte string builder.int
hashCode()
Returns a hash code for this byte string builder.boolean
isEmpty()
Returnstrue
if this byte sequence has a length of zero.int
length()
Returns the length of this byte sequence.void
setByte(int index, byte b)
Sets the byte value at the specified index.ByteStringBuilder
setLength(int newLength)
Sets the length of this byte string builder.boolean
startsWith(ByteSequence prefix)
Tests if this ByteSequence starts with the specified prefix.ByteSequence
subSequence(int start)
Returns a new byte sequence that is a subsequence of this byte sequence.ByteSequence
subSequence(int start, int size)
Returns a new byte sequence that is a subsequence of this byte sequence.String
toBase64String()
Returns the Base64 encoded string representation of this byte string.byte[]
toByteArray()
Returns a byte array containing the bytes in this sequence in the same order as this sequence.ByteBuffer
toByteBuffer()
Returns the read-onlyByteBuffer
representation of this byte string builder.ByteString
toByteString()
Returns theByteString
representation of this byte string builder.String
toString()
Returns the UTF-8 decoded string representation of this byte sequence.ByteStringBuilder
trimToSize()
Attempts to reduce storage used for this byte string builder.
-
-
-
Field Detail
-
MAX_COMPACT_SIZE
public static final int MAX_COMPACT_SIZE
Maximum size in bytes of a compact encoded value.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ByteStringBuilder
public ByteStringBuilder()
Creates a new byte string builder with an initial capacity of 32 bytes.
-
ByteStringBuilder
public ByteStringBuilder(int capacity)
Creates a new byte string builder with the specified initial capacity.- Parameters:
capacity
- The initial capacity.- Throws:
IllegalArgumentException
- If thecapacity
is negative.
-
ByteStringBuilder
public ByteStringBuilder(ByteSequence bs)
Creates a new byte string builder with the content of the provided ByteSequence. Its capacity is set to the length of the provided ByteSequence.- Parameters:
bs
- The ByteSequence to copy
-
-
Method Detail
-
appendByte
public ByteStringBuilder appendByte(int b)
Appends the provided byte to this byte string builder.Note: this method accepts an
int
for ease of reading and writing.This method only keeps the lowest 8-bits of the provided
int
. Higher bits will be truncated. This method performs the equivalent of:int i = ...; int i8bits = i & 0xFF; // only use "i8bits"
int i = ...; byte b = (byte) i; // only use "b"
- Parameters:
b
- The byte to be appended to this byte string builder.- Returns:
- This byte string builder.
-
appendBytes
public ByteStringBuilder appendBytes(byte[] bytes)
Appends the provided byte array to this byte string builder.An invocation of the form:
src.append(bytes)
Behaves in exactly the same way as the invocation:src.append(bytes, 0, bytes.length);
- Parameters:
bytes
- The byte array to be appended to this byte string builder.- Returns:
- This byte string builder.
-
appendBytes
public ByteStringBuilder appendBytes(byte[] bytes, int offset, int length)
Appends the provided byte array to this byte string builder.- Parameters:
bytes
- The byte array to be appended to this byte string builder.offset
- The offset of the byte array to be used; must be non-negative and no larger thanbytes.length
.length
- The length of the byte array to be used; must be non-negative and no larger thanbytes.length - offset
.- Returns:
- This byte string builder.
- Throws:
IndexOutOfBoundsException
- Ifoffset
is negative or iflength
is negative or ifoffset + length
is greater thanbytes.length
.
-
appendBytes
public ByteStringBuilder appendBytes(ByteBuffer buffer)
Appends the providedByteBuffer
to this byte string builder.- Parameters:
buffer
- The byte buffer to be appended to this byte string builder.- Returns:
- This byte string builder.
-
appendBytes
public ByteStringBuilder appendBytes(ByteBuffer buffer, int length)
Appends the providedByteBuffer
to this byte string builder.- Parameters:
buffer
- The byte buffer to be appended to this byte string builder.length
- The number of bytes to be appended frombuffer
.- Returns:
- This byte string builder.
- Throws:
IndexOutOfBoundsException
- Iflength
is less than zero or greater thanbuffer.remaining()
.
-
appendBytes
public ByteStringBuilder appendBytes(ByteSequence bytes)
Appends the providedByteSequence
to this byte string builder.- Parameters:
bytes
- The byte sequence to be appended to this byte string builder.- Returns:
- This byte string builder.
-
appendBytes
public ByteStringBuilder appendBytes(ByteSequenceReader reader, int length)
Appends the providedByteSequenceReader
to this byte string builder.- Parameters:
reader
- The byte sequence reader to be appended to this byte string builder.length
- The number of bytes to be appended fromreader
.- Returns:
- This byte string builder.
- Throws:
IndexOutOfBoundsException
- Iflength
is less than zero or greater thanreader.remaining()
.
-
appendUtf8
public ByteStringBuilder appendUtf8(char[] chars)
Appends the UTF-8 encoded bytes of the provided char array to this byte string builder.- Parameters:
chars
- The char array whose UTF-8 encoding is to be appended to this byte string builder.- Returns:
- This byte string builder.
-
appendBytes
public void appendBytes(DataInput stream, int length) throws EOFException, IOException
Appends the providedDataInput
to this byte string builder.- Parameters:
stream
- The data input stream to be appended to this byte string builder.length
- The maximum number of bytes to be appended fromstream
.- Throws:
IndexOutOfBoundsException
- Iflength
is less than zero.EOFException
- If this stream reaches the end before reading all the bytes.IOException
- If an I/O error occurs.
-
appendBytes
public int appendBytes(InputStream stream, int length) throws IOException
Appends the providedInputStream
to this byte string builder.- Parameters:
stream
- The input stream to be appended to this byte string builder.length
- The maximum number of bytes to be appended frombuffer
.- Returns:
- The number of bytes read from the input stream, or
-1
if the end of the input stream has been reached. - Throws:
IndexOutOfBoundsException
- Iflength
is less than zero.IOException
- If an I/O error occurs.
-
appendInt
public ByteStringBuilder appendInt(int i)
Appends the big-endian encoded bytes of the provided integer to this byte string builder.- Parameters:
i
- The integer whose big-endian encoding is to be appended to this byte string builder.- Returns:
- This byte string builder.
-
appendLong
public ByteStringBuilder appendLong(long l)
Appends the big-endian encoded bytes of the provided long to this byte string builder.- Parameters:
l
- The long whose big-endian encoding is to be appended to this byte string builder.- Returns:
- This byte string builder.
-
appendCompactUnsigned
public ByteStringBuilder appendCompactUnsigned(long value)
Appends the compact encoded bytes of the provided unsigned long to this byte string builder. This method allows to encode unsigned long up to 56 bits using fewer bytes (from 1 to 8) than append(long). The encoding has the important property that it preserves ordering, so it can be used for keys.- Parameters:
value
- The long whose compact encoding is to be appended to this byte string builder.- Returns:
- This byte string builder.
-
appendObject
public ByteStringBuilder appendObject(Object o)
Appends the byte string representation of the provided object to this byte string builder. The object is converted to a byte string as follows:- if the object is an instance of
ByteSequence
then this method is equivalent to callingappendBytes(ByteSequence)
- if the object is a
byte[]
then this method is equivalent to callingappendBytes(byte[])
- if the object is a
char[]
then this method is equivalent to callingappendUtf8(char[])
- for all other types of object this method is equivalent to calling
appendUtf8(String)
with thetoString()
representation of the provided object.
Long
andInteger
objects like any other type ofObject
. More specifically, the following invocations are not equivalent:append(0)
is not equivalent toappend((Object) 0)
append(0L)
is not equivalent toappend((Object) 0L)
- Parameters:
o
- The object to be appended to this byte string builder.- Returns:
- This byte string builder.
- if the object is an instance of
-
appendShort
public ByteStringBuilder appendShort(int i)
Appends the big-endian encoded bytes of the provided short to this byte string builder.Note: this method accepts an
int
for ease of reading and writing.This method only keeps the lowest 16-bits of the provided
int
. Higher bits will be truncated. This method performs the equivalent of:int i = ...; int i16bits = i & 0xFFFF; // only use "i16bits"
int i = ...; short s = (short) i; // only use "s"
- Parameters:
i
- The short whose big-endian encoding is to be appended to this byte string builder.- Returns:
- This byte string builder.
-
appendUtf8
public ByteStringBuilder appendUtf8(String s)
Appends the UTF-8 encoded bytes of the provided string to this byte string builder.- Parameters:
s
- The string whose UTF-8 encoding is to be appended to this byte string builder.- Returns:
- This byte string builder.
-
appendBerLength
public ByteStringBuilder appendBerLength(int length)
Appends the ASN.1 BER length encoding representation of the provided integer to this byte string builder.- Parameters:
length
- The value to encode using the BER length encoding rules.- Returns:
- This byte string builder.
-
asOutputStream
public OutputStream asOutputStream()
Returns anOutputStream
whose write operations append data to this byte string builder. The returned output stream will never throw anIOException
and itsclose
method does not do anything.- Returns:
- An
OutputStream
whose write operations append data to this byte string builder.
-
asReader
public ByteSequenceReader asReader()
Returns aByteSequenceReader
which can be used to incrementally read and decode data from this byte string builder.NOTE: all concurrent updates to this byte string builder are supported with the exception of
clear()
. Any invocations ofclear()
must be accompanied by a subsequent call toByteSequenceReader.rewind()
.- Specified by:
asReader
in interfaceByteSequence
- Returns:
- The
ByteSequenceReader
which can be used to incrementally read and decode data from this byte string builder. - See Also:
clear()
-
byteAt
public byte byteAt(int index)
Description copied from interface:ByteSequence
Returns the byte value at the specified index.An index ranges from zero to
length() - 1
. The first byte value of the sequence is at index zero, the next at index one, and so on, as for array indexing.- Specified by:
byteAt
in interfaceByteSequence
- Parameters:
index
- The index of the byte to be returned.- Returns:
- The byte value at the specified index.
-
capacity
public int capacity()
Returns the current capacity of this byte string builder. The capacity may increase as more data is appended.- Returns:
- The current capacity of this byte string builder.
-
clear
public ByteStringBuilder clear()
Sets the length of this byte string builder to zero.NOTE: if this method is called, then
ByteSequenceReader.rewind()
must also be called on any associated byte sequence readers in order for them to remain valid.- Returns:
- This byte string builder.
- See Also:
asReader()
-
clearAndTruncate
public ByteStringBuilder clearAndTruncate(int thresholdCapacity, int newCapacity)
Sets the length of this byte string builder to zero, and resets the capacity to the specified size if above provided threshold.NOTE: if this method is called, then
ByteSequenceReader.rewind()
must also be called on any associated byte sequence readers in order for them to remain valid.- Parameters:
thresholdCapacity
- The threshold capacity triggering a truncatenewCapacity
- The new capacity.- Returns:
- This byte string builder.
- Throws:
IllegalArgumentException
- If thenewCapacity
is negative or thenewCapacity
is bigger than thethresholdCapacity
.- See Also:
asReader()
-
compact
public ByteStringBuilder compact(int index)
Compacts this byte string builder so that all the bytes betweenindex
and the end of the builder are relocated to the front of the builder. That is to say that the byte atindex
will end up at index0
, the byte atindex+1
at index1
, and so on. The final length of the builder will belength() - index
.- Parameters:
index
- The index of the first byte to be moved.- Returns:
- This byte string builder.
- Throws:
IndexOutOfBoundsException
- Ifindex
is negative or not less thanlength()
.
-
compact
public ByteStringBuilder compact(int index, int length)
Compacts this byte string builder so thatlength
bytes beginning at indexindex
are relocated to the front of the builder. That is to say that the byte atindex
will end up at index0
, the byte atindex+1
at index1
, and so on. The final length of the builder will belength
.- Parameters:
index
- The index of the first byte to be moved.length
- The number of bytes to be moved.- Returns:
- This byte string builder.
- Throws:
IndexOutOfBoundsException
- Ifindex
is negative or ifindex + length
is greater thanlength()
.
-
compareTo
public int compareTo(byte[] bytes, int offset, int length)
Description copied from interface:ByteSequence
Compares this byte sequence with the specified byte array subsequence for order. Returns a negative integer, zero, or a positive integer depending on whether this byte sequence is less than, equal to, or greater than the specified byte array subsequence.- Specified by:
compareTo
in interfaceByteSequence
- Parameters:
bytes
- The byte array to compare.offset
- The offset of the subsequence in the byte array to be compared; must be non-negative and no larger thanbytes.length
.length
- The length of the subsequence in the byte array to be compared; must be non-negative and no larger thanbytes.length - offset
.- Returns:
- A negative integer, zero, or a positive integer depending on whether this byte sequence is less than, equal to, or greater than the specified byte array subsequence.
-
compareTo
public int compareTo(ByteSequence o)
Description copied from interface:ByteSequence
Compares this byte sequence with the specified byte sequence for order. Returns a negative integer, zero, or a positive integer depending on whether this byte sequence is less than, equal to, or greater than the specified object.- Specified by:
compareTo
in interfaceByteSequence
- Specified by:
compareTo
in interfaceComparable<ByteSequence>
- Parameters:
o
- The byte sequence to be compared.- Returns:
- A negative integer, zero, or a positive integer depending on whether this byte sequence is less than, equal to, or greater than the specified object.
-
copyTo
public byte[] copyTo(byte[] bytes)
Description copied from interface:ByteSequence
Copies the contents of this byte sequence to the provided byte array.Copying will stop when either the entire content of this sequence has been copied or if the end of the provided byte array has been reached.
An invocation of the form:
src.copyTo(bytes)
Behaves in exactly the same way as the invocation:src.copyTo(bytes, 0);
- Specified by:
copyTo
in interfaceByteSequence
- Parameters:
bytes
- The byte array to which bytes are to be copied.- Returns:
- The byte array.
-
copyTo
public byte[] copyTo(byte[] bytes, int offset)
Description copied from interface:ByteSequence
Copies the contents of this byte sequence to the specified location in the provided byte array.Copying will stop when either the entire content of this sequence has been copied or if the end of the provided byte array has been reached.
An invocation of the form:
src.copyTo(bytes, offset)
Behaves in exactly the same way as the invocation:int len = Math.min(src.length(), bytes.length - offset); for (int i = 0; i < len; i++) bytes[offset + i] = src.get(i);
Except that it is potentially much more efficient.- Specified by:
copyTo
in interfaceByteSequence
- Parameters:
bytes
- The byte array to which bytes are to be copied.offset
- The offset within the array of the first byte to be written; must be non-negative and no larger than bytes.length.- Returns:
- The byte array.
-
copyTo
public ByteBuffer copyTo(ByteBuffer byteBuffer)
Description copied from interface:ByteSequence
Appends the content of this byte sequence to the providedByteBuffer
starting at it's current position. The position of the buffer is then incremented by the length of this sequence.- Specified by:
copyTo
in interfaceByteSequence
- Parameters:
byteBuffer
- The buffer to copy to. It must be large enough to receive all bytes.- Returns:
- The buffer.
-
copyTo
public ByteStringBuilder copyTo(ByteStringBuilder builder)
Description copied from interface:ByteSequence
Appends the entire contents of this byte sequence to the providedByteStringBuilder
.- Specified by:
copyTo
in interfaceByteSequence
- Parameters:
builder
- The builder to copy to.- Returns:
- The builder.
-
copyTo
public boolean copyTo(CharBuffer charBuffer, CharsetDecoder decoder)
Description copied from interface:ByteSequence
Appends the content of this byte sequence decoded using provided charset decoder to the providedCharBuffer
starting at it's current position. The position of charBuffer is then incremented by the length of this sequence.- Specified by:
copyTo
in interfaceByteSequence
- Parameters:
charBuffer
- The buffer to copy to, if decoding is successful. It must be large enough to receive all decoded characters.decoder
- The charset decoder to use for decoding.- Returns:
true
if byte string was successfully decoded and charBuffer is large enough to receive the resulting string,false
otherwise
-
copyTo
public OutputStream copyTo(OutputStream stream) throws IOException
Description copied from interface:ByteSequence
Copies the entire contents of this byte sequence to the providedOutputStream
.- Specified by:
copyTo
in interfaceByteSequence
- Parameters:
stream
- TheOutputStream
to copy to.- Returns:
- The
OutputStream
. - Throws:
IOException
- If an error occurs while writing to theOutputStream
.
-
copyTo
public int copyTo(WritableByteChannel channel) throws IOException
Copies the entire contents of this byte string to the providedWritableByteChannel
.- Parameters:
channel
- TheWritableByteChannel
to copy to.- Returns:
- The number of bytes written, possibly zero
- Throws:
IOException
- If some other I/O error occurs- See Also:
WritableByteChannel.write(java.nio.ByteBuffer)
-
ensureAdditionalCapacity
public ByteStringBuilder ensureAdditionalCapacity(int size)
Ensures that the specified number of additional bytes will fit in this byte string builder and resizes it if necessary.- Parameters:
size
- The number of additional bytes.- Returns:
- This byte string builder.
-
equals
public boolean equals(byte[] bytes, int offset, int length)
Description copied from interface:ByteSequence
Indicates whether the provided byte array subsequence is equal to this byte sequence. In order for it to be considered equal, the provided byte array subsequence must contain the same bytes in the same order.- Specified by:
equals
in interfaceByteSequence
- Parameters:
bytes
- The byte array for which to make the determination.offset
- The offset of the subsequence in the byte array to be compared; must be non-negative and no larger thanbytes.length
.length
- The length of the subsequence in the byte array to be compared; must be non-negative and no larger thanbytes.length - offset
.- Returns:
true
if the content of the provided byte array subsequence is equal to that of this byte sequence, orfalse
if not.
-
equals
public boolean equals(Object o)
Indicates whether the provided object is equal to this byte string builder. In order for it to be considered equal, the provided object must be a byte sequence containing the same bytes in the same order.- Specified by:
equals
in interfaceByteSequence
- Overrides:
equals
in classObject
- Parameters:
o
- The object for which to make the determination.- Returns:
true
if the provided object is a byte sequence whose content is equal to that of this byte string builder, orfalse
if not.
-
getBackingArray
public byte[] getBackingArray()
Returns the byte array that backs this byte string builder. Modifications to this byte string builder's content may cause the returned array's content to be modified, and vice versa.Note that the length of the returned array is only guaranteed to be the same as the length of this byte string builder immediately after a call to
trimToSize()
.In addition, subsequent modifications to this byte string builder may cause the backing byte array to be reallocated thus decoupling the returned byte array from this byte string builder.
- Returns:
- The byte array that backs this byte string builder.
-
hashCode
public int hashCode()
Returns a hash code for this byte string builder. It will be the sum of all of the bytes contained in the byte string builder.NOTE: subsequent changes to this byte string builder will invalidate the returned hash code.
- Specified by:
hashCode
in interfaceByteSequence
- Overrides:
hashCode
in classObject
- Returns:
- A hash code for this byte string builder.
-
isEmpty
public boolean isEmpty()
Description copied from interface:ByteSequence
Returnstrue
if this byte sequence has a length of zero.- Specified by:
isEmpty
in interfaceByteSequence
- Returns:
true
if this byte sequence has a length of zero.
-
length
public int length()
Description copied from interface:ByteSequence
Returns the length of this byte sequence.- Specified by:
length
in interfaceByteSequence
- Returns:
- The length of this byte sequence.
-
setByte
public void setByte(int index, byte b)
Sets the byte value at the specified index.An index ranges from zero to
length() - 1
. The first byte value of the sequence is at index zero, the next at index one, and so on, as for array indexing.- Parameters:
index
- The index of the byte to be set.b
- The byte to set on this byte string builder.- Throws:
IndexOutOfBoundsException
- If the index argument is negative or not less than length().
-
setLength
public ByteStringBuilder setLength(int newLength)
Sets the length of this byte string builder.If the
newLength
argument is less than the current length, the length is changed to the specified length.If the
newLength
argument is greater than or equal to the current length, then the capacity is increased and sufficient null bytes are appended so that length becomes thenewLength
argument.The
newLength
argument must be greater than or equal to0
.- Parameters:
newLength
- The new length.- Returns:
- This byte string builder.
- Throws:
IndexOutOfBoundsException
- If thenewLength
argument is negative.
-
subSequence
public ByteSequence subSequence(int start)
Returns a new byte sequence that is a subsequence of this byte sequence.The subsequence starts with the byte value at the specified
start
index and ends with the last byte value. The length (in bytes) of the returned sequence islength() - start
, so ifstart == length()
then an empty sequence is returned.NOTE: the returned subsequence will be robust against all updates to the byte string builder except for invocations of the method
clear()
. If a permanent immutable byte sequence is required then callers should invoketoByteString()
on the returned byte sequence.- Specified by:
subSequence
in interfaceByteSequence
- Parameters:
start
- The start index, inclusive.- Returns:
- The newly created byte subsequence.
-
subSequence
public ByteSequence subSequence(int start, int size)
Returns a new byte sequence that is a subsequence of this byte sequence.The subsequence starts with the byte value at the specified
start
index and withsize
.NOTE: the returned subsequence will be robust against all updates to the byte string builder except for invocations of the method
clear()
. If a permanent immutable byte sequence is required then callers should invoketoByteString()
on the returned byte sequence.- Specified by:
subSequence
in interfaceByteSequence
- Parameters:
start
- The start index, inclusive.size
- The subsequence length.- Returns:
- The newly created byte subsequence.
-
startsWith
public boolean startsWith(ByteSequence prefix)
Description copied from interface:ByteSequence
Tests if this ByteSequence starts with the specified prefix.- Specified by:
startsWith
in interfaceByteSequence
- Parameters:
prefix
- The prefix.- Returns:
- true if the byte sequence represented by the argument is a prefix of the byte sequence represented by this ByteSequence; false otherwise. Note also that true will be returned if the argument is an empty sequence or is equal to this ByteSequence object as determined by the equals(Object) method.
-
toBase64String
public String toBase64String()
Description copied from interface:ByteSequence
Returns the Base64 encoded string representation of this byte string.- Specified by:
toBase64String
in interfaceByteSequence
- Returns:
- The Base64 encoded string representation of this byte string.
- See Also:
ByteString.valueOfBase64(String)
-
toByteArray
public byte[] toByteArray()
Description copied from interface:ByteSequence
Returns a byte array containing the bytes in this sequence in the same order as this sequence. The length of the byte array will be the length of this sequence.An invocation of the form:
src.toByteArray()
Behaves in exactly the same way as the invocation:src.copyTo(new byte[src.length()]);
- Specified by:
toByteArray
in interfaceByteSequence
- Returns:
- A byte array consisting of exactly this sequence of bytes.
-
toByteString
public ByteString toByteString()
Returns theByteString
representation of this byte string builder. Subsequent changes to this byte string builder will not modify the returnedByteString
.- Specified by:
toByteString
in interfaceByteSequence
- Returns:
- The
ByteString
representation of this byte sequence.
-
toByteBuffer
public ByteBuffer toByteBuffer()
Returns the read-onlyByteBuffer
representation of this byte string builder. Because theByteBuffer
will share the same underlying byte array, subsequent changes to this byte string builder will modify the returnedByteBuffer
.- Specified by:
toByteBuffer
in interfaceByteSequence
- Returns:
- The
ByteBuffer
representation of this byte sequence.
-
toString
public String toString()
Description copied from interface:ByteSequence
Returns the UTF-8 decoded string representation of this byte sequence. If UTF-8 decoding fails, the platform's default encoding will be used.- Specified by:
toString
in interfaceByteSequence
- Overrides:
toString
in classObject
- Returns:
- The string representation of this byte sequence.
-
trimToSize
public ByteStringBuilder trimToSize()
Attempts to reduce storage used for this byte string builder. If the buffer is larger than necessary to hold its current sequence of bytes, then it may be resized to become more space efficient.- Returns:
- This byte string builder.
-
-