Class DAFArraySummary
- java.lang.Object
-
- org.orekit.files.spice.binary.daf.generic.DAFArraySummary
-
public class DAFArraySummary extends Object
- Since:
- 14.0
- Author:
- Rafael Ayala
-
-
Constructor Summary
Constructors Constructor Description DAFArraySummary(List<Double> summaryDoubles, List<Integer> summaryInts, int initialArrayAddress, int finalArrayAddress)Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetFinalArrayAddress()Get the final byte address of the array elements.intgetInitialArrayAddress()Get the initial byte address of the array elements.List<Double>getSummaryDoubles()Get the summary doubles.List<Integer>getSummaryInts()Get the summary integers.
-
-
-
Constructor Detail
-
DAFArraySummary
public DAFArraySummary(List<Double> summaryDoubles, List<Integer> summaryInts, int initialArrayAddress, int finalArrayAddress)
Simple constructor.- Parameters:
summaryDoubles- list of doubles in the summarysummaryInts- list of integers in the summaryinitialArrayAddress- initial byte address of array elementsfinalArrayAddress- 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.
-
-