Package org.orekit.files.rinex
Class RinexFile<T extends RinexBaseHeader>
- java.lang.Object
-
- org.orekit.files.rinex.RinexFile<T>
-
- Type Parameters:
T
- Type of the header
- Direct Known Subclasses:
RinexNavigation
,RinexObservation
public class RinexFile<T extends RinexBaseHeader> extends Object
Container for Rinex file.- Since:
- 12.0
- Author:
- Luc Maisonobe
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addComment(RinexComment comment)
Add a comment.List<RinexComment>
getComments()
Get an unmodifiable view of the comments.T
getHeader()
Get the header.
-
-
-
Constructor Detail
-
RinexFile
protected RinexFile(T header)
Simple constructor.- Parameters:
header
- header
-
-
Method Detail
-
getHeader
public T getHeader()
Get the header.- Returns:
- header
-
getComments
public List<RinexComment> getComments()
Get an unmodifiable view of the comments.- Returns:
- unmodifiable view of the comments
-
addComment
public void addComment(RinexComment comment)
Add a comment.- Parameters:
comment
- comment to add
-
-