Class LongArraySection

    • Constructor Detail

      • LongArraySection

        public LongArraySection​(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.
      • LongArraySection

        public LongArraySection​(TransmissionMetrics aTransmissionMetrics,
                                long... 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 LongArraySection.
      • LongArraySection

        public LongArraySection​(TransmissionMetrics aTransmissionMetrics,
                                Long... 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 LongArraySection.
      • LongArraySection

        public LongArraySection​(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.
      • LongArraySection

        public LongArraySection​(String aAlias,
                                TransmissionMetrics aTransmissionMetrics,
                                long... 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 LongArraySection.
      • LongArraySection

        public LongArraySection​(String aAlias,
                                TransmissionMetrics aTransmissionMetrics,
                                Long... 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 LongArraySection.
      • LongArraySection

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

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

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

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

        public LongArraySection​(String aAlias,
                                org.refcodes.numerical.Endianess aEndianess,
                                long... aValue)
        Constructs a LongArraySection with the given long array payload and the given Endianess for the representation of the LongArraySection'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 LongArraySection.
      • LongArraySection

        public LongArraySection​(String aAlias,
                                org.refcodes.numerical.Endianess aEndianess,
                                Long... aValue)
        Constructs a LongArraySection with the given long array payload and the given Endianess for the representation of the LongArraySection'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 LongArraySection.
    • 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 LongArraySection withPayload​(long[] aValue)
        Specified by:
        withPayload in interface org.refcodes.mixin.PayloadAccessor.PayloadBuilder<long[],​PayloadTransmission<long[]>>
      • setPayload

        public void setPayload​(Long[] 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 LongArraySection withPayload​(Long[] aPayload)
        Convenience method to convert the array of wrapper types into its counterpart with primitive types before invoking withPayload(long[]).
        Parameters:
        aPayload - The payload with the wrapper types.
        Returns:
        This instance as of the builder pattern.