Class DAFArraySummary


  • public class DAFArraySummary
    extends Object
    Represents the summary of a single DAFArray in a DAF file.
    Since:
    14.0
    Author:
    Rafael Ayala
    • Constructor Detail

      • DAFArraySummary

        public DAFArraySummary​(List<Double> summaryDoubles,
                               List<Integer> summaryInts,
                               int initialArrayAddress,
                               int finalArrayAddress)
        Simple constructor.
        Parameters:
        summaryDoubles - list of doubles in the summary
        summaryInts - list of integers in the summary
        initialArrayAddress - initial byte address of array elements
        finalArrayAddress - final byte address of array elements
    • Method Detail

      • getSummaryDoubles

        public List<Double> getSummaryDoubles()
        Get the summary doubles.
        Returns:
        list of summary doubles
      • getSummaryInts

        public List<Integer> getSummaryInts()
        Get the summary integers.
        Returns:
        list of summary integers
      • getInitialArrayAddress

        public int getInitialArrayAddress()
        Get the initial byte address of the array elements.
        Returns:
        initial byte address of the array elements
      • getFinalArrayAddress

        public int getFinalArrayAddress()
        Get the final byte address of the array elements.
        Returns:
        final byte address of the array elements.