Class IntArraySection

    • Constructor Detail

      • IntArraySection

        public IntArraySection​(TransmissionMetrics aTransmissionMetrics)
        Constructs an according instance from the given configuration. The configuration attributes are taken from the TransmissionMetrics configuration object, though only those attributes are supported which are also supported by the other constructors!
        Parameters:
        aTransmissionMetrics - The TransmissionMetrics to be used for configuring this instance.
      • IntArraySection

        public IntArraySection​(TransmissionMetrics aTransmissionMetrics,
                               int... aValue)
        Constructs an according instance from the given configuration. The configuration attributes are taken from the TransmissionMetrics configuration object, though only those attributes are supported which are also supported by the other constructors!
        Parameters:
        aTransmissionMetrics - The TransmissionMetrics to be used for configuring this instance.
        aValue - The payload to be contained by the IntArraySection.
      • IntArraySection

        public IntArraySection​(TransmissionMetrics aTransmissionMetrics,
                               Integer... aValue)
        Constructs an according instance from the given configuration. The configuration attributes are taken from the TransmissionMetrics configuration object, though only those attributes are supported which are also supported by the other constructors!
        Parameters:
        aTransmissionMetrics - The TransmissionMetrics to be used for configuring this instance.
        aValue - The payload to be contained by the IntArraySection.
      • IntArraySection

        public IntArraySection​(String aAlias,
                               TransmissionMetrics aTransmissionMetrics)
        Constructs an according instance from the given configuration. The configuration attributes are taken from the TransmissionMetrics configuration object, though only those attributes are supported which are also supported by the other constructors!
        Parameters:
        aAlias - The alias which identifies the content of this instance.
        aTransmissionMetrics - The TransmissionMetrics to be used for configuring this instance.
      • IntArraySection

        public IntArraySection​(String aAlias,
                               TransmissionMetrics aTransmissionMetrics,
                               int... aValue)
        Constructs an according instance from the given configuration. The configuration attributes are taken from the TransmissionMetrics configuration object, though only those attributes are supported which are also supported by the other constructors!
        Parameters:
        aAlias - The alias which identifies the content of this instance.
        aTransmissionMetrics - The TransmissionMetrics to be used for configuring this instance.
        aValue - The payload to be contained by the IntArraySection.
      • IntArraySection

        public IntArraySection​(String aAlias,
                               TransmissionMetrics aTransmissionMetrics,
                               Integer... aValue)
        Constructs an according instance from the given configuration. The configuration attributes are taken from the TransmissionMetrics configuration object, though only those attributes are supported which are also supported by the other constructors!
        Parameters:
        aAlias - The alias which identifies the content of this instance.
        aTransmissionMetrics - The TransmissionMetrics to be used for configuring this instance.
        aValue - The payload to be contained by the IntArraySection.
      • IntArraySection

        public IntArraySection​(org.refcodes.numerical.Endianess aEndianess)
        Constructs an empty IntArraySection with the given Endianess.
        Parameters:
        aEndianess - The Endianess to be used for payload values.
      • IntArraySection

        public IntArraySection​(org.refcodes.numerical.Endianess aEndianess,
                               int... aValue)
        Constructs a IntArraySection with the given integer array payload and Endianess for the representation of the Section's value.
        Parameters:
        aEndianess - The Endianess to be used for payload values.
        aValue - The payload to be contained by the Section.
      • IntArraySection

        public IntArraySection​(org.refcodes.numerical.Endianess aEndianess,
                               Integer... aValue)
        Constructs a IntArraySection with the given integer array payload and Endianess for the representation of the Section's value.
        Parameters:
        aEndianess - The Endianess to be used for payload values.
        aValue - The payload to be contained by the Section.
      • IntArraySection

        public IntArraySection​(String aAlias,
                               org.refcodes.numerical.Endianess aEndianess)
        Constructs an empty IntArraySection with the given Endianess.
        Parameters:
        aAlias - The alias which identifies the content of this segment.
        aEndianess - The Endianess to be used for payload values.
      • IntArraySection

        public IntArraySection​(String aAlias,
                               int... aValue)
        Constructs a IntArraySection with the given integer array payload and a TransmissionMetrics.DEFAULT_ENDIANESS endian representation of the Section's value.
        Parameters:
        aAlias - The alias which identifies the content of this segment.
        aValue - The payload to be contained by the Section.
      • IntArraySection

        public IntArraySection​(String aAlias,
                               org.refcodes.numerical.Endianess aEndianess,
                               int... aValue)
        Constructs a IntArraySection with the given integer array payload and Endianess for the representation of the Section's value.
        Parameters:
        aAlias - The alias which identifies the content of this segment.
        aEndianess - The Endianess to be used for payload values.
        aValue - The payload to be contained by the Section.
      • IntArraySection

        public IntArraySection​(String aAlias,
                               org.refcodes.numerical.Endianess aEndianess,
                               Integer... aValue)
        Constructs a IntArraySection with the given integer array payload and Endianess for the representation of the Section's value.
        Parameters:
        aAlias - The alias which identifies the content of this segment.
        aEndianess - The Endianess to be used for payload values.
        aValue - The payload to be contained by the Section.
    • Method Detail

      • getLength

        public int getLength()
        Determines the overall length of this Transmission. In case of nested Transmission instances, all length values from all sub-segments are accumulated to the result as well.
        Specified by:
        getLength in interface org.refcodes.mixin.LengthAccessor
        Specified by:
        getLength in interface Transmission
        Returns:
        The (overall) length of the Transmission (including any sub-segments).
      • withPayload

        public IntArraySection withPayload​(int[] aValue)
        Specified by:
        withPayload in interface org.refcodes.mixin.PayloadAccessor.PayloadBuilder<int[],​PayloadTransmission<int[]>>
      • setPayload

        public void setPayload​(Integer[] aPayload)
        Convenience method to convert the array of wrapper types into its counterpart with primitive types before invoking AbstractPayloadSection.setPayload(Object).
        Parameters:
        aPayload - The payload with the wrapper types.
      • withPayload

        public IntArraySection withPayload​(Integer[] aPayload)
        Convenience method to convert the array of wrapper types into its counterpart with primitive types before invoking withPayload(int[]).
        Parameters:
        aPayload - The payload with the wrapper types.
        Returns:
        This instance as of the builder pattern.