Package org.orekit.files.ccsds.ndm
Class Ndm
- java.lang.Object
-
- org.orekit.files.ccsds.ndm.Ndm
-
public class Ndm extends Object
CCSDS Navigation Data Message. This class is a container for comments andconstituents
.- Since:
- 11.0
- Author:
- Luc Maisonobe
-
-
Constructor Summary
Constructors Constructor Description Ndm(List<String> comments, List<NdmConstituent<?,?>> constituents)
Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>
getComments()
Get an unmodifiable view of the comments.List<NdmConstituent<?,?>>
getConstituents()
Get an unmodifiable view of the constituents.
-
-
-
Constructor Detail
-
Ndm
public Ndm(List<String> comments, List<NdmConstituent<?,?>> constituents)
Simple constructor.- Parameters:
comments
- file commentsconstituents
- constituents of the message
-
-
Method Detail
-
getComments
public List<String> getComments()
Get an unmodifiable view of the comments.- Returns:
- unmodifiable view of the comment
-
getConstituents
public List<NdmConstituent<?,?>> getConstituents()
Get an unmodifiable view of the constituents.- Returns:
- unmodifiable view of the constituents
-
-