java.lang.Object
org.refcodes.serial.ByteArraySequence
- All Implemented Interfaces:
Iterable<Byte>,org.refcodes.mixin.Bytes,org.refcodes.mixin.Clearable,org.refcodes.mixin.InputStreamAccessor,org.refcodes.mixin.LengthAccessor,org.refcodes.mixin.OutputStreamAccessor,Sequence
A
ByteArraySequence implements the Sequence interface by
using chunks of byte arrays, therewith reducing array copy operations when
working with byte fields. A ByteArraySequence is a one dimensional
representation of a byte array of byte arrays (a two dimensional byte array).
Each byte array inside the byte array (of byte arrays) is called a chunk.
Using this technique we easily can create our Sequence instances
consisting of many chunks while reducing the copying and concatenating
efforts (and buffer allocations), providing for a low memory footprint.-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionclassImplements theIteratorinterface being appied to an instancoe of theByteArraySequencetype.Nested classes/interfaces inherited from interface org.refcodes.mixin.InputStreamAccessor
org.refcodes.mixin.InputStreamAccessor.InputStreamBuilder<B extends org.refcodes.mixin.InputStreamAccessor.InputStreamBuilder<?>>, org.refcodes.mixin.InputStreamAccessor.InputStreamMutator, org.refcodes.mixin.InputStreamAccessor.InputStreamPropertyNested classes/interfaces inherited from interface org.refcodes.mixin.LengthAccessor
org.refcodes.mixin.LengthAccessor.LengthBuilder<B extends org.refcodes.mixin.LengthAccessor.LengthBuilder<B>>, org.refcodes.mixin.LengthAccessor.LengthMutator, org.refcodes.mixin.LengthAccessor.LengthPropertyNested classes/interfaces inherited from interface org.refcodes.mixin.OutputStreamAccessor
org.refcodes.mixin.OutputStreamAccessor.OutputStreamBuilder<B extends org.refcodes.mixin.OutputStreamAccessor.OutputStreamBuilder<?>>, org.refcodes.mixin.OutputStreamAccessor.OutputStreamMutator, org.refcodes.mixin.OutputStreamAccessor.OutputStreamProperty -
Constructor Summary
ConstructorsConstructorDescriptionConstructs an emptyByteArraySequence.ByteArraySequence(byte aByte) Constructs aByteArraySequencefrom the provided byte.ByteArraySequence(byte... aBytes) Constructs aByteArraySequencefrom the provided byte chunk.ByteArraySequence(byte[]... aBytes) Constructs aByteArraySequencefrom the provided byte chunks.ByteArraySequence(byte[][]... aBytes) Constructs aByteArraySequencefrom the provided byte chunks.ByteArraySequence(byte[] aBytes, int aOffset, int aLength) Constructs aByteArraySequencefrom the provided byte chunk.ByteArraySequence(int aLength) Constructs aByteArraySequenceof the given initial length.ByteArraySequence(InputStream aInputStream) Constructs theByteArraySequencefrom the content of the providedInputStream.ByteArraySequence(Sequence aSequence) -
Method Summary
Modifier and TypeMethodDescriptionvoidappend(byte[] aBytes, int aOffset, int aLength) Appends the given bytes to the end of thisSequence.voidvoidempty()Empties theSequenceto end up being of length 0.booleanbytegetByteAt(int aIndex) Returns the byte at the given index in theSequence.intinthashCode()iterator()voidprepend(byte[] aBytes, int aOffset, int aLength) Prepends the given bytes to the beginning of thisSequence.voidvoidreplace(byte[] aBytes) Replaces the content of thisSequencewith the content of the given byte array.voidreplace(byte[] aBytes, int aOffset, int aLength) Replaces the given bytes with this byte array.voidvoidReplaces the given bytes with thisSequence.voidsetByteAt(int aIndex, byte aByte) Sets the byte at the given index in theSequence.toAppend(byte... aBytes) Appends the given bytes to the end of thisSequence.toAppend(byte[] aBytes, int aOffset, int aLength) Appends the given bytes to the end of thisSequence.toClone()Creates a deep clone of thisSequence.toConcatenate(org.refcodes.mixin.ConcatenateMode aConcatenateMode, byte... aBytes) Concatenates the given bytes with thisSequenceaccording to the providedConcatenateMode.toConcatenate(Sequence aSequence, org.refcodes.mixin.ConcatenateMode aConcatenateMode) byte[]toCrcBytes(long aCrcChecksum, org.refcodes.numerical.CrcAlgorithm aCrcAlgorithm, org.refcodes.numerical.Endianess aEndianess) Calculates the CRC checksum as byte array for thisSequence.byte[]toCrcBytes(org.refcodes.numerical.CrcAlgorithm aCrcAlgorithm, org.refcodes.numerical.Endianess aEndianess) Calculates the CRC checksum as byte array for thisSequence.longtoCrcChecksum(long aCrcChecksum, org.refcodes.numerical.CrcAlgorithm aCrcAlgorithm) Calculates the CRC checksum for thisSequence.longtoCrcChecksum(org.refcodes.numerical.CrcAlgorithm aCrcAlgorithm) Calculates the CRC checksum for thisSequence.toOverwrite(byte[] aBytes) Writes the given bytes into a copy of thisSequence.toOverwrite(int aOffset, byte[] aBytes, int aBytesOffset, int aLength) Writes the given bytes into a copy of thisSequence.toOverwrite(int aOffset, Sequence aSequence) Writes the given bytes into a copy of thisSequence.toOverwrite(int aOffset, Sequence aSeqquence, int aBytesOffset, int aLength) toOverwrite(Sequence aSequence) Writes the given bytes into a copy of thisSequence.toPrepend(byte... aBytes) Prepends the given bytes to the beginning of thisSequence.toPrepend(byte[] aBytes, int aOffset, int aLength) Prepends the given bytes to the beginning of thisSequence.toSequence(int aOffset, int aLength) toString()toTruncate(int aLength, org.refcodes.mixin.TruncateMode aTruncateMode) Returns a newSequencetruncated by the given number of bytes from the right or from the left of both, according to the givenTruncateMode.toTruncateHead(int aLength) Returns a newSequencetruncated by the given number of bytes from the left.toTruncateTail(int aLength) Returns a newSequencetruncated by the given number of bytes from the right.voidtruncateHead(int aLength) Truncates theSequenceby the given number of bytes from the left.voidtruncateTail(int aLength) Truncates theSequenceby the given number of bytes from the right.withAppend(byte... aBytes) Builder method for theSequence.append(byte...)method.withAppend(byte[] aBytes, int aOffset, int aLength) Builder method for theSequence.append(byte...)method.withAppend(Sequence aSequence) Builder method for theSequence.append(Sequence)method.withConcatenate(org.refcodes.mixin.ConcatenateMode aConcatenateMode, byte... aBytes) Builder method for theSequence.concatenate(ConcatenateMode, byte...)method.withConcatenate(Sequence aSequence, org.refcodes.mixin.ConcatenateMode aConcatenateMode) Builder method for theSequence.concatenate(Sequence, ConcatenateMode)method.withOverwrite(byte[] aBytes) Builder method for theSequence.overwrite(byte[])method.withOverwrite(int aOffset, byte[] aBytes) Builder method for theSequence.overwrite(int, byte[])method.withOverwrite(int aOffset, byte[] aBytes, int aBytesOffset, int aLength) Builder method for theSequence.overwrite(int, byte[], int, int)method.withOverwrite(int aOffset, Sequence aSequence) Builder method for theSequence.overwrite(int, Sequence)method.withOverwrite(int aOffset, Sequence aSequence, int aSequenceOffset, int aLength) Builder method for theSequence.overwrite(int, Sequence, int, int)method.withOverwrite(Sequence aSequence) Builder method for theSequence.overwrite(Sequence)method.withPrepend(byte... aBytes) Builder method for theSequence.prepend(byte...)method.withPrepend(byte[] aBytes, int aOffset, int aLength) Builder method for theSequence.prepend(byte...)method.withPrepend(Sequence aSequence) Builder method for theSequence.prepend(Sequence)method.withReplace(byte[] aBytes) Builder method for theSequence.replace(byte[])method.withReplace(byte[] aBytes, int aOffset, int aLength) Builder method for theSequence.replace(byte[], int, int)method.withReplace(Sequence aSequence) Builder method for theSequence.replace(Sequence)method.withReplace(Sequence aSequence, int aOffset, int aLength) Builder method for theSequence.replace(Sequence, int, int)method.withTruncate(int aLength, org.refcodes.mixin.TruncateMode aTruncateMode) Builder method for theSequence.truncate(int, TruncateMode)method.withTruncateHead(int aLength) Builder method for theSequence.truncateHead(int)method.withTruncateTail(int aLength) Builder method for theSequence.truncateTail(int)method.voidwriteTo(OutputStream aOutputStream) Writes the content of the Sequence to the providedOutputStream.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.lang.Iterable
forEach, spliteratorMethods inherited from interface org.refcodes.serial.Sequence
append, clear, clear, concatenate, concatenate, concatenate, getInputStream, getOutputStream, overwrite, overwrite, overwrite, overwrite, overwrite, overwrite, overwrite, overwrite, prepend, replace, replace, toBytes, toBytes, toBytes, toConcatenate, toHexString, toHexString, toInputStream, toOverwrite, toOverwrite, toOverwrite, truncate, withOverwrite, withOverwrite, withReplace, withReplace
-
Constructor Details
-
ByteArraySequence
public ByteArraySequence()Constructs an emptyByteArraySequence. -
ByteArraySequence
public ByteArraySequence(byte aByte) Constructs aByteArraySequencefrom the provided byte.- Parameters:
aByte- The only byte out of which theByteArraySequenceconsists.
-
ByteArraySequence
public ByteArraySequence(byte... aBytes) Constructs aByteArraySequencefrom the provided byte chunk.- Parameters:
aBytes- The only chunk out of which theByteArraySequenceconsists.
-
ByteArraySequence
public ByteArraySequence(byte[]... aBytes) Constructs aByteArraySequencefrom the provided byte chunks.- Parameters:
aBytes- The byte chunks (a two dimensional byte array) out of which theByteArraySequenceconsists.
-
ByteArraySequence
public ByteArraySequence(byte[] aBytes, int aOffset, int aLength) Constructs aByteArraySequencefrom the provided byte chunk.- Parameters:
aBytes- The only chunk out of which theByteArraySequenceconsists.aOffset- The offset from where to take the chunk data.aLength- The number of bytes to take, beginning at the provided offset.
-
ByteArraySequence
public ByteArraySequence(byte[][]... aBytes) Constructs aByteArraySequencefrom the provided byte chunks.- Parameters:
aBytes- The byte chunks (many two dimensional byte arrays) out of which theByteArraySequenceconsists.
-
ByteArraySequence
Constructs theByteArraySequencefrom the content of the providedInputStream.- Parameters:
aInputStream- TheInputStreamfrom which's data to construct this instance.- Throws:
IOException- thrown in case reading from theInputStreamcaused problems.
-
ByteArraySequence
public ByteArraySequence(int aLength) Constructs aByteArraySequenceof the given initial length.- Parameters:
aLength- The initial length of theSequence.
-
ByteArraySequence
- Parameters:
aSequence- TheSequencefrom which to take the data.
-
-
Method Details
-
append
public void append(byte[] aBytes, int aOffset, int aLength) Appends the given bytes to the end of thisSequence. Beware: ThisSequenceis modified! If you do not wish to modify thisSequence, please useSequence.toAppend(byte[], int, int). -
append
Appends the givenSequenceto the end of thisSequence. Beware: ThisSequenceis modified! If you do not wish to modify thisSequence, please useSequence.toAppend(Sequence). -
empty
public void empty()Empties theSequenceto end up being of length 0. -
equals
-
getByteAt
public byte getByteAt(int aIndex) Returns the byte at the given index in theSequence. -
getLength
public int getLength()- Specified by:
getLengthin interfaceorg.refcodes.mixin.LengthAccessor
-
hashCode
public int hashCode() -
iterator
-
prepend
public void prepend(byte[] aBytes, int aOffset, int aLength) Prepends the given bytes to the beginning of thisSequence. Beware: ThisSequenceis modified! If you do not wish to modify thisSequence, please useSequence.toPrepend(byte[], int, int). -
prepend
Prepends the givenSequenceto the beginning of thisSequence. Beware: ThisSequenceis modified! If you do not wish to modify thisSequence, please useSequence.toPrepend(Sequence). -
replace
public void replace(byte[] aBytes) Replaces the content of thisSequencewith the content of the given byte array. -
replace
-
replace
public void replace(byte[] aBytes, int aOffset, int aLength) Replaces the given bytes with this byte array. CAUTION: If possible, this method avoids array copying, so if the offset is 0 and the length the same as the byte array's length, then the given byte array is used internally! -
replace
Replaces the given bytes with thisSequence. -
setByteAt
public void setByteAt(int aIndex, byte aByte) Sets the byte at the given index in theSequence. -
toAppend
-
toAppend
-
toAppend
-
toClone
Creates a deep clone of thisSequence. -
toConcatenate
public ByteArraySequence toConcatenate(org.refcodes.mixin.ConcatenateMode aConcatenateMode, byte... aBytes) Concatenates the given bytes with thisSequenceaccording to the providedConcatenateMode. ThisSequenceis not modified and a newSequenceis returned.- Specified by:
toConcatenatein interfaceSequence- Parameters:
aConcatenateMode- The concatenation mode to be used.aBytes- The bytes to be concatenated with.- Returns:
- The according
Sequence.
-
toConcatenate
public ByteArraySequence toConcatenate(Sequence aSequence, org.refcodes.mixin.ConcatenateMode aConcatenateMode) Concatenates the givenSequencewith thisSequenceaccording to the providedConcatenateMode. ThisSequenceis not modified and a newSequenceis returned.- Specified by:
toConcatenatein interfaceSequence- Parameters:
aSequence- TheSequenceto be concatenated with.aConcatenateMode- The concatenation mode to be used.- Returns:
- The according
Sequence.
-
toCrcBytes
public byte[] toCrcBytes(org.refcodes.numerical.CrcAlgorithm aCrcAlgorithm, org.refcodes.numerical.Endianess aEndianess) Calculates the CRC checksum as byte array for thisSequence.- Specified by:
toCrcBytesin interfaceSequence- Parameters:
aCrcAlgorithm- TheCrcAlgorithmto be used when calculating the CRC checksum.aEndianess- TheEndianess(little endian or big endian) to be used for the byte array representation of the CRC checksum.- Returns:
- The CRC checksum of the
Sequence.
-
toCrcBytes
public byte[] toCrcBytes(long aCrcChecksum, org.refcodes.numerical.CrcAlgorithm aCrcAlgorithm, org.refcodes.numerical.Endianess aEndianess) Calculates the CRC checksum as byte array for thisSequence.- Specified by:
toCrcBytesin interfaceSequence- Parameters:
aCrcChecksum- The CRC checksum from which to continue calculating the checksum,aCrcAlgorithm- TheCrcAlgorithmto be used when calculating the CRC checksum.aEndianess- TheEndianess(little endian or big endian) to be used for the byte array representation of the CRC checksum.- Returns:
- The CRC checksum of the
Sequence.
-
toCrcChecksum
public long toCrcChecksum(org.refcodes.numerical.CrcAlgorithm aCrcAlgorithm) Calculates the CRC checksum for thisSequence.- Specified by:
toCrcChecksumin interfaceSequence- Parameters:
aCrcAlgorithm- TheCrcAlgorithmto be used when calculating the CRC checksum.- Returns:
- The CRC checksum of the
Sequence.
-
toCrcChecksum
public long toCrcChecksum(long aCrcChecksum, org.refcodes.numerical.CrcAlgorithm aCrcAlgorithm) Calculates the CRC checksum for thisSequence.- Specified by:
toCrcChecksumin interfaceSequence- Parameters:
aCrcChecksum- The CRC checksum from which to continue calculating the checksum,aCrcAlgorithm- TheCrcAlgorithmto be used when calculating the CRC checksum.- Returns:
- The CRC checksum of the
Sequence.
-
toPrepend
-
toPrepend
-
toPrepend
-
toSequence
Retrieves a newSequencefrom thisSequence, starting with the byte at the given offset and containing the given number of bytes.- Specified by:
toSequencein interfaceSequence- Parameters:
aOffset- The offset from where to start collecting the bytes.aLength- The length of the byte array to be returned.- Returns:
- The according
TransmissionSequenceException.
-
toString
-
toTruncate
Returns a newSequencetruncated by the given number of bytes from the right or from the left of both, according to the givenTruncateMode. If the number of bytes exceeds the actual length of theSequence, then the Sequence will end up being empty.- Specified by:
toTruncatein interfaceSequence- Parameters:
aLength- The number of bytes to truncate according to theTruncateMode.aTruncateMode- TheTruncateModeto use for truncating theSequence.- Returns:
- The newly created truncated
Sequence.
-
toTruncateHead
Returns a newSequencetruncated by the given number of bytes from the left. If the number of bytes exceeds the actual length of theSequence, then the newSequencewill end up being empty.- Specified by:
toTruncateHeadin interfaceSequence- Parameters:
aLength- The number of bytes to truncate from the left.- Returns:
- The newly created truncated
Sequence.
-
toTruncateTail
Returns a newSequencetruncated by the given number of bytes from the right. If the number of bytes exceeds the actual length of theSequence, then the newSequencewill end up being empty.- Specified by:
toTruncateTailin interfaceSequence- Parameters:
aLength- The number of bytes to truncate from the right.- Returns:
- The newly created truncated
Sequence.
-
toOverwrite
Writes the given bytes into a copy of thisSequence. If theSequenceis too small for the bytes to fit into, then theSequenceis extended accordingly.- Specified by:
toOverwritein interfaceSequence- Parameters:
aBytes- The byte array where to copy the bytes from.- Returns:
- The according
Sequence.
-
toOverwrite
public ByteArraySequence toOverwrite(int aOffset, Sequence aSeqquence, int aBytesOffset, int aLength) Writes the givenSequenceinto a copy of thisSequence. If theSequenceis too small for the bytes to fit into, then theSequenceis extended accordingly.- Specified by:
toOverwritein interfaceSequence- Parameters:
aOffset- The offset where to start writing the bytes to.aSeqquence- TheSequencewhere to copy the bytes from.aBytesOffset- The offset in theSequencewhere to start copying.aLength- The number of bytes to be copied.- Returns:
- The according
Sequence.
-
toOverwrite
Writes the given bytes into a copy of thisSequence. If theSequenceis too small for the bytes to fit into, then theSequenceis extended accordingly.- Specified by:
toOverwritein interfaceSequence- Parameters:
aOffset- The offset where to start writing the bytes to.aBytes- The byte array where to copy the bytes from.aBytesOffset- The offset in the byte array where to start copying.aLength- The number of bytes to be copied.- Returns:
- The according
Sequence.
-
toOverwrite
Writes the given bytes into a copy of thisSequence. If theSequenceis too small for the bytes to fit into, then theSequenceis extended accordingly.- Specified by:
toOverwritein interfaceSequence- Parameters:
aOffset- The offset where to start writing the bytes to.aSequence- TheSequencewhere to copy the bytes from.- Returns:
- The according
Sequence.
-
toOverwrite
Writes the given bytes into a copy of thisSequence. If theSequenceis too small for the bytes to fit into, then theSequenceis extended accordingly.- Specified by:
toOverwritein interfaceSequence- Parameters:
aSequence- TheSequencewhere to copy the bytes from.- Returns:
- The according
Sequence.
-
truncateHead
public void truncateHead(int aLength) Truncates theSequenceby the given number of bytes from the left. If the number of bytes exceeds the actual length of theSequence, then theSequencewill end up being empty.- Specified by:
truncateHeadin interfaceSequence- Parameters:
aLength- The number of bytes to truncate from the left.
-
truncateTail
public void truncateTail(int aLength) Truncates theSequenceby the given number of bytes from the right. If the number of bytes exceeds the actual length of theSequence, then theSequencewill end up being empty.- Specified by:
truncateTailin interfaceSequence- Parameters:
aLength- The number of bytes to truncate from the right.
-
withAppend
Builder method for theSequence.append(byte...)method.- Specified by:
withAppendin interfaceSequence- Parameters:
aBytes- The bytes to be appended.- Returns:
- This instance as of the builder pattern.
-
withAppend
Builder method for theSequence.append(byte...)method.- Specified by:
withAppendin interfaceSequence- Parameters:
aBytes- The bytes to be appended.aOffset- The offset from where to start collecting the bytes.aLength- The number of bytes to be appended.- Returns:
- This instance as of the builder pattern.
-
withAppend
Builder method for theSequence.append(Sequence)method.- Specified by:
withAppendin interfaceSequence- Parameters:
aSequence- TheSequenceto be appended.- Returns:
- This instance as of the builder pattern.
-
withConcatenate
public ByteArraySequence withConcatenate(org.refcodes.mixin.ConcatenateMode aConcatenateMode, byte... aBytes) Builder method for theSequence.concatenate(ConcatenateMode, byte...)method.- Specified by:
withConcatenatein interfaceSequence- Parameters:
aConcatenateMode- The concatenation mode to be used.aBytes- The bytes to be concatenated with.- Returns:
- This instance as of the builder pattern.
-
withConcatenate
public ByteArraySequence withConcatenate(Sequence aSequence, org.refcodes.mixin.ConcatenateMode aConcatenateMode) Builder method for theSequence.concatenate(Sequence, ConcatenateMode)method.- Specified by:
withConcatenatein interfaceSequence- Parameters:
aSequence- TheSequenceto be concatenated withaConcatenateMode- The concatenation mode to be used.- Returns:
- This instance as of the builder pattern.
-
withPrepend
Builder method for theSequence.prepend(byte...)method.- Specified by:
withPrependin interfaceSequence- Parameters:
aBytes- The bytes to be prepended.- Returns:
- This instance as of the builder pattern.
-
withPrepend
Builder method for theSequence.prepend(byte...)method.- Specified by:
withPrependin interfaceSequence- Parameters:
aBytes- The bytes to be prepended.aOffset- The offset from where to start collecting the bytes.aLength- The number of bytes to be prepended.- Returns:
- This instance as of the builder pattern.
-
withPrepend
Builder method for theSequence.prepend(Sequence)method.- Specified by:
withPrependin interfaceSequence- Parameters:
aSequence- TheSequenceto be prepended.- Returns:
- This instance as of the builder pattern.
-
withReplace
Builder method for theSequence.replace(byte[])method.- Specified by:
withReplacein interfaceSequence- Parameters:
aBytes- The byte array where to copy the bytes from.- Returns:
- This instance as of the builder pattern.
-
withReplace
Builder method for theSequence.replace(byte[], int, int)method.- Specified by:
withReplacein interfaceSequence- Parameters:
aBytes- The byte array where to copy the bytes from.aOffset- The offset in the byte array where to start copying.aLength- The number of bytes to be copied.- Returns:
- This instance as of the builder pattern.
-
withReplace
Builder method for theSequence.replace(Sequence)method.- Specified by:
withReplacein interfaceSequence- Parameters:
aSequence- TheSequencewhere to copy the bytes from.- Returns:
- This instance as of the builder pattern.
-
withReplace
Builder method for theSequence.replace(Sequence, int, int)method.- Specified by:
withReplacein interfaceSequence- Parameters:
aSequence- TheSequencewhere to copy the bytes from.aOffset- The offset in the byte array where to start copying.aLength- The number of bytes to be copied.- Returns:
- This instance as of the builder pattern.
-
withTruncate
Builder method for theSequence.truncate(int, TruncateMode)method.- Specified by:
withTruncatein interfaceSequence- Parameters:
aLength- The number of bytes to truncate according to theTruncateMode.aTruncateMode- TheTruncateModeto use for truncating theSequence.- Returns:
- This instance as of the builder pattern.
-
withTruncateHead
Builder method for theSequence.truncateHead(int)method.- Specified by:
withTruncateHeadin interfaceSequence- Parameters:
aLength- The number of bytes to truncate.- Returns:
- This instance as of the builder pattern.
-
withTruncateTail
Builder method for theSequence.truncateTail(int)method.- Specified by:
withTruncateTailin interfaceSequence- Parameters:
aLength- The number of bytes to truncate.- Returns:
- This instance as of the builder pattern.
-
withOverwrite
Builder method for theSequence.overwrite(byte[])method.- Specified by:
withOverwritein interfaceSequence- Parameters:
aBytes- The byte array where to copy the bytes from.- Returns:
- This instance as of the builder pattern.
-
withOverwrite
Builder method for theSequence.overwrite(int, byte[])method.- Specified by:
withOverwritein interfaceSequence- Parameters:
aOffset- The offset where to start writing the bytes to.aBytes- The byte array where to copy the bytes from.- Returns:
- This instance as of the builder pattern.
-
withOverwrite
Builder method for theSequence.overwrite(int, byte[], int, int)method.- Specified by:
withOverwritein interfaceSequence- Parameters:
aOffset- The offset where to start writing the bytes to.aBytes- The byte array where to copy the bytes from.aBytesOffset- The offset in the byte array where to start copying.aLength- The number of bytes to be copied.- Returns:
- This instance as of the builder pattern.
-
withOverwrite
Builder method for theSequence.overwrite(int, Sequence)method.- Specified by:
withOverwritein interfaceSequence- Parameters:
aOffset- The offset where to start writing the bytes to.aSequence- TheSequencewhere to copy the bytes from.- Returns:
- This instance as of the builder pattern.
-
withOverwrite
public ByteArraySequence withOverwrite(int aOffset, Sequence aSequence, int aSequenceOffset, int aLength) Builder method for theSequence.overwrite(int, Sequence, int, int)method.- Specified by:
withOverwritein interfaceSequence- Parameters:
aOffset- The offset where to start writing the bytes to.aSequence- TheSequencewhere to copy the bytes from.aSequenceOffset- The offset in the byte array where to start copying.aLength- The number of bytes to be copied.- Returns:
- This instance as of the builder pattern.
-
withOverwrite
Builder method for theSequence.overwrite(Sequence)method.- Specified by:
withOverwritein interfaceSequence- Parameters:
aSequence- TheSequencewhere to copy the bytes from.- Returns:
- This instance as of the builder pattern.
-
writeTo
Writes the content of the Sequence to the providedOutputStream.- Specified by:
writeToin interfaceSequence- Parameters:
aOutputStream- TheOutputStreamwhere to write to.- Throws:
IOException- thrown in case of I/O problems.
-