Class DAFSummaryRecord
java.lang.Object
org.orekit.files.spice.binary.daf.generic.DAFSummaryRecord
Represents a summary record of a
DAF file, containing the summaries
for multiple arrays.- Since:
- 14.0
- Author:
- Rafael Ayala
-
Constructor Summary
ConstructorsConstructorDescriptionDAFSummaryRecord(int nextSummaryRecNum, int previousSummaryRecNum, int numberSummariesThisRec, byte[] summariesRaw) Basic constructor. -
Method Summary
Modifier and TypeMethodDescriptionintGet the record number of the next summary record in the DAF file.intGet the number of summaries in this summary record.intGet the record number of the previous summary record in the DAF file.byte[]Get the raw data for all the summaries in this summary record.
-
Constructor Details
-
DAFSummaryRecord
public DAFSummaryRecord(int nextSummaryRecNum, int previousSummaryRecNum, int numberSummariesThisRec, byte[] summariesRaw) Basic constructor.- Parameters:
nextSummaryRecNum- record number of the next summary record in the file (0 if this is the final summary record)previousSummaryRecNum- record number of the previous summary record in the file (0 if this is the first summary record)numberSummariesThisRec- number of summaries in this summary recordsummariesRaw- raw data for all the summaries in this summary record
-
-
Method Details
-
getNextSummaryRecNum
public int getNextSummaryRecNum()Get the record number of the next summary record in the DAF file.- Returns:
- record number of the next summary record in the DAF file
-
getPreviousSummaryRecNum
public int getPreviousSummaryRecNum()Get the record number of the previous summary record in the DAF file.- Returns:
- record number of the previous summary record in the DAF file
-
getNumberSummariesThisRec
public int getNumberSummariesThisRec()Get the number of summaries in this summary record.- Returns:
- number of summaries in this summary record
-
getSummariesRaw
public byte[] getSummariesRaw()Get the raw data for all the summaries in this summary record.- Returns:
- raw data (byte array) for all the summaries in this summary record
-