java.lang.Object
org.refcodes.serial.AbstractPayloadSection<byte[]>
org.refcodes.serial.ByteArraySection
- All Implemented Interfaces:
Serializable
,org.refcodes.mixin.AliasAccessor
,org.refcodes.mixin.LengthAccessor
,org.refcodes.mixin.PayloadAccessor<byte[]>
,org.refcodes.mixin.PayloadAccessor.PayloadBuilder<byte[],
,PayloadTransmission<byte[]>> org.refcodes.mixin.PayloadAccessor.PayloadMutator<byte[]>
,org.refcodes.mixin.PayloadAccessor.PayloadProperty<byte[]>
,org.refcodes.mixin.Schemable
,PayloadSection<byte[]>
,PayloadTransmission<byte[]>
,Section
,Section.SectionMixin
,Transmission
,Transmission.TransmissionMixin
The
ByteArraySection
is an implementation of a Section
carrying a byte array as payload.- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.refcodes.mixin.AliasAccessor
org.refcodes.mixin.AliasAccessor.AliasBuilder<B extends org.refcodes.mixin.AliasAccessor.AliasBuilder<B>>, org.refcodes.mixin.AliasAccessor.AliasMutator, org.refcodes.mixin.AliasAccessor.AliasProperty
Nested 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.LengthProperty
Nested classes/interfaces inherited from interface org.refcodes.mixin.PayloadAccessor
org.refcodes.mixin.PayloadAccessor.PayloadBuilder<P extends Object,
B extends org.refcodes.mixin.PayloadAccessor.PayloadBuilder<P, B>>, org.refcodes.mixin.PayloadAccessor.PayloadMutator<P extends Object>, org.refcodes.mixin.PayloadAccessor.PayloadProperty<P extends Object> Nested classes/interfaces inherited from interface org.refcodes.serial.Section
Section.SectionMixin
Nested classes/interfaces inherited from interface org.refcodes.serial.Transmission
Transmission.TransmissionMixin
-
Field Summary
Fields inherited from class org.refcodes.serial.AbstractPayloadSection
_alias, _payload
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs an emptyByteArraySection
.ByteArraySection
(byte[] aPayload) Constructs aByteArraySection
with the given byte array payload.ByteArraySection
(Byte[] aPayload) Constructs aByteArraySection
with the given byte array payload.ByteArraySection
(String aAlias) Constructs an emptyByteArraySection
.ByteArraySection
(String aAlias, byte[] aPayload) Constructs aByteArraySection
with the given byte array payload.ByteArraySection
(String aAlias, Byte[] aPayload) Constructs aByteArraySection
with the given byte array payload. -
Method Summary
Modifier and TypeMethodDescriptionvoid
fromTransmission
(Sequence aSequence, int aOffset, int aLength) (Re-)initializes this instance with the the givenSequence
data.int
Determines the overall length of thisTransmission
.void
setPayload
(Byte[] aPayload) Convenience method to convert the array of wrapper types into its counterpart with primitive types before invokingAbstractPayloadSection.setPayload(Object)
.toSchema()
Provides theSequence
representation of thisTransmission
.toString()
withPayload
(byte[] aValue) withPayload
(Byte[] aPayload) Convenience method to convert the array of wrapper types into its counterpart with primitive types before invokingwithPayload(byte[])
.Methods inherited from class org.refcodes.serial.AbstractPayloadSection
equals, getAlias, getPayload, hashCode, setPayload, toSimpleTypeMap
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.refcodes.mixin.PayloadAccessor
getPayloadOr
Methods inherited from interface org.refcodes.mixin.PayloadAccessor.PayloadProperty
letPayload
Methods inherited from interface org.refcodes.serial.Section
fromTransmission, fromTransmission, fromTransmission, receiveFrom, receiveFrom
Methods inherited from interface org.refcodes.serial.Section.SectionMixin
receiveFrom
Methods inherited from interface org.refcodes.serial.Transmission
transmitTo, transmitTo
Methods inherited from interface org.refcodes.serial.Transmission.TransmissionMixin
transmitTo
-
Constructor Details
-
ByteArraySection
public ByteArraySection()Constructs an emptyByteArraySection
. -
ByteArraySection
public ByteArraySection(byte[] aPayload) Constructs aByteArraySection
with the given byte array payload.- Parameters:
aPayload
- The payload to be contained by theSection
.
-
ByteArraySection
Constructs aByteArraySection
with the given byte array payload.- Parameters:
aPayload
- The payload to be contained by theSection
.
-
ByteArraySection
Constructs an emptyByteArraySection
.- Parameters:
aAlias
- The alias which identifies the content of this segment.
-
ByteArraySection
Constructs aByteArraySection
with the given byte array payload.- Parameters:
aAlias
- The alias which identifies the content of this segment.aPayload
- The payload to be contained by theSection
.
-
ByteArraySection
Constructs aByteArraySection
with the given byte array payload.- Parameters:
aAlias
- The alias which identifies the content of this segment.aPayload
- The payload to be contained by theSection
.
-
-
Method Details
-
toSequence
Provides theSequence
representation of thisTransmission
. In case of nestedTransmission
instances, allSequence
representations from all sub-segments are accumulated to the result as well. Caution, the Transmission (or its nestedTransmission
instances) may be backed by the returnedSequence
.- Returns:
- The according instance's
Sequence
.
-
fromTransmission
public void fromTransmission(Sequence aSequence, int aOffset, int aLength) throws TransmissionException (Re-)initializes this instance with the the givenSequence
data.- Parameters:
aSequence
- TheSequence
data from which to (re-)initialize this instance.aOffset
- The offset where to start processing the providedSequence
.aLength
- The length of data assigned by theSequence
.- Throws:
TransmissionException
- thrown in case a givenSequence
cannot be processed.
-
getLength
public int getLength()Determines the overall length of thisTransmission
. In case of nestedTransmission
instances, all length values from all sub-segments are accumulated to the result as well.- Returns:
- The (overall) length of the
Transmission
(including any sub-segments).
-
toSchema
-
toString
- Overrides:
toString
in classAbstractPayloadSection<byte[]>
-
withPayload
-
setPayload
Convenience method to convert the array of wrapper types into its counterpart with primitive types before invokingAbstractPayloadSection.setPayload(Object)
.- Parameters:
aPayload
- The payload with the wrapper types.
-
withPayload
Convenience method to convert the array of wrapper types into its counterpart with primitive types before invokingwithPayload(byte[])
.- Parameters:
aPayload
- The payload with the wrapper types.- Returns:
- This instance as of the builder pattern.
-